git.openpandora.org
/
pandora-kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7d69fa6
)
[NET]: Make skb->protocol __be16
author
Alexey Dobriyan
<adobriyan@gmail.com>
Thu, 11 Aug 2005 23:05:50 +0000
(16:05 -0700)
committer
David 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>
No differences found