|
@@ -1196,7 +1196,7 @@ xfs_create(
|
|
unlock_dp_on_error = true;
|
|
unlock_dp_on_error = true;
|
|
|
|
|
|
xfs_defer_init(&dfops, &first_block);
|
|
xfs_defer_init(&dfops, &first_block);
|
|
- tp->t_agfl_dfops = &dfops;
|
|
|
|
|
|
+ tp->t_dfops = &dfops;
|
|
|
|
|
|
/*
|
|
/*
|
|
* Reserve disk quota and the inode.
|
|
* Reserve disk quota and the inode.
|
|
@@ -1452,7 +1452,7 @@ xfs_link(
|
|
}
|
|
}
|
|
|
|
|
|
xfs_defer_init(&dfops, &first_block);
|
|
xfs_defer_init(&dfops, &first_block);
|
|
- tp->t_agfl_dfops = &dfops;
|
|
|
|
|
|
+ tp->t_dfops = &dfops;
|
|
|
|
|
|
/*
|
|
/*
|
|
* Handle initial link state of O_TMPFILE inode
|
|
* Handle initial link state of O_TMPFILE inode
|
|
@@ -1813,7 +1813,7 @@ xfs_inactive_ifree(
|
|
xfs_trans_ijoin(tp, ip, 0);
|
|
xfs_trans_ijoin(tp, ip, 0);
|
|
|
|
|
|
xfs_defer_init(&dfops, &first_block);
|
|
xfs_defer_init(&dfops, &first_block);
|
|
- tp->t_agfl_dfops = &dfops;
|
|
|
|
|
|
+ tp->t_dfops = &dfops;
|
|
error = xfs_ifree(tp, ip, &dfops);
|
|
error = xfs_ifree(tp, ip, &dfops);
|
|
if (error) {
|
|
if (error) {
|
|
/*
|
|
/*
|
|
@@ -2659,7 +2659,7 @@ xfs_remove(
|
|
goto out_trans_cancel;
|
|
goto out_trans_cancel;
|
|
|
|
|
|
xfs_defer_init(&dfops, &first_block);
|
|
xfs_defer_init(&dfops, &first_block);
|
|
- tp->t_agfl_dfops = &dfops;
|
|
|
|
|
|
+ tp->t_dfops = &dfops;
|
|
error = xfs_dir_removename(tp, dp, name, ip->i_ino,
|
|
error = xfs_dir_removename(tp, dp, name, ip->i_ino,
|
|
&first_block, &dfops, resblks);
|
|
&first_block, &dfops, resblks);
|
|
if (error) {
|
|
if (error) {
|
|
@@ -3027,7 +3027,7 @@ xfs_rename(
|
|
}
|
|
}
|
|
|
|
|
|
xfs_defer_init(&dfops, &first_block);
|
|
xfs_defer_init(&dfops, &first_block);
|
|
- tp->t_agfl_dfops = &dfops;
|
|
|
|
|
|
+ tp->t_dfops = &dfops;
|
|
|
|
|
|
/* RENAME_EXCHANGE is unique from here on. */
|
|
/* RENAME_EXCHANGE is unique from here on. */
|
|
if (flags & RENAME_EXCHANGE)
|
|
if (flags & RENAME_EXCHANGE)
|