linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] genirq: Remove unused parameter force of irq_set_affinity_deactivated()
@ 2022-10-07 10:32 Angus Chen
  2022-11-11 18:10 ` Thomas Gleixner
  2022-11-17 15:08 ` [tip: irq/core] genirq: Remove unused argument " tip-bot2 for Angus Chen
  0 siblings, 2 replies; 4+ messages in thread
From: Angus Chen @ 2022-10-07 10:32 UTC (permalink / raw)
  To: tglx; +Cc: linux-kernel, Angus Chen

The force parameter in irq_set_affinity_deactivated() is not used,
get rid of it.

Fixes: baedb87d1b53 ("genirq/affinity: Handle affinity setting on inactive interrupts correctly")
Signed-off-by: Angus Chen <angus.chen@jaguarmicro.com>
---
 kernel/irq/manage.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kernel/irq/manage.c b/kernel/irq/manage.c
index 40fe7806cc8c..5b7cf28df290 100644
--- a/kernel/irq/manage.c
+++ b/kernel/irq/manage.c
@@ -321,7 +321,7 @@ static int irq_try_set_affinity(struct irq_data *data,
 }
 
 static bool irq_set_affinity_deactivated(struct irq_data *data,
-					 const struct cpumask *mask, bool force)
+					 const struct cpumask *mask)
 {
 	struct irq_desc *desc = irq_data_to_desc(data);
 
@@ -354,7 +354,7 @@ int irq_set_affinity_locked(struct irq_data *data, const struct cpumask *mask,
 	if (!chip || !chip->irq_set_affinity)
 		return -EINVAL;
 
-	if (irq_set_affinity_deactivated(data, mask, force))
+	if (irq_set_affinity_deactivated(data, mask))
 		return 0;
 
 	if (irq_can_move_pcntxt(data) && !irqd_is_setaffinity_pending(data)) {
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-11-17 15:12 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-07 10:32 [PATCH] genirq: Remove unused parameter force of irq_set_affinity_deactivated() Angus Chen
2022-11-11 18:10 ` Thomas Gleixner
2022-11-12  2:06   ` Angus Chen
2022-11-17 15:08 ` [tip: irq/core] genirq: Remove unused argument " tip-bot2 for Angus Chen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).