diff options
| author | Alexey Dobriyan <adobriyan@gmail.com> | 2005-08-11 19:05:50 -0400 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2005-08-11 19:05:50 -0400 |
| commit | a0d3bea3cf6c7c1b53a46432bd490b5dc784ca42 (patch) | |
| tree | 2c0f1d9e4c94f6b4052ca7f51442a3f5922124e3 | |
| parent | 7d69fa6266770eeb6317eddd46b64456e8a515bf (diff) | |
[NET]: Make skb->protocol __be16
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>
| -rw-r--r-- | include/linux/skbuff.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index 0061c9470482..948527e42a60 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h | |||
| @@ -255,7 +255,7 @@ struct sk_buff { | |||
| 255 | nohdr:1; | 255 | nohdr:1; |
| 256 | /* 3 bits spare */ | 256 | /* 3 bits spare */ |
| 257 | __u8 pkt_type; | 257 | __u8 pkt_type; |
| 258 | __u16 protocol; | 258 | __be16 protocol; |
| 259 | 259 | ||
| 260 | void (*destructor)(struct sk_buff *skb); | 260 | void (*destructor)(struct sk_buff *skb); |
| 261 | #ifdef CONFIG_NETFILTER | 261 | #ifdef CONFIG_NETFILTER |
