From: Marco Elver Date: Mon, 19 Jan 2026 09:05:55 +0000 (+0100) Subject: tomoyo: Use scoped init guard X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=41539433b32d71aea9f7ada84dc6a8bd014ca50d;p=thirdparty%2Flinux.git tomoyo: Use scoped init guard Convert lock initialization to scoped guarded initialization where lock-guarded members are initialized in the same scope. This ensures the context analysis treats the context as active during member initialization. This is required to avoid errors once implicit context assertion is removed. Signed-off-by: Marco Elver Signed-off-by: Peter Zijlstra (Intel) Link: https://patch.msgid.link/20260119094029.1344361-6-elver@google.com --- diff --git a/security/tomoyo/common.c b/security/tomoyo/common.c index 86ce56c32d377..7e1f825d903b3 100644 --- a/security/tomoyo/common.c +++ b/security/tomoyo/common.c @@ -2557,7 +2557,7 @@ int tomoyo_open_control(const u8 type, struct file *file) if (!head) return -ENOMEM; - mutex_init(&head->io_sem); + guard(mutex_init)(&head->io_sem); head->type = type; switch (type) { case TOMOYO_DOMAINPOLICY: