sysfs: use ilookup5() instead of ilookup5_nowait()
authorTejun Heo <tj@kernel.org>
Sat, 27 Sep 2008 22:48:08 +0000 (07:48 +0900)
committerGreg Kroah-Hartman <gregkh@suse.de>
Thu, 16 Oct 2008 16:24:51 +0000 (09:24 -0700)
commit45c076c5d71e6e644e2eae64f80922d162c900ac
tree68e188af66201219f41681d57975a1bdf7ec9347
parent8a89efd18aa15bb832778baa4e6eee3857ecada4
sysfs: use ilookup5() instead of ilookup5_nowait()

As inode creation is protected by sysfs_mutex, ilookup5_nowait()
always either fails to find at all or finds one which is fully
initialized, so using ilookup5_nowait() or ilookup5() doesn't make any
difference.  Switch to ilookup5() as it's planned to be removed.  This
change also makes lookup return value handling a bit simpler.

This change was suggested by Al Viro.

Signed-off-by: Tejun Heo <tj@kernel.org>
Cc: Al Viro <viro@hera.kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
fs/sysfs/dir.c