From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from confino.investici.org (confino.investici.org [93.190.126.19]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 530122D739C; Tue, 23 Jun 2026 15:35:10 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=93.190.126.19 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782228911; cv=none; b=NMQnbd9ds8lEyexT30UadB7zB7KPizpKxeoiHMh7rKZYRtOiSZrcjL9D6rj4Axb/1Ul/of3FZFmJeZG3Nyxf3OBIWT9PSQ9c7/KGiKjH3pcP9lF2I86afmOhrRtOiRCDM3BguJhZ+tRQX34cXc8+fakcsGSnXOxGo8+82LPI4tQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782228911; c=relaxed/simple; bh=yChqbXLLBO752DTztl9giRu0HdyXplFNuHMpOC0iNIs=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=f1jtZYJ6iuxR+LSAfa5S6EOc9qi/qbTBc1r53FuR3djTSVBN67oMKIbVIuubB9KWZjudcP/o+yxtBwat3VjStjq81NP6giOUayKXUrjgQzOgd3GXI3Ipflt+V2P1YGNxlDUk9fZI9F8rwnYhOguklG0JrCFYAzhwN4e3GmsdRhM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=grrlz.net; spf=pass smtp.mailfrom=grrlz.net; dkim=pass (1024-bit key) header.d=grrlz.net header.i=@grrlz.net header.b=qtcIcsOE; arc=none smtp.client-ip=93.190.126.19 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=grrlz.net Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=grrlz.net Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=grrlz.net header.i=@grrlz.net header.b="qtcIcsOE" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=grrlz.net; s=stigmate; t=1782228908; bh=Os9oifXwMlAiBtFnDxy99rfvPjtg+YzWauHeJ0k/L1k=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=qtcIcsOEEiDAgh+PJN0zVmzj0UsLYuBJ5xk+ituAH0ITICphsZY0QZ+x0LyNK7DMg cQSOBI62dT3JxK47xQ9IMopUiDLMEKSAiXocYtTcYjmhTJql5mIVet16uOFb8Ai2rd 3bCAr6T+ka/2Vl1g+LyzRJc8PyIdNoxnv8+pPR1M= Received: from mx1.investici.org (unknown [127.0.0.1]) by confino.investici.org (Postfix) with ESMTP id 4gl8Jr6d4yz10xm; Tue, 23 Jun 2026 15:35:08 +0000 (UTC) Received: by mx1.investici.org (Postfix) id 4gl8Jq4x34z10xZ; Tue, 23 Jun 2026 15:35:07 +0000 (UTC) From: Bradley Morgan To: Petr Mladek , Feng Tang , Andrew Morton Cc: Madhavan Srinivasan , Michael Ellerman , Nicholas Piggin , Christophe Leroy , Mukesh Kumar Chaurasiya , Andy Shevchenko , Jinchao Wang , Kees Cook , Rio , Joel Granados , Pnina Feder , Petr Pavlu , Sergey Senozhatsky , Douglas Anderson , Mayank Rungta , Tejun Heo , Zhenguo Yao , linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org, stable@vger.kernel.org, Bradley Morgan Subject: [PATCH v2 2/4] watchdog: avoid sys_info fallback for all_bt Date: Tue, 23 Jun 2026 15:34:59 +0000 Message-ID: X-Mailer: git-send-email 2.53.0 In-Reply-To: <9b8c96e291696815d3c7de5d3e199298dee0279d.1782228656.git.include@grrlz.net> References: <9b8c96e291696815d3c7de5d3e199298dee0279d.1782228656.git.include@grrlz.net> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit The watchdog prints all CPU backtraces itself. When the watchdog mask contains only SYS_INFO_ALL_BT, stripping that bit leaves zero and sys_info(0) falls back to kernel_sys_info. Use sys_info_without_all_bt() so an explicit all_bt mask does not request the global default. Fixes: a9af76a78760 ("watchdog: add sys_info sysctls to dump sys info on system lockup") Cc: stable@vger.kernel.org Signed-off-by: Bradley Morgan --- Changes since v1: - Use the shared sys_info_without_all_bt() helper. - Keep the generic watchdog change separate from powerpc. kernel/watchdog.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/kernel/watchdog.c b/kernel/watchdog.c index 87dd5e0f6968..5bf24231a5d8 100644 --- a/kernel/watchdog.c +++ b/kernel/watchdog.c @@ -208,6 +208,7 @@ void watchdog_hardlockup_check(unsigned int cpu, struct pt_regs *regs) { int hardlockup_all_cpu_backtrace; unsigned int this_cpu; + unsigned long si_mask; unsigned long flags; if (per_cpu(watchdog_hardlockup_touched, cpu)) { @@ -216,7 +217,8 @@ void watchdog_hardlockup_check(unsigned int cpu, struct pt_regs *regs) return; } - hardlockup_all_cpu_backtrace = (hardlockup_si_mask & SYS_INFO_ALL_BT) ? + si_mask = READ_ONCE(hardlockup_si_mask); + hardlockup_all_cpu_backtrace = (si_mask & SYS_INFO_ALL_BT) ? 1 : sysctl_hardlockup_all_cpu_backtrace; /* * Check for a hardlockup by making sure the CPU's timer @@ -286,7 +288,7 @@ void watchdog_hardlockup_check(unsigned int cpu, struct pt_regs *regs) clear_bit_unlock(0, &hard_lockup_nmi_warn); } - sys_info(hardlockup_si_mask & ~SYS_INFO_ALL_BT); + sys_info_without_all_bt(si_mask); if (hardlockup_panic) nmi_panic(regs, "Hard LOCKUP"); @@ -798,6 +800,7 @@ static enum hrtimer_restart watchdog_timer_fn(struct hrtimer *hrtimer) struct pt_regs *regs = get_irq_regs(); int softlockup_all_cpu_backtrace; int duration, thresh_count; + unsigned long si_mask; unsigned long flags; if (!watchdog_enabled) @@ -809,7 +812,8 @@ static enum hrtimer_restart watchdog_timer_fn(struct hrtimer *hrtimer) if (panic_in_progress()) return HRTIMER_NORESTART; - softlockup_all_cpu_backtrace = (softlockup_si_mask & SYS_INFO_ALL_BT) ? + si_mask = READ_ONCE(softlockup_si_mask); + softlockup_all_cpu_backtrace = (si_mask & SYS_INFO_ALL_BT) ? 1 : sysctl_softlockup_all_cpu_backtrace; watchdog_hardlockup_kick(); @@ -900,7 +904,7 @@ static enum hrtimer_restart watchdog_timer_fn(struct hrtimer *hrtimer) } add_taint(TAINT_SOFTLOCKUP, LOCKDEP_STILL_OK); - sys_info(softlockup_si_mask & ~SYS_INFO_ALL_BT); + sys_info_without_all_bt(si_mask); thresh_count = duration / get_softlockup_thresh(); if (softlockup_panic && thresh_count >= softlockup_panic) -- 2.53.0