Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package btrfsprogs for openSUSE:Factory checked in at 2022-11-03 19:13:32 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/btrfsprogs (Old) and /work/SRC/openSUSE:Factory/.btrfsprogs.new.2275 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "btrfsprogs" Thu Nov 3 19:13:32 2022 rev:133 rq:1032865 version:6.0 Changes: -------- --- /work/SRC/openSUSE:Factory/btrfsprogs/btrfsprogs.changes 2022-09-23 14:15:14.705984274 +0200 +++ /work/SRC/openSUSE:Factory/.btrfsprogs.new.2275/btrfsprogs.changes 2022-11-03 19:13:38.267814630 +0100 @@ -1,0 +2,25 @@ +Wed Nov 2 00:00:00 CET 2022 - dste...@suse.cz + +- update to 6.0 + * fi usage: in tabular output, print total size and slack size + * mkfs: + * option -O now accepts values from -R to unify the interface (-R will + continue to work) + * zone reset and discard is done in parallel on all devices + * removed option --leafsize, deprecated long time ago + * corrupt-block: recalculate checksum when changing generation + * fixes: + * convert: fix reserved range detection and overlaps + * mkfs: fix creating files with reserved inode numbers with --rootdir + * receive: escape filenames in command attributes + * fix extent buffer leaks after transaction abort + * experimental: + * mkfs: support for block-group-tree (kernel 6.1) + * fsverity in send (protocol v3, WIP) + * btrfstune -b converts to block-group-tree + * other: + * cleanups, refactoring + * new and updated tests + * update documentation + +------------------------------------------------------------------- Old: ---- btrfs-progs-v5.19.1.tar.gz btrfs-progs-v5.19.1.tar.sign New: ---- btrfs-progs-v6.0.tar.gz btrfs-progs-v6.0.tar.sign ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ btrfsprogs.spec ++++++ --- /var/tmp/diff_new_pack.e5l2yH/_old 2022-11-03 19:13:40.355826909 +0100 +++ /var/tmp/diff_new_pack.e5l2yH/_new 2022-11-03 19:13:40.363826956 +0100 @@ -34,7 +34,7 @@ %define _dracutmodulesdir %(pkg-config --variable dracutmodulesdir dracut) Name: btrfsprogs -Version: 5.19.1 +Version: 6.0 Release: 0 Summary: Utilities for the Btrfs filesystem License: GPL-2.0-only ++++++ btrfs-progs-v5.19.1.tar.gz -> btrfs-progs-v6.0.tar.gz ++++++ ++++ 18649 lines of diff (skipped) ++++++ mkfs-default-features.patch ++++++ --- /var/tmp/diff_new_pack.e5l2yH/_old 2022-11-03 19:13:41.175831730 +0100 +++ /var/tmp/diff_new_pack.e5l2yH/_new 2022-11-03 19:13:41.179831753 +0100 @@ -11,29 +11,39 @@ utils.h | 4 ++++ 1 file changed, 4 insertions(+) -Index: btrfs-progs-v5.15/common/fsfeatures.h +Index: btrfs-progs-v6.0/common/fsfeatures.h =================================================================== ---- btrfs-progs-v5.15.orig/common/fsfeatures.h -+++ btrfs-progs-v5.15/common/fsfeatures.h -@@ -19,14 +19,20 @@ - - #include "kerncompat.h" +--- btrfs-progs-v6.0.orig/common/fsfeatures.h ++++ btrfs-progs-v6.0/common/fsfeatures.h +@@ -21,7 +21,9 @@ + #include <stdio.h> + #include "kernel-lib/sizes.h" +#ifndef BTRFS_MKFS_DEFAULT_NODE_SIZE #define BTRFS_MKFS_DEFAULT_NODE_SIZE SZ_16K +#endif -+#ifndef BTRFS_MKFS_DEFAULT_FEATURES - #define BTRFS_MKFS_DEFAULT_FEATURES \ - (BTRFS_FEATURE_INCOMPAT_EXTENDED_IREF \ - | BTRFS_FEATURE_INCOMPAT_NO_HOLES \ - | BTRFS_FEATURE_INCOMPAT_SKINNY_METADATA) -+#endif + /* + * Since one feature can set at least one bit in either +@@ -44,11 +46,20 @@ struct btrfs_mkfs_features { + #define BTRFS_FEATURE_STRING_BUF_SIZE (160) + + static const struct btrfs_mkfs_features btrfs_mkfs_default_features = { +#ifndef BTRFS_MKFS_DEFAULT_RUNTIME_FEATURES - #define BTRFS_MKFS_DEFAULT_RUNTIME_FEATURES \ - (BTRFS_RUNTIME_FEATURE_FREE_SPACE_TREE) + .compat_ro_flags = BTRFS_FEATURE_COMPAT_RO_FREE_SPACE_TREE | + BTRFS_FEATURE_COMPAT_RO_FREE_SPACE_TREE_VALID, ++#else ++ .compat_ro_flags = BTRFS_MKFS_DEFAULT_RUNTIME_FEATURES , ++#endif ++ ++#ifndef BTRFS_MKFS_DEFAULT_FEATURES + .incompat_flags = BTRFS_FEATURE_INCOMPAT_EXTENDED_IREF | + BTRFS_FEATURE_INCOMPAT_NO_HOLES | + BTRFS_FEATURE_INCOMPAT_SKINNY_METADATA, ++#else ++ .incompat_flags = BTRFS_MKFS_DEFAULT_FEATURES , +#endif + }; /* - * Avoid multi-device features (RAID56), mixed block groups, and zoned mode