diff options
author | Christoph Hellwig <hch@lst.de> | 2016-04-06 01:20:36 +0200 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2016-04-06 01:20:36 +0200 |
commit | 710b1e2c2948c1e5d0499def5273ecbc6472342d (patch) | |
tree | 824c3a870523ab88faf0d2a5dcfe4ddc4e12c895 /fs/xfs/xfs_trans.c | |
parent | xfs: better xfs_trans_alloc interface (diff) | |
download | linux-710b1e2c2948c1e5d0499def5273ecbc6472342d.tar.xz linux-710b1e2c2948c1e5d0499def5273ecbc6472342d.zip |
xfs: remove transaction types
These aren't used for CIL-style logging and can be dropped.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_trans.c')
-rw-r--r-- | fs/xfs/xfs_trans.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_trans.c b/fs/xfs/xfs_trans.c index b3669efb2a0a..5f3d33d16e67 100644 --- a/fs/xfs/xfs_trans.c +++ b/fs/xfs/xfs_trans.c @@ -177,7 +177,7 @@ xfs_trans_reserve( resp->tr_logres, resp->tr_logcount, &tp->t_ticket, XFS_TRANSACTION, - permanent, 0); + permanent); } if (error) |