From 849ce473389cd827268c7d6781ba5082cbac162d Mon Sep 17 00:00:00 2001 From: Kent Overstreet Date: Fri, 12 Apr 2013 11:37:33 -0700 Subject: use SB_JOURNAL_BUCKETS for superblock --- bcache.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bcache.h b/bcache.h index 6e2a7ea..25e3047 100644 --- a/bcache.h +++ b/bcache.h @@ -30,6 +30,7 @@ static const char bcache_magic[] = { #define SB_SECTOR 8 #define SB_LABEL_SIZE 32 +#define SB_JOURNAL_BUCKETS 256U #define BDEV_DATA_START_DEFAULT 16 /* sectors */ struct cache_sb { @@ -80,7 +81,7 @@ struct cache_sb { uint16_t njournal_buckets; uint16_t keys; }; - uint64_t d[]; /* journal buckets */ + uint64_t d[SB_JOURNAL_BUCKETS]; /* journal buckets */ }; BITMASK(SB_BDEV, struct cache_sb, version, 0, 1); -- cgit v1.2.3