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>] [day] [month] [year] [list]
Message-ID: <176786807549.510.15700512179294609245.tip-bot2@tip-bot2>
Date: Thu, 08 Jan 2026 10:27:55 -0000
From: "tip-bot2 for Marco Elver" <tip-bot2@...utronix.de>
To: linux-tip-commits@...r.kernel.org
Cc: kernel test robot <lkp@...el.com>, Marco Elver <elver@...gle.com>,
 "Peter Zijlstra (Intel)" <peterz@...radead.org>, x86@...nel.org,
 linux-kernel@...r.kernel.org
Subject: [tip: locking/core] compiler-context-analysys: Fix CONFIG_MODVERSION

The following commit has been merged into the locking/core branch of tip:

Commit-ID:     4d26d4a158f37cb53b22a23b4dc6c4e5bfa1369e
Gitweb:        https://git.kernel.org/tip/4d26d4a158f37cb53b22a23b4dc6c4e5bfa1369e
Author:        Marco Elver <elver@...gle.com>
AuthorDate:    Wed, 07 Jan 2026 23:35:49 +01:00
Committer:     Peter Zijlstra <peterz@...radead.org>
CommitterDate: Thu, 08 Jan 2026 11:21:57 +01:00

compiler-context-analysys: Fix CONFIG_MODVERSION

The robot reported CONFIG_MODVERSION fails; which Nathan described as
so:

> Something about the context analysis makes genksyms fall over, running
> it manually on kernel/sched/core.i with '-w' to show warnings reveals
> many new "syntax error" instances. I don't see any warnings when using
> gendwarfksyms. Maybe it is context_lock_struct, as that is the first
> error I see in the list:
>
>   include/linux/spinlock_types_raw.h:14: syntax error

Reported-by: kernel test robot <lkp@...el.com>
Debugged-by: Nathan Chancellor <nathan@...nel.org>
Closes: https://lore.kernel.org/oe-kbuild-all/202512222219.F6EkVNmQ-lkp@intel.com/
Signed-off-by: Marco Elver <elver@...gle.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@...radead.org>
Link: https://patch.msgid.link/aV7fxXjaOBtHhI9X@elver.google.com
---
 include/linux/compiler-context-analysis.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/linux/compiler-context-analysis.h b/include/linux/compiler-context-analysis.h
index 4f7559d..e86b8a3 100644
--- a/include/linux/compiler-context-analysis.h
+++ b/include/linux/compiler-context-analysis.h
@@ -6,7 +6,7 @@
 #ifndef _LINUX_COMPILER_CONTEXT_ANALYSIS_H
 #define _LINUX_COMPILER_CONTEXT_ANALYSIS_H
 
-#if defined(WARN_CONTEXT_ANALYSIS) && !defined(__CHECKER__)
+#if defined(WARN_CONTEXT_ANALYSIS) && !defined(__CHECKER__) && !defined(__GENKSYMS__)
 
 /*
  * These attributes define new context lock (Clang: capability) types.

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ