From: Jiri Pirko <jiri@resnulli.us>
To: Stanislaw Gruszka <stanislaw.gruszka@linux.intel.com>
Cc: linux-pm@vger.kernel.org, "Rafael J. Wysocki" <rafael@kernel.org>,
Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>,
Ricardo Neri <ricardo.neri-calderon@linux.intel.com>,
Daniel Lezcano <daniel.lezcano@linaro.org>,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
netdev@vger.kernel.org
Subject: Re: [PATCH 3/3] thermal: intel: hfi: Enable interface only when required
Date: Fri, 2 Feb 2024 13:36:09 +0100 [thread overview]
Message-ID: <ZbzhuXbuejM1VLE3@nanopsycho> (raw)
In-Reply-To: <20240131120535.933424-4-stanislaw.gruszka@linux.intel.com>
Wed, Jan 31, 2024 at 01:05:35PM CET, stanislaw.gruszka@linux.intel.com wrote:
[...]
>+static int hfi_netlink_notify(struct notifier_block *nb, unsigned long state,
>+ void *_notify)
>+{
>+ struct netlink_notify *notify = _notify;
>+ struct hfi_instance *hfi_instance;
>+ smp_call_func_t func;
>+ unsigned int cpu;
>+ int i;
>+
>+ if (notify->protocol != NETLINK_GENERIC)
>+ return NOTIFY_DONE;
>+
>+ switch (state) {
>+ case NETLINK_CHANGE:
>+ case NETLINK_URELEASE:
>+ mutex_lock(&hfi_instance_lock);
>+
What's stopping other thread from mangling the listeners here?
>+ if (thermal_group_has_listeners(THERMAL_GENL_EVENT_GROUP))
>+ func = hfi_do_enable;
>+ else
>+ func = hfi_do_disable;
>+
>+ for (i = 0; i < max_hfi_instances; i++) {
>+ hfi_instance = &hfi_instances[i];
>+ if (cpumask_empty(hfi_instance->cpus))
>+ continue;
>+
>+ cpu = cpumask_any(hfi_instance->cpus);
>+ smp_call_function_single(cpu, func, hfi_instance, true);
>+ }
>+
>+ mutex_unlock(&hfi_instance_lock);
>+ return NOTIFY_OK;
>+ }
>+
>+ return NOTIFY_DONE;
>+}
[...]
next prev parent reply other threads:[~2024-02-02 12:36 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-01-31 12:05 [PATCH 0/3] thermal/netlink/intel_hfi: Enable HFI feature only when required Stanislaw Gruszka
2024-01-31 12:05 ` [PATCH 1/3] netlink: Add notifier when changing netlink socket membership Stanislaw Gruszka
2024-02-01 1:40 ` Jakub Kicinski
2024-02-01 13:10 ` Stanislaw Gruszka
2024-01-31 12:05 ` [PATCH 2/3] thermal: netlink: Export thermal_group_has_listeners() Stanislaw Gruszka
2024-01-31 12:05 ` [PATCH 3/3] thermal: intel: hfi: Enable interface only when required Stanislaw Gruszka
2024-02-01 1:48 ` Ricardo Neri
2024-02-01 13:20 ` Stanislaw Gruszka
2024-02-01 16:21 ` Ricardo Neri
2024-02-02 12:36 ` Jiri Pirko [this message]
2024-02-02 13:00 ` Stanislaw Gruszka
2024-02-03 13:15 ` Jiri Pirko
2024-02-05 12:00 ` Stanislaw Gruszka
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=ZbzhuXbuejM1VLE3@nanopsycho \
--to=jiri@resnulli.us \
--cc=daniel.lezcano@linaro.org \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=kuba@kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=rafael@kernel.org \
--cc=ricardo.neri-calderon@linux.intel.com \
--cc=srinivas.pandruvada@linux.intel.com \
--cc=stanislaw.gruszka@linux.intel.com \
/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