]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
dm: Don't warn if IMA_DISABLE_HTABLE is not enabled
authorJon Hunter <jonathanh@nvidia.com>
Fri, 31 Oct 2025 15:34:55 +0000 (15:34 +0000)
committerMikulas Patocka <mpatocka@redhat.com>
Tue, 18 Nov 2025 17:24:25 +0000 (18:24 +0100)
Commit f1cd6cb24b6b ("dm ima: add a warning in dm_init if duplicate ima
events are not measured") added a warning message if CONFIG_IMA is
enabled but CONFIG_IMA_DISABLE_HTABLE is not to inform users. When
enabling CONFIG_IMA, CONFIG_IMA_DISABLE_HTABLE is disabled by default
and so warning is seen. Therefore, it seems more appropriate to make
this an INFO level message than warning. If this truly is a warning,
then maybe CONFIG_IMA_DISABLE_HTABLE should default to y if CONFIG_IMA
is enabled.

Signed-off-by: Jon Hunter <jonathanh@nvidia.com>
Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
drivers/md/dm.c

index bff3ab4a3bd805ecab6d6c9b96cc1769db8c2846..557f3f52edf4fe28dfc851bae41ab8b29abc29bd 100644 (file)
@@ -272,7 +272,7 @@ static int __init dm_init(void)
        int r, i;
 
 #if (IS_ENABLED(CONFIG_IMA) && !IS_ENABLED(CONFIG_IMA_DISABLE_HTABLE))
-       DMWARN("CONFIG_IMA_DISABLE_HTABLE is disabled."
+       DMINFO("CONFIG_IMA_DISABLE_HTABLE is disabled."
               " Duplicate IMA measurements will not be recorded in the IMA log.");
 #endif