https://github.com/torvalds/linux
Revision 5242d422973d949c3b651efa049bcb1b5ef98ce9 authored by Al Viro on 27 December 2014, 03:43:19 UTC, committed by Al Viro on 27 December 2014, 03:43:19 UTC
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: Al Viro <viro@zeniv.linux.org.uk>
1 parent 97bf6af
History
Tip revision: 5242d422973d949c3b651efa049bcb1b5ef98ce9 authored by Al Viro on 27 December 2014, 03:43:19 UTC
[regression] braino in "lustre: use is_root_inode()"
Tip revision: 5242d42
File Mode Size
Documentation
arch
block
crypto
drivers
firmware
fs
include
init
ipc
kernel
lib
mm
net
samples
scripts
security
sound
tools
usr
virt
.gitignore -rw-r--r-- 1.1 KB
.mailmap -rw-r--r-- 4.7 KB
COPYING -rw-r--r-- 18.3 KB
CREDITS -rw-r--r-- 94.0 KB
Kbuild -rw-r--r-- 2.5 KB
Kconfig -rw-r--r-- 252 bytes
MAINTAINERS -rw-r--r-- 291.6 KB
Makefile -rw-r--r-- 53.0 KB
README -rw-r--r-- 18.3 KB
REPORTING-BUGS -rw-r--r-- 7.3 KB

README

back to top