diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2006-06-27 16:13:29 +1000 |
---|---|---|
committer | Nathan Scott <nathans@sgi.com> | 2006-06-27 16:13:29 +1000 |
commit | 05a3332885dd143496694bcecff223339880d7c9 (patch) | |
tree | 99b5080f4b6681fd4aaa8eb44ce7d7cf374ce955 /fs | |
parent | ebe1090549a7821faac09c467fc80b2245d0d30e (diff) |
[XFS] Remove redundant directory checks from inode link operation.
SGI-PV: 904196
SGI-Modid: xfs-linux-melb:xfs-kern:26343a
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Nathan Scott <nathans@sgi.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/xfs/linux-2.6/xfs_iops.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/xfs/linux-2.6/xfs_iops.c b/fs/xfs/linux-2.6/xfs_iops.c index 12810baeb5d4..b3b46457f151 100644 --- a/fs/xfs/linux-2.6/xfs_iops.c +++ b/fs/xfs/linux-2.6/xfs_iops.c @@ -419,9 +419,6 @@ xfs_vn_link( int error; ip = old_dentry->d_inode; /* inode being linked to */ - if (S_ISDIR(ip->i_mode)) - return -EPERM; - tdvp = vn_from_inode(dir); vp = vn_from_inode(ip); |