From: Or Gerlitz Date: Thu, 15 Sep 2016 12:28:23 +0000 (+0300) Subject: net/sched: cls_flower: Remove an unused field from the filter key structure X-Git-Tag: v4.9.8~1241^2~190^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a53d850a79c39b97a2d954d0db5c481c44e8dc7c;p=platform%2Fkernel%2Flinux-rpi3.git net/sched: cls_flower: Remove an unused field from the filter key structure Commit c3f8324188fa "net: Add full IPv6 addresses to flow_keys" added an unused instance of struct flow_dissector_key_addrs into struct fl_flow_key, remove it. Signed-off-by: Or Gerlitz Reported-by: Hadar Hen Zion Acked-by: Jiri Pirko Signed-off-by: David S. Miller --- diff --git a/net/sched/cls_flower.c b/net/sched/cls_flower.c index 027523c..a3f4c70 100644 --- a/net/sched/cls_flower.c +++ b/net/sched/cls_flower.c @@ -33,7 +33,6 @@ struct fl_flow_key { struct flow_dissector_key_basic basic; struct flow_dissector_key_eth_addrs eth; struct flow_dissector_key_vlan vlan; - struct flow_dissector_key_addrs ipaddrs; union { struct flow_dissector_key_ipv4_addrs ipv4; struct flow_dissector_key_ipv6_addrs ipv6;