diff options
author | Brian Foster <bfoster@redhat.com> | 2013-09-20 17:06:09 +0200 |
---|---|---|
committer | Ben Myers <bpm@sgi.com> | 2013-10-08 21:53:02 +0200 |
commit | 36b21dde6e899d2f25077b7c239d2d6bcff17d73 (patch) | |
tree | 34470b5c788b4db47002d891aa7f8d065aabd3df /fs/xfs/xfs_symlink.h | |
parent | xfs: add the inode directory type support to XFS_IOC_FSGEOM (diff) | |
download | linux-36b21dde6e899d2f25077b7c239d2d6bcff17d73.tar.xz linux-36b21dde6e899d2f25077b7c239d2d6bcff17d73.zip |
xfs: push down inactive transaction mgmt for remote symlinks
Push down the transaction management for remote symlinks from
xfs_inactive() down to xfs_inactive_symlink_rmt(). The latter is
cleaned up to avoid transaction management intended for the
calling context (i.e., trans duplication, reservation, item
attachment).
Signed-off-by: Brian Foster <bfoster@redhat.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Ben Myers <bpm@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_symlink.h')
-rw-r--r-- | fs/xfs/xfs_symlink.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_symlink.h b/fs/xfs/xfs_symlink.h index 99338ba666ac..e75245d09116 100644 --- a/fs/xfs/xfs_symlink.h +++ b/fs/xfs/xfs_symlink.h @@ -22,6 +22,6 @@ int xfs_symlink(struct xfs_inode *dp, struct xfs_name *link_name, const char *target_path, umode_t mode, struct xfs_inode **ipp); int xfs_readlink(struct xfs_inode *ip, char *link); -int xfs_inactive_symlink(struct xfs_inode *ip, struct xfs_trans **tpp); +int xfs_inactive_symlink(struct xfs_inode *ip); #endif /* __XFS_SYMLINK_H */ |