Skip to content

Commit 9a6b871

Browse files
committed
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
Pull vfs fix from Al Viro: "An embarrassing bug in lustre patches from this cycle ;-/" * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs: [regression] braino in "lustre: use is_root_inode()"
2 parents 29169f8 + 5242d42 commit 9a6b871

File tree

1 file changed

+1
-1
lines changed
  • drivers/staging/lustre/lustre/llite

1 file changed

+1
-1
lines changed

drivers/staging/lustre/lustre/llite/namei.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ int ll_md_blocking_ast(struct ldlm_lock *lock, struct ldlm_lock_desc *desc,
264264

265265
if ((bits & (MDS_INODELOCK_LOOKUP | MDS_INODELOCK_PERM)) &&
266266
inode->i_sb->s_root != NULL &&
267-
is_root_inode(inode))
267+
!is_root_inode(inode))
268268
ll_invalidate_aliases(inode);
269269

270270
iput(inode);

0 commit comments

Comments
 (0)