[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1425318028-26531-14-git-send-email-fw@strlen.de>
Date: Mon, 2 Mar 2015 18:40:27 +0100
From: Florian Westphal <fw@...len.de>
To: <netdev@...r.kernel.org>
Cc: Florian Westphal <fw@...len.de>,
Eyal Birger <eyal.birger@...il.com>
Subject: [PATCH RFC 13/14] net: tcp: don't assert sock_skb_cb_check_size
Its required fro af_packet and all protocol that make use of
SOCK_SKB_CB(skb)->dropcount
via sock_queue_rcv_skb.
But tcp doesn't seem to do that. This avoids build failure
with a 44byte sized tcp cb.
Cc: Eyal Birger <eyal.birger@...il.com>
Signed-off-by: Florian Westphal <fw@...len.de>
---
net/ipv4/tcp.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/net/ipv4/tcp.c b/net/ipv4/tcp.c
index 4b57ea8..9d72a0f 100644
--- a/net/ipv4/tcp.c
+++ b/net/ipv4/tcp.c
@@ -3005,11 +3005,12 @@ static void __init tcp_init_mem(void)
void __init tcp_init(void)
{
+ struct sk_buff *skb = NULL;
unsigned long limit;
int max_rshare, max_wshare, cnt;
unsigned int i;
- sock_skb_cb_check_size(sizeof(struct tcp_skb_cb));
+ BUILD_BUG_ON(sizeof(struct tcp_skb_cb) > sizeof(skb->cb));
percpu_counter_init(&tcp_sockets_allocated, 0, GFP_KERNEL);
percpu_counter_init(&tcp_orphan_count, 0, GFP_KERNEL);
--
2.0.5
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists