Skip to content
Commit 5242d422 authored by Al Viro's avatar Al Viro
Browse files

[regression] braino in "lustre: use is_root_inode()"



In one of the places (ll_md_blocking_ast()) we had open-coded
!is_root_inode(inode) and replaced it with is_root_inode(inode).
See the last chunk of f76c23:
-                   inode != inode->i_sb->s_root->d_inode)
+                   is_root_inode(inode))
should've been
+                   !is_root_inode(inode))
obviously...

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 97bf6af1
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment