Skip to content

Commit

Permalink
[XFS] link(2) on directory is banned in VFS.
Browse files Browse the repository at this point in the history
SGI-PV: 904196
SGI-Modid: xfs-linux-melb:xfs-kern:26293a

Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Nathan Scott <nathans@sgi.com>
  • Loading branch information
Alexey Dobriyan authored and natoscott committed Jun 27, 2006
1 parent eb99add commit b71d300
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions fs/xfs/xfs_vnodeops.c
Original file line number Diff line number Diff line change
Expand Up @@ -2603,8 +2603,7 @@ xfs_link(
vn_trace_entry(src_vp, __FUNCTION__, (inst_t *)__return_address);

target_namelen = VNAMELEN(dentry);
if (VN_ISDIR(src_vp))
return XFS_ERROR(EPERM);
ASSERT(!VN_ISDIR(src_vp));

sip = xfs_vtoi(src_vp);
tdp = XFS_BHVTOI(target_dir_bdp);
Expand Down Expand Up @@ -2699,9 +2698,8 @@ xfs_link(
xfs_trans_log_inode(tp, tdp, XFS_ILOG_CORE);

error = xfs_bumplink(tp, sip);
if (error) {
if (error)
goto abort_return;
}

/*
* If this is a synchronous mount, make sure that the
Expand All @@ -2719,9 +2717,8 @@ xfs_link(
}

error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES, NULL);
if (error) {
if (error)
goto std_return;
}

/* Fall through to std_return with error = 0. */
std_return:
Expand All @@ -2742,6 +2739,8 @@ xfs_link(
xfs_trans_cancel(tp, cancel_flags);
goto std_return;
}


/*
* xfs_mkdir
*
Expand Down

0 comments on commit b71d300

Please sign in to comment.