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>
This commit is contained in:
committed by
David S. Miller
parent
3523b29bd2
commit
ce6654cfc1
@@ -10,6 +10,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <linux/module.h>
|
#include <linux/module.h>
|
||||||
|
#include <linux/kernel.h>
|
||||||
#include <linux/net.h>
|
#include <linux/net.h>
|
||||||
#include <linux/slab.h>
|
#include <linux/slab.h>
|
||||||
#include <linux/skbuff.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)
|
static int __init af_rxrpc_init(void)
|
||||||
{
|
{
|
||||||
struct sk_buff *dummy_skb;
|
|
||||||
int ret = -1;
|
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());
|
rxrpc_epoch = htonl(get_seconds());
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user