mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 05:02:12 +00:00
tc_vlan: fix type of tcfv_push_vid
Should be u16. So fix it to kill the sparse warning.
Fixes: c7e2b9689e
"sched: introduce vlan action"
Signed-off-by: Jiri Pirko <jiri@resnulli.us>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
d8182804cf
commit
08dcf9fd19
@ -18,7 +18,7 @@
|
||||
struct tcf_vlan {
|
||||
struct tcf_common common;
|
||||
int tcfv_action;
|
||||
__be16 tcfv_push_vid;
|
||||
u16 tcfv_push_vid;
|
||||
__be16 tcfv_push_proto;
|
||||
};
|
||||
#define to_vlan(a) \
|
||||
|
Loading…
Reference in New Issue
Block a user