From: Patrick McHardy Date: Tue, 18 Dec 2007 06:29:26 +0000 (-0800) Subject: [NETLINK]: Add NLA_PUT_BE16/nla_get_be16() X-Git-Url: http://git.mmlx.us/?a=commitdiff_plain;h=838965ba22066c7fcdbacfc543c387d0eb76c14c;p=linux-edison.git [NETLINK]: Add NLA_PUT_BE16/nla_get_be16() Signed-off-by: Patrick McHardy Signed-off-by: David S. Miller --- diff --git a/include/net/netlink.h b/include/net/netlink.h index db4b935b6c7..a52d0360175 100644 --- a/include/net/netlink.h +++ b/include/net/netlink.h @@ -881,6 +881,9 @@ static inline int nla_put_msecs(struct sk_buff *skb, int attrtype, #define NLA_PUT_LE16(skb, attrtype, value) \ NLA_PUT_TYPE(skb, __le16, attrtype, value) +#define NLA_PUT_BE16(skb, attrtype, value) \ + NLA_PUT_TYPE(skb, __be16, attrtype, value) + #define NLA_PUT_U32(skb, attrtype, value) \ NLA_PUT_TYPE(skb, u32, attrtype, value) @@ -927,6 +930,15 @@ static inline u16 nla_get_u16(struct nlattr *nla) } /** + * nla_get_be16 - return payload of __be16 attribute + * @nla: __be16 netlink attribute + */ +static inline __be16 nla_get_be16(struct nlattr *nla) +{ + return *(__be16 *) nla_data(nla); +} + +/** * nla_get_le16 - return payload of __le16 attribute * @nla: __le16 netlink attribute */