diff options
author | zhangyi (F) <yi.zhang@huawei.com> | 2019-12-04 15:46:14 +0300 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2020-01-25 11:01:56 +0300 |
commit | 7f6225e446cc8dfa4c3c7959a4de3dd03ec277bf (patch) | |
tree | e3ba305ad6d4d4403cec9c6d6ca2baccde05dd16 /include/linux/jbd2.h | |
parent | 0e98c084a21177ef136149c6a293b3d1eb33ff92 (diff) | |
download | linux-7f6225e446cc8dfa4c3c7959a4de3dd03ec277bf.tar.xz |
jbd2: clean __jbd2_journal_abort_hard() and __journal_abort_soft()
__jbd2_journal_abort_hard() is no longer used, so now we can merge
__jbd2_journal_abort_hard() and __journal_abort_soft() these two
functions into jbd2_journal_abort() and remove them.
Signed-off-by: zhangyi (F) <yi.zhang@huawei.com>
Reviewed-by: Jan Kara <jack@suse.cz>
Link: https://lore.kernel.org/r/20191204124614.45424-5-yi.zhang@huawei.com
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'include/linux/jbd2.h')
-rw-r--r-- | include/linux/jbd2.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/jbd2.h b/include/linux/jbd2.h index ce44b687d02b..f613d8529863 100644 --- a/include/linux/jbd2.h +++ b/include/linux/jbd2.h @@ -1403,7 +1403,6 @@ extern int jbd2_journal_skip_recovery (journal_t *); extern void jbd2_journal_update_sb_errno(journal_t *); extern int jbd2_journal_update_sb_log_tail (journal_t *, tid_t, unsigned long, int); -extern void __jbd2_journal_abort_hard (journal_t *); extern void jbd2_journal_abort (journal_t *, int); extern int jbd2_journal_errno (journal_t *); extern void jbd2_journal_ack_err (journal_t *); |