]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commit
net: stats: Read the statistics in ___gnet_stats_copy_basic() instead of adding.
authorSebastian Andrzej Siewior <bigeasy@linutronix.de>
Thu, 21 Oct 2021 09:59:19 +0000 (11:59 +0200)
committerDavid S. Miller <davem@davemloft.net>
Thu, 21 Oct 2021 11:47:56 +0000 (12:47 +0100)
commitc5c6e589a8c811c7f20024cc22209ae984fc2b98
treed5065e7e429ac1c5cf5575bdaa7ea91f5b3e1000
parentce2729731ab3dde8da0ce10ea74bc72fa29094d8
net: stats: Read the statistics in ___gnet_stats_copy_basic() instead of adding.

Since the rework, the statistics code always adds up the byte and packet
value(s). On 32bit architectures a seqcount_t is used in
gnet_stats_basic_sync to ensure that the 64bit values are not modified
during the read since two 32bit loads are required. The usage of a
seqcount_t requires a lock to ensure that only one writer is active at a
time. This lock leads to disabled preemption during the update.

The lack of disabling preemption is now creating a warning as reported
by Naresh since the query done by gnet_stats_copy_basic() is in
preemptible context.

For ___gnet_stats_copy_basic() there is no need to disable preemption
since the update is performed on stack and can't be modified by another
writer. Instead of disabling preemption, to avoid the warning,
simply create a read function to just read the values and return as u64.

Reported-by: Naresh Kamboju <naresh.kamboju@linaro.org>
Fixes: 67c9e6270f301 ("net: sched: Protect Qdisc::bstats with u64_stats")
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/gen_stats.c