net: sched: remove unused classid field from tc_cls_common_offload
authorJiri Pirko <jiri@mellanox.com>
Thu, 19 Oct 2017 13:50:47 +0000 (15:50 +0200)
committerDavid S. Miller <davem@davemloft.net>
Sat, 21 Oct 2017 02:04:08 +0000 (03:04 +0100)
It is no longer used by the drivers, so remove it.

Signed-off-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/pkt_cls.h

index fcca5a9d98807927e434438f7ac36391eb7d0d76..04caa246e747374fee4707646539e869c477e038 100644 (file)
@@ -561,7 +561,6 @@ struct tc_cls_common_offload {
        u32 chain_index;
        __be16 protocol;
        u32 prio;
-       u32 classid;
 };
 
 static inline void
@@ -571,7 +570,6 @@ tc_cls_common_offload_init(struct tc_cls_common_offload *cls_common,
        cls_common->chain_index = tp->chain->index;
        cls_common->protocol = tp->protocol;
        cls_common->prio = tp->prio;
-       cls_common->classid = tp->classid;
 }
 
 struct tc_cls_u32_knode {