Skip to content

Commit

Permalink
net: sched: act_sum method rename for grep-ability and consistency
Browse files Browse the repository at this point in the history
Signed-off-by: Jamal Hadi Salim <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
jhsmt authored and davem330 committed Aug 13, 2018
1 parent 2fbec27 commit c831549
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions net/sched/act_csum.c
Original file line number Diff line number Diff line change
Expand Up @@ -555,8 +555,8 @@ static int tcf_csum_ipv6(struct sk_buff *skb, u32 update_flags)
return 0;
}

static int tcf_csum(struct sk_buff *skb, const struct tc_action *a,
struct tcf_result *res)
static int tcf_csum_act(struct sk_buff *skb, const struct tc_action *a,
struct tcf_result *res)
{
struct tcf_csum *p = to_tcf_csum(a);
struct tcf_csum_params *params;
Expand Down Expand Up @@ -670,7 +670,7 @@ static struct tc_action_ops act_csum_ops = {
.kind = "csum",
.type = TCA_ACT_CSUM,
.owner = THIS_MODULE,
.act = tcf_csum,
.act = tcf_csum_act,
.dump = tcf_csum_dump,
.init = tcf_csum_init,
.cleanup = tcf_csum_cleanup,
Expand Down

0 comments on commit c831549

Please sign in to comment.