aboutsummaryrefslogtreecommitdiffstats
path: root/fs/fuse
diff options
context:
space:
mode:
authorMiklos Szeredi <mszeredi@suse.cz>2013-02-04 09:57:42 -0500
committerMiklos Szeredi <mszeredi@suse.cz>2013-02-04 09:57:42 -0500
commitdfca7cebc2679f3d129f8e680a8f199a7ad16e38 (patch)
treefa519439bec5f96132af4772618f53a30d0a179f /fs/fuse
parent6a4e922c3db06f7da27e072729e047185c2fba66 (diff)
fuse: don't WARN when nlink is zero
drop_nlink() warns if nlink is already zero. This is triggerable by a buggy userspace filesystem. The cure, I think, is worse than the disease so disable the warning. Reported-by: Tero Roponen <tero.roponen@gmail.com> Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Diffstat (limited to 'fs/fuse')
-rw-r--r--fs/fuse/dir.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/fs/fuse/dir.c b/fs/fuse/dir.c
index dc5e64893375..2b112d978e9f 100644
--- a/fs/fuse/dir.c
+++ b/fs/fuse/dir.c
@@ -705,7 +705,14 @@ static int fuse_unlink(struct inode *dir, struct dentry *entry)
705 705
706 spin_lock(&fc->lock); 706 spin_lock(&fc->lock);
707 fi->attr_version = ++fc->attr_version; 707 fi->attr_version = ++fc->attr_version;
708 drop_nlink(inode); 708 /*
709 * If i_nlink == 0 then unlink doesn't make sense, yet this can
710 * happen if userspace filesystem is careless. It would be
711 * difficult to enforce correct nlink usage so just ignore this
712 * condition here
713 */
714 if (inode->i_nlink > 0)
715 drop_nlink(inode);
709 spin_unlock(&fc->lock); 716 spin_unlock(&fc->lock);
710 fuse_invalidate_attr(inode); 717 fuse_invalidate_attr(inode);
711 fuse_invalidate_attr(dir); 718 fuse_invalidate_attr(dir);