From: Waiman Long <longman@redhat.com>
To: sashiko@lists.linux.dev
Cc: mkoutny@suse.com, linux-hwmon@vger.kernel.org, tj@kernel.org,
hannes@cmpxchg.org
Subject: Re: [PATCH 07/23] watchdog: Sync up with runtime change of isolated CPUs
Date: Wed, 22 Apr 2026 22:14:13 -0400 [thread overview]
Message-ID: <f547a35e-1b42-4680-b25e-a022fe477eaf@redhat.com> (raw)
In-Reply-To: <20260422030858.040D5C2BCB0@smtp.kernel.org>
On 4/21/26 11:08 PM, sashiko-bot@kernel.org wrote:
> Sashiko AI review found 1 potential issue(s):
> - [High] Silent overwrite and clobbering of userspace `watchdog_cpumask` sysctl configuration.
> --
>
> commit c51e1c592377490b0da49dd889417304c34badc2
> Author: Waiman Long <longman@redhat.com>
>
> watchdog: Sync up with runtime change of isolated CPUs
>
> This commit updates the watchdog to exclude isolated CPUs at runtime by
> adding a new watchdog_cpumask_update() helper. It modifies watchdog_cpumask
> and watchdog_allowed_mask when the HK_TYPE_KERNEL_NOISE cpumask is updated.
>
>> diff --git a/kernel/watchdog.c b/kernel/watchdog.c
>> index 7d675781bc917..f35374abf457c 100644
>> --- a/kernel/watchdog.c
>> +++ b/kernel/watchdog.c
> [ ... ]
>> +/**
>> + * watchdog_cpumask_update - update watchdog_cpumask & watchdog_allowed_mask
>> + * @isol_mask: cpumask of isolated CPUs
>> + *
>> + * Update watchdog_cpumask and watchdog_allowed_mask to be inverse of the
>> + * given isolated cpumask to disable watchdog activities on isolated CPUs.
>> + * It should be called with the affected CPUs in offline state which will be
>> + * brought up online later.
>> + *
>> + * Any changes made in watchdog_cpumask by users via the sysctl parameter will
>> + * be overridden. However, proc_watchdog_update() isn't called. So change will
>> + * only happens on CPUs that will brought up later on to minimize changes to
>> + * the existing watchdog configuration.
>> + */
>> +void watchdog_cpumask_update(struct cpumask *isol_mask)
>> +{
>> + mutex_lock(&watchdog_mutex);
>> + cpumask_andnot(&watchdog_cpumask, cpu_possible_mask, isol_mask);
> Does this unintentionally discard the existing sysctl configuration for
> kernel.watchdog_cpumask?
Yes, it does, as documented in the comment above. However, except for
the transitioning CPUs, the watchdog activities in other untouched CPUs
will remain unchanged until the next time one of the watchdog sysctl
parameters is updated. I will certainly welcome any suggestion of a
better way of handling this kind of conflict. I should update the sysctl
parameter document to highlight the expected change.
>
> By using cpu_possible_mask as the base, it looks like this unconditionally
> overwrites the entire watchdog_cpumask with all possible CPUs except the
> newly isolated ones.
>
> If an administrator had explicitly disabled watchdogs on CPUs 1-6 using the
> sysctl interface, and later dynamically isolates CPU 7, would this operation
> silently clobber the user API contract and re-enable watchdogs on CPUs 1-6
> when they are next onlined or reconfigured?
As said above, the current watchdog setting of other CPUs will not be
affected until when another watchdog sysctl parameter write.
Cheers,
Longman
next prev parent reply other threads:[~2026-04-23 2:14 UTC|newest]
Thread overview: 66+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-21 3:03 [PATCH-next 00/23] cgroup/cpuset: Enable runtime update of nohz_full and managed_irq CPUs Waiman Long
2026-04-21 3:03 ` [PATCH 01/23] sched/isolation: Add HK_TYPE_KERNEL_NOISE_BOOT & HK_TYPE_MANAGED_IRQ_BOOT Waiman Long
2026-04-21 3:03 ` [PATCH 02/23] sched/isolation: Enhance housekeeping_update() to support updating more than one HK cpumask Waiman Long
2026-04-22 3:08 ` sashiko-bot
2026-04-22 6:39 ` Chen Ridong
2026-04-21 3:03 ` [PATCH 03/23] tick/nohz: Make nohz_full parameter optional Waiman Long
2026-04-21 8:32 ` Thomas Gleixner
2026-04-21 14:14 ` Waiman Long
2026-04-24 15:57 ` Frederic Weisbecker
2026-04-22 3:08 ` sashiko-bot
2026-04-21 3:03 ` [PATCH 04/23] tick/nohz: Allow runtime changes in full dynticks CPUs Waiman Long
2026-04-21 8:50 ` Thomas Gleixner
2026-04-21 14:24 ` Waiman Long
2026-05-13 13:04 ` Frederic Weisbecker
2026-04-22 3:08 ` sashiko-bot
2026-04-21 3:03 ` [PATCH 05/23] tick: Pass timer tick job to an online HK CPU in tick_cpu_dying() Waiman Long
2026-04-21 8:55 ` Thomas Gleixner
2026-04-21 14:22 ` Waiman Long
2026-04-21 3:03 ` [PATCH 06/23] rcu/nocbs: Allow runtime changes in RCU NOCBS cpumask Waiman Long
2026-04-22 3:08 ` sashiko-bot
2026-04-23 2:05 ` Waiman Long
2026-04-21 3:03 ` [PATCH 07/23] watchdog: Sync up with runtime change of isolated CPUs Waiman Long
2026-04-22 3:08 ` sashiko-bot
2026-04-23 2:14 ` Waiman Long [this message]
2026-04-21 3:03 ` [PATCH 08/23] arm64: topology: Use RCU to protect access to HK_TYPE_TICK cpumask Waiman Long
2026-04-22 3:08 ` sashiko-bot
2026-04-22 9:34 ` Chen Ridong
2026-05-13 16:19 ` Frederic Weisbecker
2026-04-21 3:03 ` [PATCH 09/23] workqueue: Use RCU to protect access of HK_TYPE_TIMER cpumask Waiman Long
2026-04-21 3:03 ` [PATCH 10/23] cpu: " Waiman Long
2026-04-21 8:57 ` Thomas Gleixner
2026-04-21 14:25 ` Waiman Long
2026-04-21 3:03 ` [PATCH 11/23] hrtimer: " Waiman Long
2026-04-21 8:59 ` Thomas Gleixner
2026-04-22 3:09 ` sashiko-bot
2026-04-21 3:03 ` [PATCH 12/23] net: Use boot time housekeeping cpumask settings for now Waiman Long
2026-04-21 3:03 ` [PATCH 13/23] sched/core: Use RCU to protect access of HK_TYPE_KERNEL_NOISE cpumask Waiman Long
2026-04-22 3:09 ` sashiko-bot
2026-04-23 14:37 ` Waiman Long
2026-04-21 3:03 ` [PATCH 14/23] hwmon/coretemp: Use RCU to protect access of HK_TYPE_MISC cpumask Waiman Long
2026-04-22 3:09 ` sashiko-bot
2026-04-21 3:03 ` [PATCH 15/23] Drivers: hv: Use RCU to protect access of HK_TYPE_MANAGED_IRQ cpumask Waiman Long
2026-04-22 3:09 ` sashiko-bot
2026-04-23 17:14 ` Waiman Long
2026-04-21 3:03 ` [PATCH 16/23] genirq/cpuhotplug: " Waiman Long
2026-04-21 9:02 ` Thomas Gleixner
2026-04-21 14:29 ` Waiman Long
2026-04-21 3:03 ` [PATCH 17/23] sched/isolation: Extend housekeeping_dereference_check() to cover changes in nohz_full or manged_irqs cpumasks Waiman Long
2026-04-22 3:09 ` sashiko-bot
2026-04-23 17:30 ` Waiman Long
2026-04-21 3:03 ` [PATCH 18/23] cpu/hotplug: Add a new cpuhp_offline_cb() API Waiman Long
2026-04-21 16:17 ` Thomas Gleixner
2026-04-21 17:29 ` Waiman Long
2026-04-21 18:43 ` Thomas Gleixner
2026-04-22 3:09 ` sashiko-bot
2026-04-21 3:03 ` [PATCH 19/23] cgroup/cpuset: Improve check for calling housekeeping_update() Waiman Long
2026-04-23 1:10 ` Chen Ridong
2026-04-24 18:32 ` Waiman Long
2026-04-21 3:03 ` [PATCH 20/23] cgroup/cpuset: Enable runtime update of HK_TYPE_{KERNEL_NOISE,MANAGED_IRQ} cpumasks Waiman Long
2026-04-22 3:09 ` sashiko-bot
2026-04-21 3:03 ` [PATCH 21/23] cgroup/cpuset: Limit the side effect of using CPU hotplug on isolated partition Waiman Long
2026-04-22 3:09 ` sashiko-bot
2026-04-21 3:03 ` [PATCH 22/23] cgroup/cpuset: Prevent offline_disabled CPUs from being used in " Waiman Long
2026-04-22 3:09 ` sashiko-bot
2026-04-21 3:03 ` [PATCH 23/23] cgroup/cpuset: Documentation and kselftest updates Waiman Long
2026-04-22 3:09 ` sashiko-bot
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=f547a35e-1b42-4680-b25e-a022fe477eaf@redhat.com \
--to=longman@redhat.com \
--cc=hannes@cmpxchg.org \
--cc=linux-hwmon@vger.kernel.org \
--cc=mkoutny@suse.com \
--cc=sashiko@lists.linux.dev \
--cc=tj@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox