projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5d36b18
)
[NET]: annotate dsfield.h
author
Al Viro
<viro@zeniv.linux.org.uk>
Wed, 8 Nov 2006 08:24:26 +0000
(
00:24
-0800)
committer
David S. Miller
<davem@sunset.davemloft.net>
Sun, 3 Dec 2006 05:21:19 +0000
(21:21 -0800)
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/dsfield.h
patch
|
blob
|
blame
|
history
diff --git
a/include/net/dsfield.h
b/include/net/dsfield.h
index a79c9e075f7f05f3cdcf96f0e070b62409e4adac..dae8453385b62dd7e5da56fd99efda5b8fcb4912 100644
(file)
--- a/
include/net/dsfield.h
+++ b/
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)
{
- return ntohs(*(__
u
16 *) ipv6h) >> 4;
+ return ntohs(*(__
be
16 *) ipv6h) >> 4;
}
@@
-45,9
+45,9
@@
static inline void ipv6_change_dsfield(struct ipv6hdr *ipv6h,__u8 mask,
{
__u16 tmp;
- tmp = ntohs(*(__
u
16 *) ipv6h);
+ tmp = ntohs(*(__
be
16 *) ipv6h);
tmp = (tmp & ((mask << 4) | 0xf00f)) | (value << 4);
- *(__
u
16 *) ipv6h = htons(tmp);
+ *(__
be
16 *) ipv6h = htons(tmp);
}