Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0390514f authored by Jamal Hadi Salim's avatar Jamal Hadi Salim Committed by David S. Miller
Browse files

net: sched: act_nat method rename for grep-ability and consistency

parent 11b9695b
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -93,7 +93,7 @@ static int tcf_nat_init(struct net *net, struct nlattr *nla, struct nlattr *est,
	return ret;
}

static int tcf_nat(struct sk_buff *skb, const struct tc_action *a,
static int tcf_nat_act(struct sk_buff *skb, const struct tc_action *a,
		       struct tcf_result *res)
{
	struct tcf_nat *p = to_tcf_nat(a);
@@ -311,7 +311,7 @@ static struct tc_action_ops act_nat_ops = {
	.kind		=	"nat",
	.type		=	TCA_ACT_NAT,
	.owner		=	THIS_MODULE,
	.act		=	tcf_nat,
	.act		=	tcf_nat_act,
	.dump		=	tcf_nat_dump,
	.init		=	tcf_nat_init,
	.walk		=	tcf_nat_walker,