浏览代码

[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>
Alexey Dobriyan 20 年之前
父节点
当前提交
a0d3bea3cf
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      include/linux/skbuff.h

+ 1 - 1
include/linux/skbuff.h

@@ -255,7 +255,7 @@ struct sk_buff {
 				nohdr:1;
 				nohdr:1;
 				/* 3 bits spare */
 				/* 3 bits spare */
 	__u8			pkt_type;
 	__u8			pkt_type;
-	__u16			protocol;
+	__be16			protocol;
 
 
 	void			(*destructor)(struct sk_buff *skb);
 	void			(*destructor)(struct sk_buff *skb);
 #ifdef CONFIG_NETFILTER
 #ifdef CONFIG_NETFILTER