diff options
author | Nathan Scott <nathans@sgi.com> | 2006-06-09 14:58:20 +1000 |
---|---|---|
committer | Nathan Scott <nathans@sgi.com> | 2006-06-09 14:58:20 +1000 |
commit | b76963fac4a17b661bad46e5a57b0f918c6f0cd1 (patch) | |
tree | d2dc3d6fcc166878f978f7ed531f790b14c02e06 /fs | |
parent | 3d80ede4799889ede2aa785c2511aef3e78d5bb1 (diff) | |
download | linux-3.10-b76963fac4a17b661bad46e5a57b0f918c6f0cd1.tar.gz linux-3.10-b76963fac4a17b661bad46e5a57b0f918c6f0cd1.tar.bz2 linux-3.10-b76963fac4a17b661bad46e5a57b0f918c6f0cd1.zip |
[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 <nathans@sgi.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/xfs/linux-2.6/xfs_iops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/linux-2.6/xfs_iops.c b/fs/xfs/linux-2.6/xfs_iops.c index 2e2e275c786..0da1d6b081e 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 |