diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-19 19:54:29 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-19 19:54:29 -0700 |
commit | f805fbdaacf4367ce566743a665622387768ac0d (patch) | |
tree | 006c7be5683f8cad7be02824827e0104e15604b4 | |
parent | 875bd5ab01bc0b760fd4e97838931cd2e7456cbd (diff) | |
download | op-kernel-dev-f805fbdaacf4367ce566743a665622387768ac0d.zip op-kernel-dev-f805fbdaacf4367ce566743a665622387768ac0d.tar.gz |
Make fsnotify possibly work better for the inode removal case
Checking i_nlink is dubious, but the alternatives look even
less appetizing.
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | fs/dcache.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/dcache.c b/fs/dcache.c index 7376b612..fb10386 100644 --- a/fs/dcache.c +++ b/fs/dcache.c @@ -102,7 +102,8 @@ static inline void dentry_iput(struct dentry * dentry) list_del_init(&dentry->d_alias); spin_unlock(&dentry->d_lock); spin_unlock(&dcache_lock); - fsnotify_inoderemove(inode); + if (!inode->i_nlink) + fsnotify_inoderemove(inode); if (dentry->d_op && dentry->d_op->d_iput) dentry->d_op->d_iput(dentry, inode); else |