summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Teigland <teigland@redhat.com>2019-08-16 13:35:09 -0500
committerDavid Teigland <teigland@redhat.com>2019-08-16 13:35:09 -0500
commit61fce72a114d23b98bfd4a9d457e3d55297455ef (patch)
tree64e9f17ea25d4d373a9cbce87f1e3f29b457fa25
parent987f2733c76cff60eaf71b01f33ec8126121d792 (diff)
downloadlvm2-61fce72a114d23b98bfd4a9d457e3d55297455ef.tar.gz
bcache: increase max allowed bcache size
from 128MB to 512MB (the default remains 8MB)
-rw-r--r--lib/label/label.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/label/label.c b/lib/label/label.c
index 3c8e10c5b..e786c89c6 100644
--- a/lib/label/label.c
+++ b/lib/label/label.c
@@ -808,8 +808,8 @@ out:
* the metadata size.)
*/
-#define MIN_BCACHE_BLOCKS 32 /* 4MB */
-#define MAX_BCACHE_BLOCKS 1024
+#define MIN_BCACHE_BLOCKS 32 /* 4MB (32 * 128KB) */
+#define MAX_BCACHE_BLOCKS 4096 /* 512MB (4096 * 128KB) */
static int _setup_bcache(void)
{