reiserfs: Fix warning and inode leak when deleting inode with xattrs
authorJan Kara <jack@suse.cz>
Fri, 29 Mar 2013 14:39:16 +0000 (15:39 +0100)
committerBen Hutchings <ben@decadent.org.uk>
Wed, 10 Apr 2013 02:20:05 +0000 (03:20 +0100)
commit9d4fee47534112e0e39e91268a89c8cb35c5a69d
tree3402061c71cc1cdc5dffe0a082a3d1f2249decc7
parent743d180e8341476f031ca2a4e63cfc27274cc353
reiserfs: Fix warning and inode leak when deleting inode with xattrs

commit 35e5cbc0af240778e61113286c019837e06aeec6 upstream.

After commit 21d8a15a (lookup_one_len: don't accept . and ..) reiserfs
started failing to delete xattrs from inode. This was due to a buggy
test for '.' and '..' in fill_with_dentries() which resulted in passing
'.' and '..' entries to lookup_one_len() in some cases. That returned
error and so we failed to iterate over all xattrs of and inode.

Fix the test in fill_with_dentries() along the lines of the one in
lookup_one_len().

Reported-by: Pawel Zawora <pzawora@gmail.com>
Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
fs/reiserfs/xattr.c