Skip to content

Commit f7b4943

Browse files
Coly Liaxboe
authored andcommitted
bcache: fix typo from SUUP to SUPP in features.h
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 Fixes: d721a43 ("bcache: increase super block version for cache device and backing device") Fixes: ffa4703 ("bcache: add bucket_size_hi into struct cache_sb_disk for large bucket") Signed-off-by: Coly Li <[email protected]> Cc: [email protected] # 5.9+ Signed-off-by: Jens Axboe <[email protected]>
1 parent e809270 commit f7b4943

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

drivers/md/bcache/features.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
/* Incompat feature set */
1616
#define BCH_FEATURE_INCOMPAT_LARGE_BUCKET 0x0001 /* 32bit bucket size */
1717

18-
#define BCH_FEATURE_COMPAT_SUUP 0
19-
#define BCH_FEATURE_RO_COMPAT_SUUP 0
20-
#define BCH_FEATURE_INCOMPAT_SUUP BCH_FEATURE_INCOMPAT_LARGE_BUCKET
18+
#define BCH_FEATURE_COMPAT_SUPP 0
19+
#define BCH_FEATURE_RO_COMPAT_SUPP 0
20+
#define BCH_FEATURE_INCOMPAT_SUPP BCH_FEATURE_INCOMPAT_LARGE_BUCKET
2121

2222
#define BCH_HAS_COMPAT_FEATURE(sb, mask) \
2323
((sb)->feature_compat & (mask))

0 commit comments

Comments
 (0)