]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
[NET]: Make skb->protocol __be16
authorAlexey Dobriyan <adobriyan@gmail.com>
Thu, 11 Aug 2005 23:05:50 +0000 (16:05 -0700)
committerDavid S. Miller <davem@davemloft.net>
Thu, 11 Aug 2005 23:05:50 +0000 (16:05 -0700)
There are many instances of

skb->protocol = htons(ETH_P_*);
skb->protocol = __constant_htons(ETH_P_*);
and
skb->protocol = *_type_trans(...);

Most of *_type_trans() are already endian-annotated, so, let's shift
attention on other warnings.

Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/skbuff.h

index 0061c9470482df8e91ad877e7348dad4db731f5e..948527e42a60db205cdb88d458f11d4c39b22248 100644 (file)
@@ -255,7 +255,7 @@ struct sk_buff {
                                nohdr:1;
                                /* 3 bits spare */
        __u8                    pkt_type;
-       __u16                   protocol;
+       __be16                  protocol;
 
        void                    (*destructor)(struct sk_buff *skb);
 #ifdef CONFIG_NETFILTER