Re: [PATCH] Make skb->protocol __be16

2005-08-11 Thread David S. Miller
From: Alexey Dobriyan <[EMAIL PROTECTED]> Date: Thu, 11 Aug 2005 19:49:48 +0400 > Signed-off-by: Alexey Dobriyan <[EMAIL PROTECTED]> Applied, but I may defer this to 2.6.14, we'll see. Also, please properly "-p1" root your patch next time. > --- linux.orig/linux-sparse/include/linux/skbuff.h

[PATCH] Make skb->protocol __be16

2005-08-11 Thread Alexey Dobriyan
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 <