projects
/
GitHub
/
exynos8895
/
android_kernel_samsung_universal8895.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e1f9c35
)
openvswitch: Fix the type of struct ovs_key_nd nd_target field.
author
Jarno Rajahalme
<jrajahalme@nicira.com>
Tue, 30 Sep 2014 17:52:32 +0000
(10:52 -0700)
committer
Pravin B Shelar
<pshelar@nicira.com>
Thu, 6 Nov 2014 07:52:35 +0000
(23:52 -0800)
Should be the same as other IPv6 address fields.
Current master produces sparse warnings without this change.
Signed-off-by: Jarno Rajahalme <jrajahalme@nicira.com>
Signed-off-by: Pravin B Shelar <pshelar@nicira.com>
include/uapi/linux/openvswitch.h
patch
|
blob
|
blame
|
history
diff --git
a/include/uapi/linux/openvswitch.h
b/include/uapi/linux/openvswitch.h
index 631056b66f809d0627a69dffe443ca8c4e7c01fd..26c36c4cf7e2887f9c4c15863716a29973910e4b 100644
(file)
--- a/
include/uapi/linux/openvswitch.h
+++ b/
include/uapi/linux/openvswitch.h
@@
-400,9
+400,9
@@
struct ovs_key_arp {
};
struct ovs_key_nd {
- __
u32
nd_target[4];
- __u8 nd_sll[ETH_ALEN];
- __u8 nd_tll[ETH_ALEN];
+ __
be32
nd_target[4];
+ __u8
nd_sll[ETH_ALEN];
+ __u8
nd_tll[ETH_ALEN];
};
/**