lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:   Tue, 19 Sep 2023 22:11:20 +0800
From:   Xie XiuQi <xiexiuqi@...weicloud.com>
To:     masahiroy@...nel.org, mcgrof@...nel.org, joe@...ches.com,
        ojeda@...nel.org, ndesaulniers@...ogle.com,
        linux-kernel@...r.kernel.org
Cc:     xiexiuqi@...wei.com
Subject: [PATCH 2/3] scripts/export_report.pl: improve warning message

From: Xie XiuQi <xiexiuqi@...wei.com>

In this warning message, it's better to use the module name instead of .mod.c.

Before:
  'WARNING:fs/efivarfs/efivarfs.mod.c is not built with CONFIG_MODVERSIONS enabled'

After:
  'WARNING:fs/efivarfs/efivarfs.ko is not built with CONFIG_MODVERSIONS enabled'

Signed-off-by: Xie XiuQi <xiexiuqi@...wei.com>
---
 scripts/export_report.pl | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/scripts/export_report.pl b/scripts/export_report.pl
index fa3e47ac7c3b..eda570224a2d 100755
--- a/scripts/export_report.pl
+++ b/scripts/export_report.pl
@@ -112,6 +112,8 @@ foreach my $thismod (@allcfiles) {
 		next;
 	}
 
+	$thismod =~ s/\.mod\.c/.ko/;
+
 	my $state=0;
 	while ( <$module> ) {
 		chomp;
-- 
2.25.1

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ