]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
net: fix protocol sk_buff field
authorEric Dumazet <eric.dumazet@gmail.com>
Mon, 1 Mar 2010 03:09:26 +0000 (03:09 +0000)
committerDavid S. Miller <davem@davemloft.net>
Tue, 2 Mar 2010 11:05:05 +0000 (03:05 -0800)
Commit e992cd9b72a18 (kmemcheck: make bitfield annotations truly no-ops
when disabled) allows us to revert a workaround we did in the past to
not add holes in sk_buff structure.

This patch partially reverts commit 14d18a81b5171
(net: fix kmemcheck annotations) so that sparse doesnt complain:

include/linux/skbuff.h:357:41: error: invalid bitfield specifier for
type restricted __be16.

Reported-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/skbuff.h

index d266eeef522d5f9046b35d53cc051a80462654f9..03f816a9b65950ba998b00aaf5f3352f25be0c7f 100644 (file)
@@ -355,8 +355,8 @@ struct sk_buff {
                                ipvs_property:1,
                                peeked:1,
                                nf_trace:1;
-       __be16                  protocol:16;
        kmemcheck_bitfield_end(flags1);
+       __be16                  protocol;
 
        void                    (*destructor)(struct sk_buff *skb);
 #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)