diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2013-11-29 22:54:55 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2014-01-25 03:13:00 -0500 |
commit | 96c8c442117859cd95b5b57836ff374ff43f0564 (patch) | |
tree | 8d76bc2fb3321aa60dd632d21532c9530d7bc2e6 /fs/xfs | |
parent | b22e8fedc19588864a6ba0acefbbed06f05ba713 (diff) | |
download | op-kernel-dev-96c8c442117859cd95b5b57836ff374ff43f0564.zip op-kernel-dev-96c8c442117859cd95b5b57836ff374ff43f0564.tar.gz |
xfs: switch to kfree_put_link()
don't bother open-coding it...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/xfs')
-rw-r--r-- | fs/xfs/xfs_iops.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/fs/xfs/xfs_iops.c b/fs/xfs/xfs_iops.c index 104455b..a3dad17 100644 --- a/fs/xfs/xfs_iops.c +++ b/fs/xfs/xfs_iops.c @@ -391,18 +391,6 @@ xfs_vn_follow_link( return NULL; } -STATIC void -xfs_vn_put_link( - struct dentry *dentry, - struct nameidata *nd, - void *p) -{ - char *s = nd_get_link(nd); - - if (!IS_ERR(s)) - kfree(s); -} - STATIC int xfs_vn_getattr( struct vfsmount *mnt, @@ -1118,7 +1106,7 @@ static const struct inode_operations xfs_dir_ci_inode_operations = { static const struct inode_operations xfs_symlink_inode_operations = { .readlink = generic_readlink, .follow_link = xfs_vn_follow_link, - .put_link = xfs_vn_put_link, + .put_link = kfree_put_link, .get_acl = xfs_get_acl, .getattr = xfs_vn_getattr, .setattr = xfs_vn_setattr, |