Răsfoiți Sursa

[XFS] fix instant oops with tracing enabled

We can only read inode->i_count if the inode is actually there and not a
NULL pointer. This was introduced in one of the recent sync patches.

SGI-PV: 988255

SGI-Modid: xfs-linux-melb:xfs-kern:32315a

Signed-off-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Lachlan McIlroy <lachlan@sgi.com>
Christoph Hellwig 16 ani în urmă
părinte
comite
3471394ba5
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      fs/xfs/linux-2.6/xfs_vnode.c

+ 1 - 1
fs/xfs/linux-2.6/xfs_vnode.c

@@ -92,7 +92,7 @@ static inline int xfs_icount(struct xfs_inode *ip)
 {
 	struct inode *inode = VFS_I(ip);
 
-	if (!inode)
+	if (inode)
 		return atomic_read(&inode->i_count);
 	return -1;
 }