From: Josef Bacik <josef@toxicpanda.com>
To: linux-btrfs@vger.kernel.org, kernel-team@fb.com
Subject: [PATCH 00/13] btrfs-progs: cleanup btrfs_item* accessors
Date: Tue, 22 Feb 2022 17:26:10 -0500 [thread overview]
Message-ID: <cover.1645568701.git.josef@toxicpanda.com> (raw)
Hello,
This is prep work for me adjusting the size of the btrfs_header. This is a
mirror of the work that was already merged into the kernel. The only extra work
that I've done here is add some compiler switches that I used to help me catch
all the different users of the helpers to make sure I didn't make any mistakes.
Thanks,
Josef
Josef Bacik (13):
btrfs-progs: turn on more compiler warnings and use -Wall
btrfs-progs: store LEAF_DATA_SIZE in the mkfs_config
btrfs-progs: store BTRFS_LEAF_DATA_SIZE in the fs_info
btrfs-progs: convert: use cfg->leaf_data_size
btrfs-progs: reduce usage of __BTRFS_LEAF_DATA_SIZE
btrfs-progs: btrfs_item_size_nr/btrfs_item_offset_nr everywhere
btrfs-progs: add btrfs_set_item_*_nr() helpers
btrfs-progs: change btrfs_file_extent_inline_item_len to take a slot
btrfs-progs: rename btrfs_item_end_nr to btrfs_item_end
btrfs-progs: remove the _nr from the item helpers
btrfs-progs: replace btrfs_item_nr_offset(0)
btrfs-progs: rework the btrfs_node accessors to match the item
accessors
btrfs-progs: make all of the item/key_ptr offset helpers take an eb
Makefile | 3 +
btrfs-corrupt-block.c | 17 ++-
check/main.c | 90 +++++++--------
check/mode-common.c | 12 +-
check/mode-lowmem.c | 37 +++---
check/qgroup-verify.c | 2 +-
cmds/inspect-tree-stats.c | 3 +-
cmds/rescue-chunk-recover.c | 4 +-
cmds/restore.c | 7 +-
convert/common.c | 33 +++---
convert/main.c | 1 +
image/main.c | 31 +++--
image/sanitize.c | 4 +-
kernel-shared/backref.c | 10 +-
kernel-shared/ctree.c | 219 ++++++++++++++++--------------------
kernel-shared/ctree.h | 110 ++++++++----------
kernel-shared/dir-item.c | 10 +-
kernel-shared/disk-io.c | 1 +
kernel-shared/extent-tree.c | 12 +-
kernel-shared/file-item.c | 12 +-
kernel-shared/inode-item.c | 14 +--
kernel-shared/print-tree.c | 29 +++--
kernel-shared/root-tree.c | 2 +-
kernel-shared/uuid-tree.c | 4 +-
kernel-shared/volumes.c | 10 +-
mkfs/common.c | 52 ++++-----
mkfs/common.h | 1 +
mkfs/main.c | 1 +
28 files changed, 333 insertions(+), 398 deletions(-)
--
2.26.3
next reply other threads:[~2022-02-22 22:26 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-22 22:26 Josef Bacik [this message]
2022-02-22 22:26 ` [PATCH 01/13] btrfs-progs: turn on more compiler warnings and use -Wall Josef Bacik
2022-03-08 16:51 ` David Sterba
2022-03-08 18:15 ` David Sterba
2022-03-08 18:26 ` David Sterba
2022-02-22 22:26 ` [PATCH 02/13] btrfs-progs: store LEAF_DATA_SIZE in the mkfs_config Josef Bacik
2022-02-22 22:26 ` [PATCH 03/13] btrfs-progs: store BTRFS_LEAF_DATA_SIZE in the fs_info Josef Bacik
2022-02-22 22:26 ` [PATCH 04/13] btrfs-progs: convert: use cfg->leaf_data_size Josef Bacik
2022-03-09 11:48 ` Nikolay Borisov
2022-03-09 14:18 ` David Sterba
2022-02-22 22:26 ` [PATCH 05/13] btrfs-progs: reduce usage of __BTRFS_LEAF_DATA_SIZE Josef Bacik
2022-02-22 22:26 ` [PATCH 06/13] btrfs-progs: btrfs_item_size_nr/btrfs_item_offset_nr everywhere Josef Bacik
2022-03-09 11:45 ` Nikolay Borisov
2022-03-09 12:27 ` Nikolay Borisov
2022-02-22 22:26 ` [PATCH 07/13] btrfs-progs: add btrfs_set_item_*_nr() helpers Josef Bacik
2022-02-22 22:26 ` [PATCH 08/13] btrfs-progs: change btrfs_file_extent_inline_item_len to take a slot Josef Bacik
2022-02-22 22:26 ` [PATCH 09/13] btrfs-progs: rename btrfs_item_end_nr to btrfs_item_end Josef Bacik
2022-02-22 22:26 ` [PATCH 10/13] btrfs-progs: remove the _nr from the item helpers Josef Bacik
2022-02-22 22:26 ` [PATCH 11/13] btrfs-progs: replace btrfs_item_nr_offset(0) Josef Bacik
2022-03-09 12:42 ` Nikolay Borisov
2022-02-22 22:26 ` [PATCH 12/13] btrfs-progs: rework the btrfs_node accessors to match the item accessors Josef Bacik
2022-02-22 22:26 ` [PATCH 13/13] btrfs-progs: make all of the item/key_ptr offset helpers take an eb Josef Bacik
2022-03-09 12:46 ` [PATCH 00/13] btrfs-progs: cleanup btrfs_item* accessors Nikolay Borisov
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=cover.1645568701.git.josef@toxicpanda.com \
--to=josef@toxicpanda.com \
--cc=kernel-team@fb.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