Skip to content

Commit

Permalink
[NETLINK]: Add NLA_PUT_BE16/nla_get_be16()
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Patrick McHardy authored and David S. Miller committed Jan 28, 2008
1 parent c7212e9 commit 838965b
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions include/net/netlink.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 838965b

Please sign in to comment.