diff options
author | Christoph Hellwig <hch@infradead.org> | 2007-09-19 01:27:49 -0400 |
---|---|---|
committer | Lachlan McIlroy <lachlan@redback.melbourne.sgi.com> | 2008-02-07 00:44:04 -0500 |
commit | 21a62542b6d7f726d6c1d2cfbfa084f721ba4a26 (patch) | |
tree | db0a080fd3550b12000d96513c5d92836e95ae5b /fs/xfs/linux-2.6/xfs_ioctl.c | |
parent | 15947f2d4f747897f31cfaa36e98a93f80ca3d3f (diff) |
[XFS] simplify vn_revalidate
No need to allocate a bhv_vattr_t on stack and call xfs_getattr to update
a few fields in the Linux inode from the XFS inode, just do it directly.
And yes, this function is in dire need of a better name and prototype,
I'll do in a separate patch, though.
SGI-PV: 970705
SGI-Modid: xfs-linux-melb:xfs-kern:29713a
Signed-off-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Lachlan McIlroy <lachlan@sgi.com>
Signed-off-by: Tim Shimmin <tes@sgi.com>
Diffstat (limited to 'fs/xfs/linux-2.6/xfs_ioctl.c')
-rw-r--r-- | fs/xfs/linux-2.6/xfs_ioctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/linux-2.6/xfs_ioctl.c b/fs/xfs/linux-2.6/xfs_ioctl.c index 30bb994d2899..90b10d181db2 100644 --- a/fs/xfs/linux-2.6/xfs_ioctl.c +++ b/fs/xfs/linux-2.6/xfs_ioctl.c | |||
@@ -1236,7 +1236,7 @@ xfs_ioc_xattr( | |||
1236 | 1236 | ||
1237 | error = xfs_setattr(ip, vattr, attr_flags, NULL); | 1237 | error = xfs_setattr(ip, vattr, attr_flags, NULL); |
1238 | if (likely(!error)) | 1238 | if (likely(!error)) |
1239 | __vn_revalidate(vp, vattr); /* update flags */ | 1239 | vn_revalidate(vp); /* update flags */ |
1240 | error = -error; | 1240 | error = -error; |
1241 | break; | 1241 | break; |
1242 | } | 1242 | } |
@@ -1271,7 +1271,7 @@ xfs_ioc_xattr( | |||
1271 | 1271 | ||
1272 | error = xfs_setattr(ip, vattr, attr_flags, NULL); | 1272 | error = xfs_setattr(ip, vattr, attr_flags, NULL); |
1273 | if (likely(!error)) | 1273 | if (likely(!error)) |
1274 | __vn_revalidate(vp, vattr); /* update flags */ | 1274 | vn_revalidate(vp); /* update flags */ |
1275 | error = -error; | 1275 | error = -error; |
1276 | break; | 1276 | break; |
1277 | } | 1277 | } |