diff options
author | Weston Andros Adamson <dros@primarydata.com> | 2014-11-03 15:19:45 -0500 |
---|---|---|
committer | Trond Myklebust <trond.myklebust@primarydata.com> | 2014-11-12 14:22:52 -0500 |
commit | 16c9914069536c77ed358d94b6e247bdc464b7f0 (patch) | |
tree | f9ce7b5a4824d8040bed2562236356db22130a96 /fs/nfs/write.c | |
parent | e0d4ed71ca0344494722a041780f004d2bcf0f11 (diff) | |
download | linux-stable-16c9914069536c77ed358d94b6e247bdc464b7f0.tar.gz linux-stable-16c9914069536c77ed358d94b6e247bdc464b7f0.tar.bz2 linux-stable-16c9914069536c77ed358d94b6e247bdc464b7f0.zip |
nfs: remove spurious WARN_ON_ONCE in write path
This WARN_ON_ONCE was supposed to catch reference counting bugs, but can
trigger in inappropriate situations.
This was reproducible using NFSv2 on an architecture with 64K pages -- we
verified that it was not a reference counting bug and the warning was
safe to ignore.
Reported-by: Will Deacon <will.deacon@arm.com>
Tested-by: Will Deacon <will.deacon@arm.com>
Signed-off-by: Weston Andros Adamson <dros@primarydata.com>
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Diffstat (limited to 'fs/nfs/write.c')
-rw-r--r-- | fs/nfs/write.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/nfs/write.c b/fs/nfs/write.c index 12493846a2d3..f83b02dc9166 100644 --- a/fs/nfs/write.c +++ b/fs/nfs/write.c @@ -715,8 +715,6 @@ static void nfs_inode_remove_request(struct nfs_page *req) if (test_and_clear_bit(PG_INODE_REF, &req->wb_flags)) nfs_release_request(req); - else - WARN_ON_ONCE(1); } static void |