diff options
author | Krzysztof Piotr Oledzki <ole@ans.pl> | 2008-07-21 13:01:14 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-07-21 13:10:58 -0400 |
commit | 07a7c1070ed382ad4562e3a0d453fd2001d92f7b (patch) | |
tree | 0caf21395d1adf879888a355ffcb22c60a7545ae | |
parent | 0dbff689c2f299e8f63911247925f2728d087688 (diff) |
netlink: add NLA_PUT_BE64 macro
Add NLA_PUT_BE64 macro required for 64bit counters in netfilter
Signed-off-by: Krzysztof Piotr Oledzki <ole@ans.pl>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
-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 | ||