diff options
author | YOSHIFUJI Hideaki / 吉藤英明 <yoshfuji@linux-ipv6.org> | 2013-01-09 07:20:01 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-01-09 23:38:24 -0800 |
commit | ce6654cfc12558cc65b198cca991684e58e10bc6 (patch) | |
tree | cdca66d76e07ad029f2a39df63fadbb2d92c26f4 /net/rxrpc | |
parent | 3523b29bd2cd58432ea1bf3629695ec1ab607722 (diff) | |
download | linux-3.10-ce6654cfc12558cc65b198cca991684e58e10bc6.tar.gz linux-3.10-ce6654cfc12558cc65b198cca991684e58e10bc6.tar.bz2 linux-3.10-ce6654cfc12558cc65b198cca991684e58e10bc6.zip |
rxrpc: Use FIELD_SIZEOF() in af_rxrpc_init().
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/rxrpc')
-rw-r--r-- | net/rxrpc/af_rxrpc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/rxrpc/af_rxrpc.c b/net/rxrpc/af_rxrpc.c index 05996d0dd82..5b0fd291bab 100644 --- a/net/rxrpc/af_rxrpc.c +++ b/net/rxrpc/af_rxrpc.c @@ -10,6 +10,7 @@ */ #include <linux/module.h> +#include <linux/kernel.h> #include <linux/net.h> #include <linux/slab.h> #include <linux/skbuff.h> @@ -792,10 +793,9 @@ static const struct net_proto_family rxrpc_family_ops = { */ static int __init af_rxrpc_init(void) { - struct sk_buff *dummy_skb; int ret = -1; - BUILD_BUG_ON(sizeof(struct rxrpc_skb_priv) > sizeof(dummy_skb->cb)); + BUILD_BUG_ON(sizeof(struct rxrpc_skb_priv) > FIELD_SIZEOF(struct sk_buff, cb)); rxrpc_epoch = htonl(get_seconds()); |