diff options
author | David Woodhouse <David.Woodhouse@intel.com> | 2008-07-25 10:40:14 -0400 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2008-07-25 10:40:14 -0400 |
commit | ff877ea80efa2015b6263766f78ee42c2a1b32f9 (patch) | |
tree | 85205005c611ab774702148558321c6fb92f1ccd /include/net/netlink.h | |
parent | 30821fee4f0cb3e6d241d9f7ddc37742212e3eb7 (diff) | |
parent | d37e6bf68fc1eb34a4ad21d9ae8890ed37ea80e7 (diff) |
Merge branch 'linux-next' of git://git.infradead.org/~dedekind/ubi-2.6
Diffstat (limited to 'include/net/netlink.h')
-rw-r--r-- | include/net/netlink.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/net/netlink.h b/include/net/netlink.h index dfc3701dfcc3..18024b8cecb8 100644 --- a/include/net/netlink.h +++ b/include/net/netlink.h | |||
@@ -896,6 +896,9 @@ static inline int nla_put_msecs(struct sk_buff *skb, int attrtype, | |||
896 | #define NLA_PUT_U64(skb, attrtype, value) \ | 896 | #define NLA_PUT_U64(skb, attrtype, value) \ |
897 | NLA_PUT_TYPE(skb, u64, attrtype, value) | 897 | NLA_PUT_TYPE(skb, u64, attrtype, value) |
898 | 898 | ||
899 | #define NLA_PUT_BE64(skb, attrtype, value) \ | ||
900 | NLA_PUT_TYPE(skb, __be64, attrtype, value) | ||
901 | |||
899 | #define NLA_PUT_STRING(skb, attrtype, value) \ | 902 | #define NLA_PUT_STRING(skb, attrtype, value) \ |
900 | NLA_PUT(skb, attrtype, strlen(value) + 1, value) | 903 | NLA_PUT(skb, attrtype, strlen(value) + 1, value) |
901 | 904 | ||