From: Nathan Scott Date: Fri, 9 Jun 2006 04:58:20 +0000 (+1000) Subject: [XFS] getattr can return an error code, so propogate any from lower X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=b76963fac4a17b661bad46e5a57b0f918c6f0cd1;p=linux-beck.git [XFS] getattr can return an error code, so propogate any from lower layers. SGI-PV: 904196 SGI-Modid: xfs-linux-melb:xfs-kern:26095a Signed-off-by: Nathan Scott --- diff --git a/fs/xfs/linux-2.6/xfs_iops.c b/fs/xfs/linux-2.6/xfs_iops.c index 2e2e275c786f..0da1d6b081e7 100644 --- a/fs/xfs/linux-2.6/xfs_iops.c +++ b/fs/xfs/linux-2.6/xfs_iops.c @@ -643,7 +643,7 @@ xfs_vn_getattr( error = vn_revalidate(vp); if (!error) generic_fillattr(inode, stat); - return 0; + return -error; } STATIC int