From 6141e3c4cb4b72790b65917f4260b6127825f246 Mon Sep 17 00:00:00 2001 From: "Guilherme G. Piccoli" Date: Sun, 31 Mar 2024 10:30:21 -0300 Subject: [PATCH] config/doc: Fix memory unit in the config file In the description we have in the 00-default config file, both Pstore memory configs are presented as if they're in MB. They are in *bytes* indeed, so fix the braino. Signed-off-by: Guilherme G. Piccoli --- 00-default.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/00-default.conf b/00-default.conf index e810495..06c16ed 100644 --- a/00-default.conf +++ b/00-default.conf @@ -14,8 +14,8 @@ # If USE_PSTORE_RAM is set to 1, Kdump won't be loaded. Instead, the Pstore # RAM backend will be configured. In order to have success, this operation # relies in having an available RAM buffer on /proc/iomem with at least -# PSTORE_MEM_AMOUNT (decimal, in MB) in size. Also, kernel must be able to -# allocate a contiguous memory amount of PSTORE_RECORD_SZ (decimal, MB). +# PSTORE_MEM_AMOUNT (decimal, bytes) in size. Also, kernel must be able to +# allocate a contiguous memory amount of PSTORE_RECORD_SZ (decimal, bytes). # If there is no such RAM buffer, there is a possibility to make use of # the crash kernel area for that. There are risks: such memory area could # have its address mapped differently across kernel updates; also if both