From 4cc6653580ac52ee1c2d8cfab27ba628ff2936f9 Mon Sep 17 00:00:00 2001 From: Patrick McHardy Date: Mon, 17 Dec 2007 22:29:26 -0800 Subject: [PATCH] --- yaml --- r: 78532 b: refs/heads/master c: 838965ba22066c7fcdbacfc543c387d0eb76c14c h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/include/net/netlink.h | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/[refs] b/[refs] index 19d7be453901..6cafd8f7b146 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: c7212e9d3938258abe3fd17d15bb0d5c1856b8df +refs/heads/master: 838965ba22066c7fcdbacfc543c387d0eb76c14c diff --git a/trunk/include/net/netlink.h b/trunk/include/net/netlink.h index db4b935b6c7e..a52d03601754 100644 --- a/trunk/include/net/netlink.h +++ b/trunk/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) @@ -926,6 +929,15 @@ static inline u16 nla_get_u16(struct nlattr *nla) return *(u16 *) nla_data(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