diff options
author | Harshad Shirwadkar <harshadshirwadkar@gmail.com> | 2021-12-23 23:21:38 +0300 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2021-12-24 02:13:25 +0300 |
commit | 7bbbe241ec7ce0def9f71464c878fdbd2b0dcf37 (patch) | |
tree | c5ae1a29d39903622fb1f2066a87f96b47329b1a /fs/ext4/ioctl.c | |
parent | 2729cfdcfa1cc49bef5a90d046fa4a187fdfcc69 (diff) | |
download | linux-7bbbe241ec7ce0def9f71464c878fdbd2b0dcf37.tar.xz |
ext4: drop ineligible txn start stop APIs
This patch drops ext4_fc_start_ineligible() and
ext4_fc_stop_ineligible() APIs. Fast commit ineligible transactions
should simply call ext4_fc_mark_ineligible() after starting the
trasaction.
Signed-off-by: Harshad Shirwadkar <harshadshirwadkar@gmail.com>
Link: https://lore.kernel.org/r/20211223202140.2061101-3-harshads@google.com
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/ioctl.c')
-rw-r--r-- | fs/ext4/ioctl.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/ext4/ioctl.c b/fs/ext4/ioctl.c index e64a12e1218a..1366afb59fba 100644 --- a/fs/ext4/ioctl.c +++ b/fs/ext4/ioctl.c @@ -169,7 +169,7 @@ static long swap_inode_boot_loader(struct super_block *sb, err = -EINVAL; goto err_out; } - ext4_fc_start_ineligible(sb, EXT4_FC_REASON_SWAP_BOOT); + ext4_fc_mark_ineligible(sb, EXT4_FC_REASON_SWAP_BOOT); /* Protect extent tree against block allocations via delalloc */ ext4_double_down_write_data_sem(inode, inode_bl); @@ -252,7 +252,6 @@ revert: err_out1: ext4_journal_stop(handle); - ext4_fc_stop_ineligible(sb); ext4_double_up_write_data_sem(inode, inode_bl); err_out: |