65e0156deb
- Update to 5.15 OBS-URL: https://build.opensuse.org/request/show/930706 OBS-URL: https://build.opensuse.org/package/show/filesystems/btrfsprogs?expand=0&rev=357
39 lines
1.2 KiB
Diff
39 lines
1.2 KiB
Diff
From: Jeff Mahoney <jeffm@suse.com>
|
|
Subject: mkfs: allow site to override defaults
|
|
Patch-mainline: Never, a real solution with a config file is required
|
|
References: FATE#320615
|
|
|
|
This is a simple method to allow us to set site defaults for mkfs by
|
|
adding -include <includefile> to cflags.
|
|
|
|
Signed-off-by: Jeff Mahoney <jeffm@suse.com>
|
|
---
|
|
utils.h | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
Index: btrfs-progs-v5.15/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"
|
|
|
|
+#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
|
|
|
|
+#ifndef BTRFS_MKFS_DEFAULT_RUNTIME_FEATURES
|
|
#define BTRFS_MKFS_DEFAULT_RUNTIME_FEATURES \
|
|
(BTRFS_RUNTIME_FEATURE_FREE_SPACE_TREE)
|
|
+#endif
|
|
|
|
/*
|
|
* Avoid multi-device features (RAID56), mixed block groups, and zoned mode
|