diff options
author | Zhengchao Shao <shaozhengchao@huawei.com> | 2022-09-08 07:14:33 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2022-09-09 10:24:41 +0300 |
commit | acd0a7ab6334f35c3720120d53f79eb8e9b3ac2e (patch) | |
tree | 2ad298e3b199cc7027d04fb99ac5d451ffc516b9 /include/net/act_api.h | |
parent | dd14043af7b86238a4dc3280acf635eb43ea9851 (diff) | |
download | linux-acd0a7ab6334f35c3720120d53f79eb8e9b3ac2e.tar.xz |
net: sched: act: move global static variable net_id to tc_action_ops
Each tc action module has a corresponding net_id, so put net_id directly
into the structure tc_action_ops.
Signed-off-by: Zhengchao Shao <shaozhengchao@huawei.com>
Acked-by: Jamal Hadi Salim <jhs@mojatatu.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, 1 insertions, 0 deletions
diff --git a/include/net/act_api.h b/include/net/act_api.h index 9cf6870b526e..61f2ceb3939e 100644 --- a/include/net/act_api.h +++ b/include/net/act_api.h @@ -111,6 +111,7 @@ struct tc_action_ops { struct list_head head; char kind[IFNAMSIZ]; enum tca_id id; /* identifier should match kind */ + unsigned int net_id; size_t size; struct module *owner; int (*act)(struct sk_buff *, const struct tc_action *, |