sysfs: make sysfs_lookup() return ERR_PTR(-ENOENT) on failed lookup
authorTejun Heo <htejun@gmail.com>
Wed, 16 Jan 2008 03:06:14 +0000 (12:06 +0900)
committerLinus Torvalds <torvalds@woody.linux-foundation.org>
Wed, 16 Jan 2008 17:54:03 +0000 (09:54 -0800)
sysfs tries to keep dcache a strict subset of sysfs_dirent tree by
shooting down dentries when a node is removed, that is, no negative
dentry for sysfs.  However, the lookup function returned NULL and thus
created negative dentries when the target node didn't exist.

Make sysfs_lookup() return ERR_PTR(-ENOENT) on lookup failure.  This
fixes the NULL dereference bug in sysfs_get_dentry() discovered by
bluetooth rfcomm device moving around.

Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

No differences found