]> git.baikalelectronics.ru Git - kernel.git/commit
Revert "nfs: replace nfs_add_stats with nfs_inc_stats when add one"
authorNicolas Iooss <nicolas.iooss_linux@m4x.org>
Thu, 16 Apr 2015 10:48:39 +0000 (18:48 +0800)
committerTrond Myklebust <trond.myklebust@primarydata.com>
Thu, 23 Apr 2015 19:16:15 +0000 (15:16 -0400)
commit72da836867fb785ba5a6d344de73fca3faef6c0b
treeda21160011ca88efc8d1a549713a33bcd4e14a36
parent6d6b93f3419f62ba65238d14ad4294a15be447ab
Revert "nfs: replace nfs_add_stats with nfs_inc_stats when add one"

This reverts commit dee8f385a5513ab5d4d329b4f4cf67f37e9c39da.

Since commit dee8f385a551 ("nfs: replace nfs_add_stats with
nfs_inc_stats when add one"), nfs_readpage and nfs_do_writepage use
nfs_inc_stats to increment NFSIOS_READPAGES and NFSIOS_WRITEPAGES
instead of nfs_add_stats.

However nfs_inc_stats does not do the same thing as nfs_add_stats with
value 1 because these functions work on distinct stats:
nfs_inc_stats increments stats from "enum nfs_stat_eventcounters" (in
server->io_stats->events) and nfs_add_stats those from "enum
nfs_stat_bytecounters" (in server->io_stats->bytes).

Signed-off-by: Nicolas Iooss <nicolas.iooss_linux@m4x.org>
Fixes: dee8f385a551 ("nfs: replace nfs_add_stats with nfs_inc_stats...")
Cc: stable@vger.kernel.org # 3.19+
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
fs/nfs/read.c
fs/nfs/write.c