Re: Btrfs progs release 5.2.1
Hi David, On Fri, Jul 26 2019, David Sterba wrote: > btrfs-progs version 5.2.1 have been released. This is a bugfix release. > > Changes: > * scrub status: fix ETA calculation after resume > * check: fix crash when using -Q > * restore: fix symlink owner restoration > * mkfs: fix regression with mixed block groups > * core: fix commit to process all delayed refs > * other: > * minor cleanups > * test updates > > Tarballs: https://www.kernel.org/pub/linux/kernel/people/kdave/btrfs-progs/ > Git: git://git.kernel.org/pub/scm/linux/kernel/git/kdave/btrfs-progs.git The last commit in this repo's master branch is 608fd900ca45 ("Btrfs progs v5.2"). Where can I find the updated git repo? Thanks, baruch > Shortlog: > > Adam Borowski (1): > btrfs-progs: fix a printf format string fatal warning > > David Sterba (7): > btrfs-progs: props: update descriptions > btrfs-progs: props: convert to C99 initializers > btrfs-progs: props: update help texts > btrfs-progs: tests: switch messages to _log > btrfs-progs: restore: fix chown of a symlink > btrfs-progs: update CHANGES for v5.2.1 > Btrfs progs v5.2.1 > > Filipe Manana (1): > Btrfs-progs: mkfs, fix metadata corruption when using mixed mode > > Grzegorz Kowal (2): > btrfs-progs: scrub: fix ETA calculation > btrfs-progs: scrub: fix status lines alignment > > Josef Bacik (1): > btrfs-progs: deal with drop_progress properly in fsck > > Naohiro Aota (1): > btrfs-progs: check: initialize qgroup_item_count in earlier stage > > Omar Sandoval (1): > btrfs-progs: receive: get rid of unnecessary strdup() > > Qu Wenruo (3): > btrfs-progs: Exhaust delayed refs and dirty block groups to prevent > delayed refs lost > btrfs-progs: extent-tree: Unify the parameters of btrfs_inc_extent_ref() > btrfs-progs: tests: Avoid debug log populating stdout -- http://baruch.siach.name/blog/ ~. .~ Tk Open Systems =}ooO--U--Ooo{= - bar...@tkos.co.il - tel: +972.52.368.4656, http://www.tkos.co.il -
[PATCH] btrfs.static: needs libbtrfsutil
Add libbtrfsutil objects to btrfs.static link command. This fixes static build failure: utils.static.o: In function `parse_qgroupid': utils.c:(.text.parse_qgroupid+0xb0): undefined reference to `btrfs_util_is_subvolume' props.static.o: In function `prop_read_only': props.c:(.text.prop_read_only+0x70): undefined reference to `btrfs_util_set_subvolume_read_only' ... Makefile:457: recipe for target 'btrfs.static' failed make[1]: *** [btrfs.static] Error 1 Signed-off-by: Baruch Siach --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5ba76d2eee40..9b97c36a44a5 100644 --- a/Makefile +++ b/Makefile @@ -453,7 +453,7 @@ btrfs: btrfs.o $(objects) $(cmds_objects) $(libs_static) @echo "[LD] $@" $(Q)$(CC) -o $@ $^ $(LDFLAGS) $(LIBS) $(LIBS_COMP) -btrfs.static: btrfs.static.o $(static_objects) $(static_cmds_objects) $(static_libbtrfs_objects) +btrfs.static: btrfs.static.o $(static_objects) $(static_cmds_objects) $(static_libbtrfs_objects) $(libbtrfsutil_objects) @echo "[LD] $@" $(Q)$(CC) -o $@ $^ $(STATIC_LDFLAGS) $(STATIC_LIBS) $(STATIC_LIBS_COMP) -- 2.16.3 -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
[PATCH] btrfs-progs: convert: add missing types header
Build with musl libc needs the sys/types.h header for the dev_t type, since this header is not included indirectly. This fixes the following build failure: In file included from convert/source-fs.c:23:0: ./convert/source-fs.h:112:1: error: unknown type name ‘dev_t’ dev_t decode_dev(u32 dev); ^ convert/source-fs.c:31:1: error: unknown type name ‘dev_t’ dev_t decode_dev(u32 dev) ^ Signed-off-by: Baruch Siach --- convert/source-fs.h | 1 + 1 file changed, 1 insertion(+) diff --git a/convert/source-fs.h b/convert/source-fs.h index 23f33567b42d..4e5babefe6a2 100644 --- a/convert/source-fs.h +++ b/convert/source-fs.h @@ -19,6 +19,7 @@ #include "kerncompat.h" #include +#include #include #define CONV_IMAGE_SUBVOL_OBJECTID BTRFS_FIRST_FREE_OBJECTID -- 2.14.2 -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html