Commit b6b99eb5409d75ae35390057cd28f3aedfbd4cf4

Authored by Patrick McHardy
Committed by David S. Miller
1 parent 83e3609eba

[NET]: Reduce tc_index/tc_verd to u16

Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>

Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff

include/linux/skbuff.h
... ... @@ -265,9 +265,9 @@
265 265 #endif
266 266 #endif /* CONFIG_NETFILTER */
267 267 #ifdef CONFIG_NET_SCHED
268   - __u32 tc_index; /* traffic control index */
  268 + __u16 tc_index; /* traffic control index */
269 269 #ifdef CONFIG_NET_CLS_ACT
270   - __u32 tc_verd; /* traffic control verdict */
  270 + __u16 tc_verd; /* traffic control verdict */
271 271 #endif
272 272 #endif
273 273