瀏覽代碼

[NET]: annotate dsfield.h

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Al Viro 18 年之前
父節點
當前提交
8a9ae2110b
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      include/net/dsfield.h

+ 3 - 3
include/net/dsfield.h

@@ -20,7 +20,7 @@ static inline __u8 ipv4_get_dsfield(struct iphdr *iph)
 
 
 static inline __u8 ipv6_get_dsfield(struct ipv6hdr *ipv6h)
 static inline __u8 ipv6_get_dsfield(struct ipv6hdr *ipv6h)
 {
 {
-	return ntohs(*(__u16 *) ipv6h) >> 4;
+	return ntohs(*(__be16 *) ipv6h) >> 4;
 }
 }
 
 
 
 
@@ -45,9 +45,9 @@ static inline void ipv6_change_dsfield(struct ipv6hdr *ipv6h,__u8 mask,
 {
 {
         __u16 tmp;
         __u16 tmp;
 
 
-	tmp = ntohs(*(__u16 *) ipv6h);
+	tmp = ntohs(*(__be16 *) ipv6h);
 	tmp = (tmp & ((mask << 4) | 0xf00f)) | (value << 4);
 	tmp = (tmp & ((mask << 4) | 0xf00f)) | (value << 4);
-	*(__u16 *) ipv6h = htons(tmp);
+	*(__be16 *) ipv6h = htons(tmp);
 }
 }