diff options
author | Cong Wang <xiyou.wangcong@gmail.com> | 2018-08-19 21:22:09 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-08-21 21:45:44 +0200 |
commit | 244cd96adb5f5ab39551081fb1f9009a54bb12ee (patch) | |
tree | d3c9fee9d752278765efd4aef56a82ff900747de /include/net/act_api.h | |
parent | net_sched: remove unused tcf_idr_check() (diff) | |
download | linux-244cd96adb5f5ab39551081fb1f9009a54bb12ee.tar.xz linux-244cd96adb5f5ab39551081fb1f9009a54bb12ee.zip |
net_sched: remove list_head from tc_action
After commit 90b73b77d08e, list_head is no longer needed.
Now we just need to convert the list iteration to array
iteration for drivers.
Fixes: 90b73b77d08e ("net: sched: change action API to use array of pointers to actions")
Cc: Jiri Pirko <jiri@mellanox.com>
Cc: Vlad Buslov <vladbu@mellanox.com>
Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/act_api.h')
-rw-r--r-- | include/net/act_api.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/net/act_api.h b/include/net/act_api.h index eaa0e8b93d5b..f9c4b871af88 100644 --- a/include/net/act_api.h +++ b/include/net/act_api.h @@ -23,7 +23,6 @@ struct tc_action { const struct tc_action_ops *ops; __u32 type; /* for backward compat(TCA_OLD_COMPAT) */ __u32 order; - struct list_head list; struct tcf_idrinfo *idrinfo; u32 tcfa_index; |