[JFFS2] Fix BUG() caused by failing to discard xattrs on deleted files.

When we cannot mark nodes as obsolete, such as on NAND flash, we end up
having to delete inodes with !nlink in jffs2_build_remove_unlinked_inode().
However, jffs2_build_xattr_subsystem() runs later than this, and will
attach an xref to the dead inode. Then later when the last nodes of that
dead inode are erased we hit a BUG() in jffs2_del_ino_cache()
because we're not supposed to get there with an xattr still attached to
the inode which is being killed.

The simple fix is to refrain from attaching xattrs to inodes with zero
nlink, in jffs2_build_xattr_subsystem(). It's it's OK to trust nlink
here because the file system isn't actually mounted yet, so there's no
chance that a zero-nlink file could actually be alive still because
it's open.

Signed-off-by: David Woodhouse <dwmw2@infradead.org>

+1 -1
+1 -1
fs/jffs2/xattr.c
··· 825 825 ref->xd and ref->ic are not valid yet. */ 826 826 xd = jffs2_find_xattr_datum(c, ref->xid); 827 827 ic = jffs2_get_ino_cache(c, ref->ino); 828 - if (!xd || !ic) { 828 + if (!xd || !ic || !ic->nlink) { 829 829 dbg_xattr("xref(ino=%u, xid=%u, xseqno=%u) is orphan.\n", 830 830 ref->ino, ref->xid, ref->xseqno); 831 831 ref->xseqno |= XREF_DELETE_MARKER;