[RFC PATCH 4/4] xfs: allow linkat() on O_TMPFILE files
Zhi Yong Wu
zwu.kernel at gmail.com
Fri Dec 13 05:34:43 CST 2013
On Tue, Nov 26, 2013 at 5:46 AM, Dave Chinner <david at fromorbit.com> wrote:
> On Mon, Nov 25, 2013 at 07:32:34PM +0800, Zhi Yong Wu wrote:
>> From: Zhi Yong Wu <wuzhy at linux.vnet.ibm.com>
>>
>> Enable O_TMPFILE support in linkat().
>>
>> http://oss.sgi.com/archives/xfs/2013-08/msg00341.html
>>
>> Signed-off-by: Zhi Yong Wu <wuzhy at linux.vnet.ibm.com>
>> ---
>> fs/xfs/xfs_inode.c | 23 +++++++++++++++++++++--
>> fs/xfs/xfs_trans_resv.c | 13 +++++++++++++
>> fs/xfs/xfs_trans_resv.h | 2 ++
>> 3 files changed, 36 insertions(+), 2 deletions(-)
>>
>> diff --git a/fs/xfs/xfs_inode.c b/fs/xfs/xfs_inode.c
>> index e1832de..7ab029b 100644
>> --- a/fs/xfs/xfs_inode.c
>> +++ b/fs/xfs/xfs_inode.c
>> @@ -62,6 +62,8 @@ kmem_zone_t *xfs_inode_zone;
>>
>> STATIC int xfs_iflush_int(xfs_inode_t *, xfs_buf_t *);
>>
>> +STATIC int xfs_iunlink_remove(xfs_trans_t *, xfs_inode_t *);
>> +
>> /*
>> * helper function to extract extent size hint from inode
>> */
>> @@ -1119,7 +1121,9 @@ xfs_bumplink(
>> {
>> xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG);
>>
>> - ASSERT(ip->i_d.di_nlink > 0);
>> + if ((VFS_I(ip)->i_nlink == 0) &&
>> + !(VFS_I(ip)->i_state & I_LINKABLE))
>> + ASSERT(ip->i_d.di_nlink > 0);
>> ip->i_d.di_nlink++;
>> inc_nlink(VFS_I(ip));
>> if ((ip->i_d.di_version == 1) &&
>> @@ -1473,6 +1477,7 @@ xfs_link(
>> {
>> xfs_mount_t *mp = tdp->i_mount;
>> xfs_trans_t *tp;
>> + struct xfs_trans_res *tres;
>> int error;
>> xfs_bmap_free_t free_list;
>> xfs_fsblock_t first_block;
>> @@ -1498,7 +1503,14 @@ xfs_link(
>> tp = xfs_trans_alloc(mp, XFS_TRANS_LINK);
>> cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
>> resblks = XFS_LINK_SPACE_RES(mp, target_name->len);
>> - error = xfs_trans_reserve(tp, &M_RES(mp)->tr_link, resblks, 0);
>> +
>> + if ((VFS_I(sip)->i_nlink == 0) &&
>> + (VFS_I(sip)->i_state & I_LINKABLE))
>> + tres = &M_RES(mp)->tr_link_tmpfile;
>> + else
>> + tres = &M_RES(mp)->tr_link;
>> +
>> + error = xfs_trans_reserve(tp, tres, resblks, 0);
>
> Uggh. For the small amount of extra space needed for the unlinked
> list reservation, I would simply add it to the tr_link reservation
> and be done with it. That gets rid of the need for the noise here.
>
>
> As per above, fold this into xfs_calc_link_reservation() by adding a:
>
>
> + xfs_calc_iunlink_remove_resv(mp);
This way seems to not work...
In xfs_calc_link_reservation(), How to determine if it is for one
regular file or O_TMPFILE file? since this functions is only passed in
mp?
>
> to the end of it. Then you can also modify
> xfs_calc_ifree_reservation() to use the same
> xfs_calc_iunlink_remove_resv() function as well.
>
> [ And similarly, looking back on the previous patch
> xfs_calc_iunlink_add_resv can be used in xfs_calc_remove_reservation
> so all the unlinked list manipulations are covered by the same
> reservation calculations. ]
>
> Cheers,
>
> Dave.
> --
> Dave Chinner
> david at fromorbit.com
--
Regards,
Zhi Yong Wu
More information about the xfs
mailing list