From: Qu Wenruo <wqu@suse.com>
To: linux-btrfs@vger.kernel.org
Subject: [PATCH 0/3] btrfs-progs: cleanup related to btrfs super block
Date: Thu, 21 Oct 2021 09:40:17 +0800 [thread overview]
Message-ID: <20211021014020.482242-1-wqu@suse.com> (raw)
This patchset mostly cleans up the mismatch between
BTRFS_SUPER_INFO_SIZE and sizeof(struct btrfs_super_block).
This cleanup itself is going to replace all the following snippets:
u8 super_block_data[BTRFS_SUPER_INFO_SIZE];
struct btrfs_super_block *sb;
sb = (struct btrfs_super_block *)super_block_data;
With:
struct btrfs_super_block sb;
Also since we're here, also cache csum_type and csum_size in fs_info,
just like what we did in the kernel.
Qu Wenruo (3):
btrfs-progs: unify sizeof(struct btrfs_super_block) and
BTRFS_SUPER_INFO_SIZE
btrfs-progs: remove temporary buffer for super block
btrfs-progs: cache csum_size and csum_type in btrfs_fs_info
btrfs-corrupt-block.c | 6 +--
check/main.c | 6 +--
check/mode-common.c | 2 +-
cmds/filesystem-usage.c | 8 ++--
cmds/inspect-dump-super.c | 11 ++----
cmds/rescue-chunk-recover.c | 24 ++++++-----
cmds/rescue-super-recover.c | 11 +++---
common/device-scan.c | 23 ++++-------
common/utils.c | 8 ++--
convert/common.c | 79 +++++++++++++++++--------------------
convert/main.c | 29 ++++++--------
image/main.c | 14 +++----
kernel-shared/ctree.h | 9 +++++
kernel-shared/disk-io.c | 41 +++++++++----------
kernel-shared/disk-io.h | 3 --
kernel-shared/file-item.c | 15 +++----
kernel-shared/print-tree.c | 4 +-
kernel-shared/volumes.c | 14 +++----
mkfs/common.c | 8 ++--
19 files changed, 141 insertions(+), 174 deletions(-)
--
2.33.0
next reply other threads:[~2021-10-21 1:40 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-10-21 1:40 Qu Wenruo [this message]
2021-10-21 1:40 ` [PATCH 1/3] btrfs-progs: unify sizeof(struct btrfs_super_block) and BTRFS_SUPER_INFO_SIZE Qu Wenruo
2021-10-21 12:40 ` David Sterba
2021-10-21 12:49 ` Qu Wenruo
2021-10-21 1:40 ` [PATCH 2/3] btrfs-progs: remove temporary buffer for super block Qu Wenruo
2021-10-21 1:40 ` [PATCH 3/3] btrfs-progs: cache csum_size and csum_type in btrfs_fs_info Qu Wenruo
2021-11-04 19:10 ` [PATCH 0/3] btrfs-progs: cleanup related to btrfs super block David Sterba
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20211021014020.482242-1-wqu@suse.com \
--to=wqu@suse.com \
--cc=linux-btrfs@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox