summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristoph Hellwig2008-10-30 07:21:10 +0100
committerLachlan McIlroy2008-10-30 07:21:10 +0100
commit3471394ba56f44761ce1c300f139478dbfb49d4a (patch)
treefb9faf7d207ad5421a7e9d2eb1a0ca73ef7f0964
parent[XFS] Move remaining quiesce code. (diff)
downloadkernel-qcow2-linux-3471394ba56f44761ce1c300f139478dbfb49d4a.tar.gz
kernel-qcow2-linux-3471394ba56f44761ce1c300f139478dbfb49d4a.tar.xz
kernel-qcow2-linux-3471394ba56f44761ce1c300f139478dbfb49d4a.zip
[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>
-rw-r--r--fs/xfs/linux-2.6/xfs_vnode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/linux-2.6/xfs_vnode.c b/fs/xfs/linux-2.6/xfs_vnode.c
index dceb6dbaa2da..ac827d231490 100644
--- a/fs/xfs/linux-2.6/xfs_vnode.c
+++ b/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;
}