* [PATCH] btrfs-progs: remove raid stripe encoding
@ 2024-06-20 7:54 Johannes Thumshirn
2024-06-24 17:07 ` David Sterba
2024-06-24 17:30 ` David Sterba
0 siblings, 2 replies; 4+ messages in thread
From: Johannes Thumshirn @ 2024-06-20 7:54 UTC (permalink / raw)
To: David Sterba; +Cc: linux-btrfs, Johannes Thumshirn
From: Johannes Thumshirn <johannes.thumshirn@wdc.com>
Remove the not needed encoding and reserved fields in struct
raid_stripe_extent.
This saves 8 bytes per stripe extent.
Signed-off-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
---
kernel-shared/accessors.h | 3 ---
kernel-shared/print-tree.c | 33 +--------------------------------
kernel-shared/uapi/btrfs_tree.h | 14 +-------------
3 files changed, 2 insertions(+), 48 deletions(-)
diff --git a/kernel-shared/accessors.h b/kernel-shared/accessors.h
index b17c675c1807..c2681698b3cc 100644
--- a/kernel-shared/accessors.h
+++ b/kernel-shared/accessors.h
@@ -322,11 +322,8 @@ BTRFS_SETGET_FUNCS(timespec_nsec, struct btrfs_timespec, nsec, 32);
BTRFS_SETGET_STACK_FUNCS(stack_timespec_sec, struct btrfs_timespec, sec, 64);
BTRFS_SETGET_STACK_FUNCS(stack_timespec_nsec, struct btrfs_timespec, nsec, 32);
-BTRFS_SETGET_FUNCS(stripe_extent_encoding, struct btrfs_stripe_extent, encoding, 8);
BTRFS_SETGET_FUNCS(raid_stride_devid, struct btrfs_raid_stride, devid, 64);
BTRFS_SETGET_FUNCS(raid_stride_offset, struct btrfs_raid_stride, offset, 64);
-BTRFS_SETGET_STACK_FUNCS(stack_stripe_extent_encoding,
- struct btrfs_stripe_extent, encoding, 8);
BTRFS_SETGET_STACK_FUNCS(stack_raid_stride_devid, struct btrfs_raid_stride, devid, 64);
static inline struct btrfs_raid_stride *btrfs_raid_stride_nr(
diff --git a/kernel-shared/print-tree.c b/kernel-shared/print-tree.c
index 6f78ec3512de..1692e6475865 100644
--- a/kernel-shared/print-tree.c
+++ b/kernel-shared/print-tree.c
@@ -669,42 +669,11 @@ static void print_free_space_header(struct extent_buffer *leaf, int slot)
(unsigned long long)btrfs_free_space_bitmaps(leaf, header));
}
-struct raid_encoding_map {
- u8 encoding;
- char name[16];
-};
-
-static const struct raid_encoding_map raid_map[] = {
- { BTRFS_STRIPE_DUP, "DUP" },
- { BTRFS_STRIPE_RAID0, "RAID0" },
- { BTRFS_STRIPE_RAID1, "RAID1" },
- { BTRFS_STRIPE_RAID1C3, "RAID1C3" },
- { BTRFS_STRIPE_RAID1C4, "RAID1C4" },
- { BTRFS_STRIPE_RAID5, "RAID5" },
- { BTRFS_STRIPE_RAID6, "RAID6" },
- { BTRFS_STRIPE_RAID10, "RAID10" }
-};
-
-static const char *stripe_encoding_name(u8 encoding)
-{
- for (int i = 0; i < ARRAY_SIZE(raid_map); i++) {
- if (raid_map[i].encoding == encoding)
- return raid_map[i].name;
- }
-
- return "UNKNOWN";
-}
-
static void print_raid_stripe_key(struct extent_buffer *eb,
u32 item_size, struct btrfs_stripe_extent *stripe)
{
- int num_stripes;
- u8 encoding = btrfs_stripe_extent_encoding(eb, stripe);
-
- num_stripes = (item_size - offsetof(struct btrfs_stripe_extent, strides)) /
- sizeof(struct btrfs_raid_stride);
+ int num_stripes = item_size / sizeof(struct btrfs_raid_stride);
- printf("\t\t\tencoding: %s\n", stripe_encoding_name(encoding));
for (int i = 0; i < num_stripes; i++)
printf("\t\t\tstripe %d devid %llu physical %llu\n", i,
(unsigned long long)btrfs_raid_stride_devid_nr(eb, stripe, i),
diff --git a/kernel-shared/uapi/btrfs_tree.h b/kernel-shared/uapi/btrfs_tree.h
index 271346258d1d..5720a03c939b 100644
--- a/kernel-shared/uapi/btrfs_tree.h
+++ b/kernel-shared/uapi/btrfs_tree.h
@@ -712,21 +712,9 @@ struct btrfs_raid_stride {
__le64 offset;
} __attribute__ ((__packed__));
-/* The stripe_extent::encoding, 1:1 mapping of enum btrfs_raid_types */
-#define BTRFS_STRIPE_RAID0 1
-#define BTRFS_STRIPE_RAID1 2
-#define BTRFS_STRIPE_DUP 3
-#define BTRFS_STRIPE_RAID10 4
-#define BTRFS_STRIPE_RAID5 5
-#define BTRFS_STRIPE_RAID6 6
-#define BTRFS_STRIPE_RAID1C3 7
-#define BTRFS_STRIPE_RAID1C4 8
-
struct btrfs_stripe_extent {
- u8 encoding;
- u8 reserved[7];
/* Array of raid strides this stripe is comprised of. */
- struct btrfs_raid_stride strides;
+ __DECLARE_FLEX_ARRAY(struct btrfs_raid_stride, strides);
} __attribute__ ((__packed__));
#define BTRFS_FREE_SPACE_EXTENT 1
--
2.43.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] btrfs-progs: remove raid stripe encoding
2024-06-20 7:54 [PATCH] btrfs-progs: remove raid stripe encoding Johannes Thumshirn
@ 2024-06-24 17:07 ` David Sterba
2024-06-24 17:09 ` David Sterba
2024-06-24 17:30 ` David Sterba
1 sibling, 1 reply; 4+ messages in thread
From: David Sterba @ 2024-06-24 17:07 UTC (permalink / raw)
To: Johannes Thumshirn; +Cc: David Sterba, linux-btrfs, Johannes Thumshirn
On Thu, Jun 20, 2024 at 09:54:55AM +0200, Johannes Thumshirn wrote:
> From: Johannes Thumshirn <johannes.thumshirn@wdc.com>
>
> Remove the not needed encoding and reserved fields in struct
> raid_stripe_extent.
>
> This saves 8 bytes per stripe extent.
>
> Signed-off-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
> ---
> kernel-shared/accessors.h | 3 ---
> kernel-shared/print-tree.c | 33 +--------------------------------
> kernel-shared/uapi/btrfs_tree.h | 14 +-------------
> 3 files changed, 2 insertions(+), 48 deletions(-)
This fails to compiler because the tree-checker.c code still references
the removed functions:
kernel-shared/tree-checker.c: In function ‘check_raid_stripe_extent’:
kernel-shared/tree-checker.c:1740:17: warning: implicit declaration of function ‘btrfs_stripe_extent_encoding’; did you mean ‘btrfs_file_extent_end’? [-Wimplicit-function-declaration]
1740 | switch (btrfs_stripe_extent_encoding(leaf, stripe_extent)) {
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] btrfs-progs: remove raid stripe encoding
2024-06-24 17:07 ` David Sterba
@ 2024-06-24 17:09 ` David Sterba
0 siblings, 0 replies; 4+ messages in thread
From: David Sterba @ 2024-06-24 17:09 UTC (permalink / raw)
To: David Sterba
Cc: Johannes Thumshirn, David Sterba, linux-btrfs, Johannes Thumshirn
On Mon, Jun 24, 2024 at 07:07:15PM +0200, David Sterba wrote:
> On Thu, Jun 20, 2024 at 09:54:55AM +0200, Johannes Thumshirn wrote:
> > From: Johannes Thumshirn <johannes.thumshirn@wdc.com>
> >
> > Remove the not needed encoding and reserved fields in struct
> > raid_stripe_extent.
> >
> > This saves 8 bytes per stripe extent.
> >
> > Signed-off-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
> > ---
> > kernel-shared/accessors.h | 3 ---
> > kernel-shared/print-tree.c | 33 +--------------------------------
> > kernel-shared/uapi/btrfs_tree.h | 14 +-------------
> > 3 files changed, 2 insertions(+), 48 deletions(-)
>
> This fails to compiler because the tree-checker.c code still references
> the removed functions:
>
> kernel-shared/tree-checker.c: In function ‘check_raid_stripe_extent’:
> kernel-shared/tree-checker.c:1740:17: warning: implicit declaration of function ‘btrfs_stripe_extent_encoding’; did you mean ‘btrfs_file_extent_end’? [-Wimplicit-function-declaration]
> 1740 | switch (btrfs_stripe_extent_encoding(leaf, stripe_extent)) {
> | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
Fixed in devel.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] btrfs-progs: remove raid stripe encoding
2024-06-20 7:54 [PATCH] btrfs-progs: remove raid stripe encoding Johannes Thumshirn
2024-06-24 17:07 ` David Sterba
@ 2024-06-24 17:30 ` David Sterba
1 sibling, 0 replies; 4+ messages in thread
From: David Sterba @ 2024-06-24 17:30 UTC (permalink / raw)
To: Johannes Thumshirn; +Cc: David Sterba, linux-btrfs, Johannes Thumshirn
On Thu, Jun 20, 2024 at 09:54:55AM +0200, Johannes Thumshirn wrote:
> + __DECLARE_FLEX_ARRAY(struct btrfs_raid_stride, strides);
This is too new for LTS distros, I added a copy of the definition to
kernecompat.h.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-06-24 17:30 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-20 7:54 [PATCH] btrfs-progs: remove raid stripe encoding Johannes Thumshirn
2024-06-24 17:07 ` David Sterba
2024-06-24 17:09 ` David Sterba
2024-06-24 17:30 ` David Sterba
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox