forked from pool/bcache-tools
Jan Engelhardt
78695432ff
- bcache.h: fix typo from SUUP to SUPP (jsc#SLE-9807) 0019-bcache.h-fix-typo-from-SUUP-to-SUPP.patch - bcache-tools: only call set_bucket_size() for cache device (jsc#SLE-9807) 0020-bcache-tools-only-call-set_bucket_size-for-cache-dev.patch - bcache.h: add BCH_FEATURE_INCOMPAT_LARGE_BUCKET to BCH_FEATURE_INCOMPAT_SUPP (jsc#SLE-9807) 0021-bcache.h-add-BCH_FEATURE_INCOMPAT_LARGE_BUCKET-to-BC.patch - bcache-tools: check incompatible feature set (jsc#SLE-9807) 0022-bcache-tools-check-incompatible-feature-set.patch - bcache-tools: introduce BCH_FEATURE_INCOMPAT_LOG_LARGE_BUCKET_SIZE for large bucket (jsc#SLE-9807) 0023-bcache-tools-introduce-BCH_FEATURE_INCOMPAT_LOG_LARG.patch - bcache-tools: display obsoleted bucket size configuration (jsc#SLE-9807) 0024-bcache-tools-display-obsoleted-bucket-size-configura.patch - bcache-tools: recover the missing sb.csum for showing bcache device super block (jsc#SLE-9807) 0025-bcache-tools-recover-the-missing-sb.csum-for-showing.patch - bcache-tools: only call to_cache_sb() for bcache device in may_add_item() (jsc#SLE-9807) 0026-bcache-tools-only-call-to_cache_sb-for-bcache-device.patch - bcache-tools: improve column alignment for "bcache show -m" output (jsc#SLE-9807) 0027-bcache-tools-improve-column-alignment-for-bcache-sho.patch OBS-URL: https://build.opensuse.org/request/show/860492 OBS-URL: https://build.opensuse.org/package/show/filesystems/bcache-tools?expand=0&rev=31
39 lines
1.1 KiB
Diff
39 lines
1.1 KiB
Diff
From d5503bda96efdca8e2ebaa7b3d43845fda4b404d Mon Sep 17 00:00:00 2001
|
|
From: Coly Li <colyli@suse.de>
|
|
Date: Mon, 28 Dec 2020 16:10:42 +0800
|
|
Subject: [PATCH 1/9] bcache.h: fix typo from SUUP to SUPP
|
|
Git-commit: d5503bda96efdca8e2ebaa7b3d43845fda4b404d
|
|
References: jsc#SLE-9807
|
|
|
|
This patch fixes the following typos,
|
|
from BCH_FEATURE_COMPAT_SUUP to BCH_FEATURE_COMPAT_SUPP
|
|
from BCH_FEATURE_INCOMPAT_SUUP to BCH_FEATURE_INCOMPAT_SUPP
|
|
from BCH_FEATURE_INCOMPAT_SUUP to BCH_FEATURE_RO_COMPAT_SUPP
|
|
|
|
Signed-off-by: Coly Li <colyli@suse.de>
|
|
|
|
---
|
|
bcache.h | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/bcache.h b/bcache.h
|
|
index 6aef9c4..50dd2b5 100644
|
|
--- a/bcache.h
|
|
+++ b/bcache.h
|
|
@@ -200,9 +200,9 @@ uint64_t crc64(const void *data, size_t len);
|
|
#define BCH_FEATURE_INCOMPAT 2
|
|
#define BCH_FEATURE_TYPE_MASK 0x03
|
|
|
|
-#define BCH_FEATURE_COMPAT_SUUP 0
|
|
-#define BCH_FEATURE_INCOMPAT_SUUP 0
|
|
-#define BCH_FEATURE_RO_COMPAT_SUUP 0
|
|
+#define BCH_FEATURE_COMPAT_SUPP 0
|
|
+#define BCH_FEATURE_INCOMPAT_SUPP 0
|
|
+#define BCH_FEATURE_RO_COMPAT_SUPP 0
|
|
|
|
#define BCH_HAS_COMPAT_FEATURE(sb, mask) \
|
|
((sb)->feature_compat & (mask))
|
|
--
|
|
2.26.2
|
|
|