diff options
author | Peter Zijlstra | 2007-05-08 09:35:12 +0200 |
---|---|---|
committer | Linus Torvalds | 2007-05-08 20:15:21 +0200 |
commit | 277866a0e3a4f97e859f7a621f5b4f5359c9526c (patch) | |
tree | 20b244f5c0c7b6a692f0290f70f0fefae9d88d5a /fs/nfs | |
parent | no longer #include <asm/kdebug.h> (diff) | |
download | kernel-qcow2-linux-277866a0e3a4f97e859f7a621f5b4f5359c9526c.tar.gz kernel-qcow2-linux-277866a0e3a4f97e859f7a621f5b4f5359c9526c.tar.xz kernel-qcow2-linux-277866a0e3a4f97e859f7a621f5b4f5359c9526c.zip |
nfs: fix congestion control: use atomic_longs
Change the atomic_t in struct nfs_server to atomic_long_t in anticipation
of machines that can handle 8+TB of (4K) pages under writeback.
However I suspect other things in NFS will start going *bang* by then.
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Trond Myklebust <trond.myklebust@fys.uio.no>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/nfs')
-rw-r--r-- | fs/nfs/write.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/nfs/write.c b/fs/nfs/write.c index 522cd413906e..de92b9509d94 100644 --- a/fs/nfs/write.c +++ b/fs/nfs/write.c @@ -224,7 +224,7 @@ static int nfs_set_page_writeback(struct page *page) struct inode *inode = page->mapping->host; struct nfs_server *nfss = NFS_SERVER(inode); - if (atomic_inc_return(&nfss->writeback) > + if (atomic_long_inc_return(&nfss->writeback) > NFS_CONGESTION_ON_THRESH) set_bdi_congested(&nfss->backing_dev_info, WRITE); } @@ -237,7 +237,7 @@ static void nfs_end_page_writeback(struct page *page) struct nfs_server *nfss = NFS_SERVER(inode); end_page_writeback(page); - if (atomic_dec_return(&nfss->writeback) < NFS_CONGESTION_OFF_THRESH) { + if (atomic_long_dec_return(&nfss->writeback) < NFS_CONGESTION_OFF_THRESH) { clear_bdi_congested(&nfss->backing_dev_info, WRITE); congestion_end(WRITE); } |