jbd2: remove unneeded kmap for jh_in->b_frozen_data in jbd2_journal_write_metadata_buffer

Remove kmap for page of b_frozen_data from jbd2_alloc() which always
provides an address from the direct kernel mapping.

Signed-off-by: Kemeng Shi <shikemeng@huaweicloud.com>
Reviewed-by: Jan Kara <jack@suse.cz>
Reviewed-by: Zhang Yi <yi.zhang@huawei.com>
Link: https://patch.msgid.link/20240801013815.2393869-5-shikemeng@huaweicloud.com
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
pull/959/head
Kemeng Shi 2024-08-01 09:38:11 +08:00 committed by Theodore Ts'o
parent fa10db138d
commit debbfd991f
1 changed files with 4 additions and 2 deletions

View File

@ -352,12 +352,13 @@ int jbd2_journal_write_metadata_buffer(transaction_t *transaction,
done_copy_out = 1; done_copy_out = 1;
new_folio = virt_to_folio(jh_in->b_frozen_data); new_folio = virt_to_folio(jh_in->b_frozen_data);
new_offset = offset_in_folio(new_folio, jh_in->b_frozen_data); new_offset = offset_in_folio(new_folio, jh_in->b_frozen_data);
mapped_data = jh_in->b_frozen_data;
} else { } else {
new_folio = bh_in->b_folio; new_folio = bh_in->b_folio;
new_offset = offset_in_folio(new_folio, bh_in->b_data); new_offset = offset_in_folio(new_folio, bh_in->b_data);
mapped_data = kmap_local_folio(new_folio, new_offset);
} }
mapped_data = kmap_local_folio(new_folio, new_offset);
/* /*
* Fire data frozen trigger if data already wasn't frozen. Do this * Fire data frozen trigger if data already wasn't frozen. Do this
* before checking for escaping, as the trigger may modify the magic * before checking for escaping, as the trigger may modify the magic
@ -373,6 +374,7 @@ int jbd2_journal_write_metadata_buffer(transaction_t *transaction,
*/ */
if (*((__be32 *)mapped_data) == cpu_to_be32(JBD2_MAGIC_NUMBER)) if (*((__be32 *)mapped_data) == cpu_to_be32(JBD2_MAGIC_NUMBER))
do_escape = 1; do_escape = 1;
if (!jh_in->b_frozen_data)
kunmap_local(mapped_data); kunmap_local(mapped_data);
/* /*