mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
openvswitch: Fix the type of struct ovs_key_nd nd_target field.
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>
This commit is contained in:
parent
e1f9c356d2
commit
1a4e96a0e9
1 changed files with 3 additions and 3 deletions
|
@ -400,7 +400,7 @@ struct ovs_key_arp {
|
||||||
};
|
};
|
||||||
|
|
||||||
struct ovs_key_nd {
|
struct ovs_key_nd {
|
||||||
__u32 nd_target[4];
|
__be32 nd_target[4];
|
||||||
__u8 nd_sll[ETH_ALEN];
|
__u8 nd_sll[ETH_ALEN];
|
||||||
__u8 nd_tll[ETH_ALEN];
|
__u8 nd_tll[ETH_ALEN];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue