diff --git a/[refs] b/[refs] index d41571f68d2c..d8a8bff7f2d6 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 0dbff689c2f299e8f63911247925f2728d087688 +refs/heads/master: 07a7c1070ed382ad4562e3a0d453fd2001d92f7b diff --git a/trunk/include/net/netlink.h b/trunk/include/net/netlink.h index dfc3701dfcc3..18024b8cecb8 100644 --- a/trunk/include/net/netlink.h +++ b/trunk/include/net/netlink.h @@ -896,6 +896,9 @@ static inline int nla_put_msecs(struct sk_buff *skb, int attrtype, #define NLA_PUT_U64(skb, attrtype, value) \ NLA_PUT_TYPE(skb, u64, attrtype, value) +#define NLA_PUT_BE64(skb, attrtype, value) \ + NLA_PUT_TYPE(skb, __be64, attrtype, value) + #define NLA_PUT_STRING(skb, attrtype, value) \ NLA_PUT(skb, attrtype, strlen(value) + 1, value)