Commit 43c00dcf authored by Jamal Hadi Salim's avatar Jamal Hadi Salim Committed by David S. Miller

net_sched: Use default action lookup functions

Signed-off-by: default avatarJamal Hadi Salim <jhs@mojatatu.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 63ef6174
...@@ -585,7 +585,6 @@ static struct tc_action_ops act_csum_ops = { ...@@ -585,7 +585,6 @@ static struct tc_action_ops act_csum_ops = {
.act = tcf_csum, .act = tcf_csum,
.dump = tcf_csum_dump, .dump = tcf_csum_dump,
.cleanup = tcf_csum_cleanup, .cleanup = tcf_csum_cleanup,
.lookup = tcf_hash_search,
.init = tcf_csum_init, .init = tcf_csum_init,
.walk = tcf_generic_walker .walk = tcf_generic_walker
}; };
......
...@@ -206,7 +206,6 @@ static struct tc_action_ops act_gact_ops = { ...@@ -206,7 +206,6 @@ static struct tc_action_ops act_gact_ops = {
.act = tcf_gact, .act = tcf_gact,
.dump = tcf_gact_dump, .dump = tcf_gact_dump,
.cleanup = tcf_gact_cleanup, .cleanup = tcf_gact_cleanup,
.lookup = tcf_hash_search,
.init = tcf_gact_init, .init = tcf_gact_init,
.walk = tcf_generic_walker .walk = tcf_generic_walker
}; };
......
...@@ -298,7 +298,6 @@ static struct tc_action_ops act_ipt_ops = { ...@@ -298,7 +298,6 @@ static struct tc_action_ops act_ipt_ops = {
.act = tcf_ipt, .act = tcf_ipt,
.dump = tcf_ipt_dump, .dump = tcf_ipt_dump,
.cleanup = tcf_ipt_cleanup, .cleanup = tcf_ipt_cleanup,
.lookup = tcf_hash_search,
.init = tcf_ipt_init, .init = tcf_ipt_init,
.walk = tcf_generic_walker .walk = tcf_generic_walker
}; };
...@@ -312,7 +311,6 @@ static struct tc_action_ops act_xt_ops = { ...@@ -312,7 +311,6 @@ static struct tc_action_ops act_xt_ops = {
.act = tcf_ipt, .act = tcf_ipt,
.dump = tcf_ipt_dump, .dump = tcf_ipt_dump,
.cleanup = tcf_ipt_cleanup, .cleanup = tcf_ipt_cleanup,
.lookup = tcf_hash_search,
.init = tcf_ipt_init, .init = tcf_ipt_init,
.walk = tcf_generic_walker .walk = tcf_generic_walker
}; };
......
...@@ -271,7 +271,6 @@ static struct tc_action_ops act_mirred_ops = { ...@@ -271,7 +271,6 @@ static struct tc_action_ops act_mirred_ops = {
.act = tcf_mirred, .act = tcf_mirred,
.dump = tcf_mirred_dump, .dump = tcf_mirred_dump,
.cleanup = tcf_mirred_cleanup, .cleanup = tcf_mirred_cleanup,
.lookup = tcf_hash_search,
.init = tcf_mirred_init, .init = tcf_mirred_init,
.walk = tcf_generic_walker .walk = tcf_generic_walker
}; };
......
...@@ -308,7 +308,6 @@ static struct tc_action_ops act_nat_ops = { ...@@ -308,7 +308,6 @@ static struct tc_action_ops act_nat_ops = {
.act = tcf_nat, .act = tcf_nat,
.dump = tcf_nat_dump, .dump = tcf_nat_dump,
.cleanup = tcf_nat_cleanup, .cleanup = tcf_nat_cleanup,
.lookup = tcf_hash_search,
.init = tcf_nat_init, .init = tcf_nat_init,
.walk = tcf_generic_walker .walk = tcf_generic_walker
}; };
......
...@@ -243,7 +243,6 @@ static struct tc_action_ops act_pedit_ops = { ...@@ -243,7 +243,6 @@ static struct tc_action_ops act_pedit_ops = {
.act = tcf_pedit, .act = tcf_pedit,
.dump = tcf_pedit_dump, .dump = tcf_pedit_dump,
.cleanup = tcf_pedit_cleanup, .cleanup = tcf_pedit_cleanup,
.lookup = tcf_hash_search,
.init = tcf_pedit_init, .init = tcf_pedit_init,
.walk = tcf_generic_walker .walk = tcf_generic_walker
}; };
......
...@@ -407,7 +407,6 @@ static struct tc_action_ops act_police_ops = { ...@@ -407,7 +407,6 @@ static struct tc_action_ops act_police_ops = {
.act = tcf_act_police, .act = tcf_act_police,
.dump = tcf_act_police_dump, .dump = tcf_act_police_dump,
.cleanup = tcf_act_police_cleanup, .cleanup = tcf_act_police_cleanup,
.lookup = tcf_hash_search,
.init = tcf_act_police_locate, .init = tcf_act_police_locate,
.walk = tcf_act_police_walker .walk = tcf_act_police_walker
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment