diff options
author | Li RongQing <roy.qing.li@gmail.com> | 2014-11-22 23:47:17 -0500 |
---|---|---|
committer | Trond Myklebust <trond.myklebust@primarydata.com> | 2014-11-24 20:08:47 -0500 |
commit | 5a254d08b086d80cbead2ebcee6d2a4b3a15587a (patch) | |
tree | d64afa77a5bad81e9472e6f3a623ab98541f9e91 | |
parent | fe0bf1185ddf7e9d193cfe397ed1414d91526e19 (diff) |
nfs: replace nfs_add_stats with nfs_inc_stats when add one
Signed-off-by: Li RongQing <roy.qing.li@gmail.com>
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
-rw-r--r-- | fs/nfs/read.c | 2 | ||||
-rw-r--r-- | fs/nfs/write.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/fs/nfs/read.c b/fs/nfs/read.c index beff2769c5c5..c91a4799c562 100644 --- a/fs/nfs/read.c +++ b/fs/nfs/read.c | |||
@@ -269,7 +269,7 @@ int nfs_readpage(struct file *file, struct page *page) | |||
269 | dprintk("NFS: nfs_readpage (%p %ld@%lu)\n", | 269 | dprintk("NFS: nfs_readpage (%p %ld@%lu)\n", |
270 | page, PAGE_CACHE_SIZE, page_file_index(page)); | 270 | page, PAGE_CACHE_SIZE, page_file_index(page)); |
271 | nfs_inc_stats(inode, NFSIOS_VFSREADPAGE); | 271 | nfs_inc_stats(inode, NFSIOS_VFSREADPAGE); |
272 | nfs_add_stats(inode, NFSIOS_READPAGES, 1); | 272 | nfs_inc_stats(inode, NFSIOS_READPAGES); |
273 | 273 | ||
274 | /* | 274 | /* |
275 | * Try to flush any pending writes to the file.. | 275 | * Try to flush any pending writes to the file.. |
diff --git a/fs/nfs/write.c b/fs/nfs/write.c index d489ff3f438f..af3af685a9e3 100644 --- a/fs/nfs/write.c +++ b/fs/nfs/write.c | |||
@@ -575,7 +575,7 @@ static int nfs_do_writepage(struct page *page, struct writeback_control *wbc, st | |||
575 | int ret; | 575 | int ret; |
576 | 576 | ||
577 | nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGE); | 577 | nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGE); |
578 | nfs_add_stats(inode, NFSIOS_WRITEPAGES, 1); | 578 | nfs_inc_stats(inode, NFSIOS_WRITEPAGES); |
579 | 579 | ||
580 | nfs_pageio_cond_complete(pgio, page_file_index(page)); | 580 | nfs_pageio_cond_complete(pgio, page_file_index(page)); |
581 | ret = nfs_page_async_flush(pgio, page, wbc->sync_mode == WB_SYNC_NONE); | 581 | ret = nfs_page_async_flush(pgio, page, wbc->sync_mode == WB_SYNC_NONE); |