[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <55955D04.702@gmail.com>
Date: Thu, 02 Jul 2015 08:47:16 -0700
From: John Fastabend <john.fastabend@...il.com>
To: Eric Dumazet <edumazet@...gle.com>,
"David S. Miller" <davem@...emloft.net>
CC: netdev <netdev@...r.kernel.org>,
Alexei Starovoitov <ast@...mgrid.com>,
Jamal Hadi Salim <jhs@...atatu.com>,
Eric Dumazet <edumazet@...il.com>
Subject: Re: [PATCH net-next 5/6] net_sched: act: read tcfg_ptype once
On 15-07-02 06:07 AM, Eric Dumazet wrote:
> Third step for gact RCU operation :
>
> Following patch will get rid of spinlock protection,
> so we need to read tcfg_ptype once.
>
> Signed-off-by: Eric Dumazet <edumazet@...gle.com>
> Cc: Alexei Starovoitov <ast@...mgrid.com>
> Cc: Jamal Hadi Salim <jhs@...atatu.com>
> Cc: John Fastabend <john.fastabend@...il.com>
> ---
> net/sched/act_gact.c | 14 +++++++-------
> 1 file changed, 7 insertions(+), 7 deletions(-)
>
> diff --git a/net/sched/act_gact.c b/net/sched/act_gact.c
> index e968290e8378..7c7e72e95943 100644
> --- a/net/sched/act_gact.c
> +++ b/net/sched/act_gact.c
> @@ -121,16 +121,16 @@ static int tcf_gact(struct sk_buff *skb, const struct tc_action *a,
> struct tcf_result *res)
> {
> struct tcf_gact *gact = a->priv;
> - int action = TC_ACT_SHOT;
> + int action = gact->tcf_action;
>
> spin_lock(&gact->tcf_lock);
> #ifdef CONFIG_GACT_PROB
> - if (gact->tcfg_ptype)
> - action = gact_rand[gact->tcfg_ptype](gact);
> - else
> - action = gact->tcf_action;
> -#else
> - action = gact->tcf_action;
> + {
> + u32 ptype = READ_ONCE(gact->tcfg_ptype);
> +
> + if (ptype)
> + action = gact_rand[ptype](gact);
> + }
> #endif
> gact->tcf_bstats.bytes += qdisc_pkt_len(skb);
> gact->tcf_bstats.packets++;
>
Acked-by: John Fastabend <john.r.fastabend@...el.com>
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists