* [PATCH net-next] ipv6: fix the use of pcpu_tstats in ip6_tunnel
@ 2014-01-02 0:49 roy.qing.li
2014-01-02 3:50 ` David Miller
2014-01-02 3:56 ` Eric Dumazet
0 siblings, 2 replies; 5+ messages in thread
From: roy.qing.li @ 2014-01-02 0:49 UTC (permalink / raw)
To: netdev; +Cc: edumazet
From: Li RongQing <roy.qing.li@gmail.com>
when read/write the 64bit data, the correct lock should be hold. and use the
BUILD_BUG_ON check to ensure the syncp is last element of struct pcpu_tstats,
then reduce the copy the syncp when get the stats
Eric Dumazet <edumazet@google.com>
Signed-off-by: Li RongQing <roy.qing.li@gmail.com>
---
net/ipv6/ip6_tunnel.c | 25 ++++++++++++++++++-------
1 file changed, 18 insertions(+), 7 deletions(-)
diff --git a/net/ipv6/ip6_tunnel.c b/net/ipv6/ip6_tunnel.c
index 8d7c986..8eedb0c 100644
--- a/net/ipv6/ip6_tunnel.c
+++ b/net/ipv6/ip6_tunnel.c
@@ -102,16 +102,25 @@ struct ip6_tnl_net {
static struct net_device_stats *ip6_get_stats(struct net_device *dev)
{
- struct pcpu_tstats sum = { 0 };
+ struct pcpu_tstats tmp, sum = { 0 };
int i;
- for_each_possible_cpu(i) {
- const struct pcpu_tstats *tstats = per_cpu_ptr(dev->tstats, i);
+ BUILD_BUG_ON(offsetof(typeof(tmp), syncp) !=
+ sizeof(tmp) - sizeof(tmp.syncp));
- sum.rx_packets += tstats->rx_packets;
- sum.rx_bytes += tstats->rx_bytes;
- sum.tx_packets += tstats->tx_packets;
- sum.tx_bytes += tstats->tx_bytes;
+ for_each_possible_cpu(i) {
+ unsigned int start;
+ const struct pcpu_tstats *stat = per_cpu_ptr(dev->tstats, i);
+
+ do {
+ start = u64_stats_fetch_begin_bh(&stat->syncp);
+ memcpy(&tmp, stat, sizeof(tmp) - sizeof(stat->syncp));
+ } while (u64_stats_fetch_retry_bh(&stat->syncp, start));
+
+ sum.rx_packets += tmp.rx_packets;
+ sum.rx_bytes += tmp.rx_bytes;
+ sum.tx_packets += tmp.tx_packets;
+ sum.tx_bytes += tmp.tx_bytes;
}
dev->stats.rx_packets = sum.rx_packets;
dev->stats.rx_bytes = sum.rx_bytes;
@@ -823,8 +832,10 @@ static int ip6_tnl_rcv(struct sk_buff *skb, __u16 protocol,
}
tstats = this_cpu_ptr(t->dev->tstats);
+ u64_stats_update_begin(&tstats->syncp);
tstats->rx_packets++;
tstats->rx_bytes += skb->len;
+ u64_stats_update_end(&tstats->syncp);
netif_rx(skb);
--
1.7.10.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH net-next] ipv6: fix the use of pcpu_tstats in ip6_tunnel
2014-01-02 0:49 [PATCH net-next] ipv6: fix the use of pcpu_tstats in ip6_tunnel roy.qing.li
@ 2014-01-02 3:50 ` David Miller
2014-01-02 4:41 ` Rongqing Li
2014-01-02 14:53 ` Ben Hutchings
2014-01-02 3:56 ` Eric Dumazet
1 sibling, 2 replies; 5+ messages in thread
From: David Miller @ 2014-01-02 3:50 UTC (permalink / raw)
To: roy.qing.li; +Cc: netdev, edumazet
From: roy.qing.li@gmail.com
Date: Thu, 2 Jan 2014 08:49:40 +0800
> Eric Dumazet <edumazet@google.com>
What is this?
> Signed-off-by: Li RongQing <roy.qing.li@gmail.com>
...
> {
> - struct pcpu_tstats sum = { 0 };
> + struct pcpu_tstats tmp, sum = { 0 };
> int i;
>
> - for_each_possible_cpu(i) {
> - const struct pcpu_tstats *tstats = per_cpu_ptr(dev->tstats, i);
> + BUILD_BUG_ON(offsetof(typeof(tmp), syncp) !=
> + sizeof(tmp) - sizeof(tmp.syncp));
>
> - sum.rx_packets += tstats->rx_packets;
> - sum.rx_bytes += tstats->rx_bytes;
> - sum.tx_packets += tstats->tx_packets;
> - sum.tx_bytes += tstats->tx_bytes;
> + for_each_possible_cpu(i) {
> + unsigned int start;
> + const struct pcpu_tstats *stat = per_cpu_ptr(dev->tstats, i);
> +
> + do {
> + start = u64_stats_fetch_begin_bh(&stat->syncp);
> + memcpy(&tmp, stat, sizeof(tmp) - sizeof(stat->syncp));
> + } while (u64_stats_fetch_retry_bh(&stat->syncp, start));
It's entirely wasteful and non-canonical to use an on-stack copy for this,
just surround the entire set of statistic increments within the u64 stats
updata sequence. Then you don't need the on-stack thing.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH net-next] ipv6: fix the use of pcpu_tstats in ip6_tunnel
2014-01-02 0:49 [PATCH net-next] ipv6: fix the use of pcpu_tstats in ip6_tunnel roy.qing.li
2014-01-02 3:50 ` David Miller
@ 2014-01-02 3:56 ` Eric Dumazet
1 sibling, 0 replies; 5+ messages in thread
From: Eric Dumazet @ 2014-01-02 3:56 UTC (permalink / raw)
To: roy.qing.li; +Cc: netdev, edumazet
On Thu, 2014-01-02 at 08:49 +0800, roy.qing.li@gmail.com wrote:
> From: Li RongQing <roy.qing.li@gmail.com>
>
> when read/write the 64bit data, the correct lock should be hold. and use the
> BUILD_BUG_ON check to ensure the syncp is last element of struct pcpu_tstats,
> then reduce the copy the syncp when get the stats
No idea of why you added a BUILD_BUG_ON(), this makes no sense.
>
> Eric Dumazet <edumazet@google.com>
Why is my name mentioned in this changelog ?
> Signed-off-by: Li RongQing <roy.qing.li@gmail.com>
> ---
> net/ipv6/ip6_tunnel.c | 25 ++++++++++++++++++-------
> 1 file changed, 18 insertions(+), 7 deletions(-)
Could you find out when the bug was introduced ?
Ideally you should add :
Fixes : 12-digit SHA1 ("patch title")
Thanks
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH net-next] ipv6: fix the use of pcpu_tstats in ip6_tunnel
2014-01-02 3:50 ` David Miller
@ 2014-01-02 4:41 ` Rongqing Li
2014-01-02 14:53 ` Ben Hutchings
1 sibling, 0 replies; 5+ messages in thread
From: Rongqing Li @ 2014-01-02 4:41 UTC (permalink / raw)
To: David Miller; +Cc: roy.qing.li, netdev, edumazet
On 01/02/2014 11:50 AM, David Miller wrote:
> From: roy.qing.li@gmail.com
> Date: Thu, 2 Jan 2014 08:49:40 +0800
>
>> Eric Dumazet <edumazet@google.com>
>
> What is this?
Sorry, it should CC to Eric Dumazet
>
>> Signed-off-by: Li RongQing <roy.qing.li@gmail.com>
> ...
>> {
>> - struct pcpu_tstats sum = { 0 };
>> + struct pcpu_tstats tmp, sum = { 0 };
>> int i;
>>
>> - for_each_possible_cpu(i) {
>> - const struct pcpu_tstats *tstats = per_cpu_ptr(dev->tstats, i);
>> + BUILD_BUG_ON(offsetof(typeof(tmp), syncp) !=
>> + sizeof(tmp) - sizeof(tmp.syncp));
>>
>> - sum.rx_packets += tstats->rx_packets;
>> - sum.rx_bytes += tstats->rx_bytes;
>> - sum.tx_packets += tstats->tx_packets;
>> - sum.tx_bytes += tstats->tx_bytes;
>> + for_each_possible_cpu(i) {
>> + unsigned int start;
>> + const struct pcpu_tstats *stat = per_cpu_ptr(dev->tstats, i);
>> +
>> + do {
>> + start = u64_stats_fetch_begin_bh(&stat->syncp);
>> + memcpy(&tmp, stat, sizeof(tmp) - sizeof(stat->syncp));
>> + } while (u64_stats_fetch_retry_bh(&stat->syncp, start));
>
> It's entirely wasteful and non-canonical to use an on-stack copy for this,
> just surround the entire set of statistic increments within the u64 stats
> updata sequence. Then you don't need the on-stack thing.
>
Ok, I see.
Thanks
-Roy
> --
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
>
--
Best Reagrds,
Roy | RongQing Li
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH net-next] ipv6: fix the use of pcpu_tstats in ip6_tunnel
2014-01-02 3:50 ` David Miller
2014-01-02 4:41 ` Rongqing Li
@ 2014-01-02 14:53 ` Ben Hutchings
1 sibling, 0 replies; 5+ messages in thread
From: Ben Hutchings @ 2014-01-02 14:53 UTC (permalink / raw)
To: David Miller; +Cc: roy.qing.li, netdev, edumazet
On Wed, 2014-01-01 at 22:50 -0500, David Miller wrote:
> From: roy.qing.li@gmail.com
> Date: Thu, 2 Jan 2014 08:49:40 +0800
>
> > Eric Dumazet <edumazet@google.com>
>
> What is this?
>
> > Signed-off-by: Li RongQing <roy.qing.li@gmail.com>
> ...
> > {
> > - struct pcpu_tstats sum = { 0 };
> > + struct pcpu_tstats tmp, sum = { 0 };
> > int i;
> >
> > - for_each_possible_cpu(i) {
> > - const struct pcpu_tstats *tstats = per_cpu_ptr(dev->tstats, i);
> > + BUILD_BUG_ON(offsetof(typeof(tmp), syncp) !=
> > + sizeof(tmp) - sizeof(tmp.syncp));
> >
> > - sum.rx_packets += tstats->rx_packets;
> > - sum.rx_bytes += tstats->rx_bytes;
> > - sum.tx_packets += tstats->tx_packets;
> > - sum.tx_bytes += tstats->tx_bytes;
> > + for_each_possible_cpu(i) {
> > + unsigned int start;
> > + const struct pcpu_tstats *stat = per_cpu_ptr(dev->tstats, i);
> > +
> > + do {
> > + start = u64_stats_fetch_begin_bh(&stat->syncp);
> > + memcpy(&tmp, stat, sizeof(tmp) - sizeof(stat->syncp));
> > + } while (u64_stats_fetch_retry_bh(&stat->syncp, start));
>
> It's entirely wasteful and non-canonical to use an on-stack copy for this,
> just surround the entire set of statistic increments within the u64 stats
> updata sequence. Then you don't need the on-stack thing.
Then you add them to the sum repeatedly in case of a retry...
Ben.
--
Ben Hutchings, Staff Engineer, Solarflare
Not speaking for my employer; that's the marketing department's job.
They asked us to note that Solarflare product names are trademarked.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2014-01-02 14:53 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-02 0:49 [PATCH net-next] ipv6: fix the use of pcpu_tstats in ip6_tunnel roy.qing.li
2014-01-02 3:50 ` David Miller
2014-01-02 4:41 ` Rongqing Li
2014-01-02 14:53 ` Ben Hutchings
2014-01-02 3:56 ` Eric Dumazet
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).