2019-05-19 12:08:55 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2010-10-14 06:01:34 +00:00
|
|
|
/*
|
2015-11-16 10:08:45 +00:00
|
|
|
* Copyright (C) 2010 Red Hat, Inc., Peter Zijlstra
|
2010-10-14 06:01:34 +00:00
|
|
|
*
|
|
|
|
* Provides a framework for enqueueing and running callbacks from hardirq
|
|
|
|
* context. The enqueueing is NMI-safe.
|
|
|
|
*/
|
|
|
|
|
2012-04-01 20:38:37 +00:00
|
|
|
#include <linux/bug.h>
|
2010-10-14 06:01:34 +00:00
|
|
|
#include <linux/kernel.h>
|
2011-05-23 18:51:41 +00:00
|
|
|
#include <linux/export.h>
|
2010-10-14 06:01:34 +00:00
|
|
|
#include <linux/irq_work.h>
|
2011-07-18 17:03:04 +00:00
|
|
|
#include <linux/percpu.h>
|
2010-10-14 06:01:34 +00:00
|
|
|
#include <linux/hardirq.h>
|
2012-04-11 16:21:39 +00:00
|
|
|
#include <linux/irqflags.h>
|
2012-10-19 20:43:41 +00:00
|
|
|
#include <linux/sched.h>
|
|
|
|
#include <linux/tick.h>
|
2012-11-15 16:34:21 +00:00
|
|
|
#include <linux/cpu.h>
|
|
|
|
#include <linux/notifier.h>
|
2014-05-07 23:37:48 +00:00
|
|
|
#include <linux/smp.h>
|
2021-10-07 09:26:46 +00:00
|
|
|
#include <linux/smpboot.h>
|
2011-07-18 17:03:04 +00:00
|
|
|
#include <asm/processor.h>
|
2021-04-30 06:00:52 +00:00
|
|
|
#include <linux/kasan.h>
|
2010-10-14 06:01:34 +00:00
|
|
|
|
2023-03-07 14:35:55 +00:00
|
|
|
#include <trace/events/ipi.h>
|
|
|
|
|
2014-05-23 16:10:21 +00:00
|
|
|
static DEFINE_PER_CPU(struct llist_head, raised_list);
|
|
|
|
static DEFINE_PER_CPU(struct llist_head, lazy_list);
|
2021-10-07 09:26:46 +00:00
|
|
|
static DEFINE_PER_CPU(struct task_struct *, irq_workd);
|
|
|
|
|
|
|
|
static void wake_irq_workd(void)
|
|
|
|
{
|
|
|
|
struct task_struct *tsk = __this_cpu_read(irq_workd);
|
|
|
|
|
|
|
|
if (!llist_empty(this_cpu_ptr(&lazy_list)) && tsk)
|
|
|
|
wake_up_process(tsk);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
static void irq_work_wake(struct irq_work *entry)
|
|
|
|
{
|
|
|
|
wake_irq_workd();
|
|
|
|
}
|
|
|
|
|
|
|
|
static DEFINE_PER_CPU(struct irq_work, irq_work_wakeup) =
|
|
|
|
IRQ_WORK_INIT_HARD(irq_work_wake);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static int irq_workd_should_run(unsigned int cpu)
|
|
|
|
{
|
|
|
|
return !llist_empty(this_cpu_ptr(&lazy_list));
|
|
|
|
}
|
2010-10-14 06:01:34 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Claim the entry so that no one else will poke at it.
|
|
|
|
*/
|
2011-09-08 06:00:46 +00:00
|
|
|
static bool irq_work_claim(struct irq_work *work)
|
2010-10-14 06:01:34 +00:00
|
|
|
{
|
2019-11-08 16:08:56 +00:00
|
|
|
int oflags;
|
2010-10-14 06:01:34 +00:00
|
|
|
|
2020-06-15 09:51:29 +00:00
|
|
|
oflags = atomic_fetch_or(IRQ_WORK_CLAIMED | CSD_TYPE_IRQ_WORK, &work->node.a_flags);
|
irq_work: Fix racy check on work pending flag
Work claiming wants to be SMP-safe.
And by the time we try to claim a work, if it is already executing
concurrently on another CPU, we want to succeed the claiming and queue
the work again because the other CPU may have missed the data we wanted
to handle in our work if it's about to complete there.
This scenario is summarized below:
CPU 1 CPU 2
----- -----
(flags = 0)
cmpxchg(flags, 0, IRQ_WORK_FLAGS)
(flags = 3)
[...]
xchg(flags, IRQ_WORK_BUSY)
(flags = 2)
func()
if (flags & IRQ_WORK_PENDING)
(not true)
cmpxchg(flags, flags, IRQ_WORK_FLAGS)
(flags = 3)
[...]
cmpxchg(flags, IRQ_WORK_BUSY, 0);
(fail, pending on CPU 2)
This state machine is synchronized using [cmp]xchg() on the flags.
As such, the early IRQ_WORK_PENDING check in CPU 2 above is racy.
By the time we check it, we may be dealing with a stale value because
we aren't using an atomic accessor. As a result, CPU 2 may "see"
that the work is still pending on another CPU while it may be
actually completing the work function exection already, leaving
our data unprocessed.
To fix this, we start by speculating about the value we wish to be
in the work->flags but we only make any conclusion after the value
returned by the cmpxchg() call that either claims the work or let
the current owner handle the pending work for us.
Changelog-heavily-inspired-by: Steven Rostedt <rostedt@goodmis.org>
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Acked-by: Steven Rostedt <rostedt@goodmis.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Paul Gortmaker <paul.gortmaker@windriver.com>
Cc: Anish Kumar <anish198519851985@gmail.com>
2012-10-27 13:21:36 +00:00
|
|
|
/*
|
2019-11-08 16:08:56 +00:00
|
|
|
* If the work is already pending, no need to raise the IPI.
|
2020-06-18 20:28:37 +00:00
|
|
|
* The pairing smp_mb() in irq_work_single() makes sure
|
2019-11-08 16:08:56 +00:00
|
|
|
* everything we did before is visible.
|
irq_work: Fix racy check on work pending flag
Work claiming wants to be SMP-safe.
And by the time we try to claim a work, if it is already executing
concurrently on another CPU, we want to succeed the claiming and queue
the work again because the other CPU may have missed the data we wanted
to handle in our work if it's about to complete there.
This scenario is summarized below:
CPU 1 CPU 2
----- -----
(flags = 0)
cmpxchg(flags, 0, IRQ_WORK_FLAGS)
(flags = 3)
[...]
xchg(flags, IRQ_WORK_BUSY)
(flags = 2)
func()
if (flags & IRQ_WORK_PENDING)
(not true)
cmpxchg(flags, flags, IRQ_WORK_FLAGS)
(flags = 3)
[...]
cmpxchg(flags, IRQ_WORK_BUSY, 0);
(fail, pending on CPU 2)
This state machine is synchronized using [cmp]xchg() on the flags.
As such, the early IRQ_WORK_PENDING check in CPU 2 above is racy.
By the time we check it, we may be dealing with a stale value because
we aren't using an atomic accessor. As a result, CPU 2 may "see"
that the work is still pending on another CPU while it may be
actually completing the work function exection already, leaving
our data unprocessed.
To fix this, we start by speculating about the value we wish to be
in the work->flags but we only make any conclusion after the value
returned by the cmpxchg() call that either claims the work or let
the current owner handle the pending work for us.
Changelog-heavily-inspired-by: Steven Rostedt <rostedt@goodmis.org>
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Acked-by: Steven Rostedt <rostedt@goodmis.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Paul Gortmaker <paul.gortmaker@windriver.com>
Cc: Anish Kumar <anish198519851985@gmail.com>
2012-10-27 13:21:36 +00:00
|
|
|
*/
|
2019-11-08 16:08:56 +00:00
|
|
|
if (oflags & IRQ_WORK_PENDING)
|
|
|
|
return false;
|
2010-10-14 06:01:34 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void __weak arch_irq_work_raise(void)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Lame architectures will get the timer tick callback
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
2023-03-07 14:35:55 +00:00
|
|
|
static __always_inline void irq_work_raise(struct irq_work *work)
|
|
|
|
{
|
2023-03-22 10:28:36 +00:00
|
|
|
if (trace_ipi_send_cpu_enabled() && arch_irq_work_has_interrupt())
|
|
|
|
trace_ipi_send_cpu(smp_processor_id(), _RET_IP_, work->func);
|
2023-03-07 14:35:55 +00:00
|
|
|
|
|
|
|
arch_irq_work_raise();
|
|
|
|
}
|
|
|
|
|
2019-04-09 09:34:03 +00:00
|
|
|
/* Enqueue on current CPU, work must already be claimed and preempt disabled */
|
|
|
|
static void __irq_work_queue_local(struct irq_work *work)
|
2014-05-07 23:37:48 +00:00
|
|
|
{
|
2021-10-07 09:26:46 +00:00
|
|
|
struct llist_head *list;
|
|
|
|
bool rt_lazy_work = false;
|
|
|
|
bool lazy_work = false;
|
|
|
|
int work_flags;
|
|
|
|
|
|
|
|
work_flags = atomic_read(&work->node.a_flags);
|
|
|
|
if (work_flags & IRQ_WORK_LAZY)
|
|
|
|
lazy_work = true;
|
|
|
|
else if (IS_ENABLED(CONFIG_PREEMPT_RT) &&
|
|
|
|
!(work_flags & IRQ_WORK_HARD_IRQ))
|
|
|
|
rt_lazy_work = true;
|
|
|
|
|
|
|
|
if (lazy_work || rt_lazy_work)
|
|
|
|
list = this_cpu_ptr(&lazy_list);
|
|
|
|
else
|
|
|
|
list = this_cpu_ptr(&raised_list);
|
|
|
|
|
|
|
|
if (!llist_add(&work->node.llist, list))
|
|
|
|
return;
|
|
|
|
|
2019-04-09 09:34:03 +00:00
|
|
|
/* If the work is "lazy", handle it from next tick if any */
|
2021-10-07 09:26:46 +00:00
|
|
|
if (!lazy_work || tick_nohz_tick_stopped())
|
2023-03-07 14:35:55 +00:00
|
|
|
irq_work_raise(work);
|
2019-04-09 09:34:03 +00:00
|
|
|
}
|
2014-05-07 23:37:48 +00:00
|
|
|
|
2019-04-09 09:34:03 +00:00
|
|
|
/* Enqueue the irq work @work on the current CPU */
|
|
|
|
bool irq_work_queue(struct irq_work *work)
|
|
|
|
{
|
2014-05-07 23:37:48 +00:00
|
|
|
/* Only queue if not already pending */
|
|
|
|
if (!irq_work_claim(work))
|
|
|
|
return false;
|
|
|
|
|
2019-04-09 09:34:03 +00:00
|
|
|
/* Queue the entry and raise the IPI if needed. */
|
|
|
|
preempt_disable();
|
|
|
|
__irq_work_queue_local(work);
|
|
|
|
preempt_enable();
|
2017-08-18 17:59:16 +00:00
|
|
|
|
2014-05-07 23:37:48 +00:00
|
|
|
return true;
|
|
|
|
}
|
2019-04-09 09:34:03 +00:00
|
|
|
EXPORT_SYMBOL_GPL(irq_work_queue);
|
2014-05-07 23:37:48 +00:00
|
|
|
|
2019-04-09 09:34:03 +00:00
|
|
|
/*
|
|
|
|
* Enqueue the irq_work @work on @cpu unless it's already pending
|
|
|
|
* somewhere.
|
|
|
|
*
|
|
|
|
* Can be re-enqueued while the callback is still in progress.
|
|
|
|
*/
|
|
|
|
bool irq_work_queue_on(struct irq_work *work, int cpu)
|
2010-10-14 06:01:34 +00:00
|
|
|
{
|
2019-04-09 09:34:03 +00:00
|
|
|
#ifndef CONFIG_SMP
|
|
|
|
return irq_work_queue(work);
|
|
|
|
|
|
|
|
#else /* CONFIG_SMP: */
|
|
|
|
/* All work should have been flushed before going offline */
|
|
|
|
WARN_ON_ONCE(cpu_is_offline(cpu));
|
|
|
|
|
2013-02-03 21:08:23 +00:00
|
|
|
/* Only queue if not already pending */
|
|
|
|
if (!irq_work_claim(work))
|
2014-02-11 15:01:16 +00:00
|
|
|
return false;
|
2013-02-03 21:08:23 +00:00
|
|
|
|
2022-04-15 02:13:34 +00:00
|
|
|
kasan_record_aux_stack_noalloc(work);
|
2021-04-30 06:00:52 +00:00
|
|
|
|
2010-12-14 16:28:45 +00:00
|
|
|
preempt_disable();
|
2019-04-09 09:34:03 +00:00
|
|
|
if (cpu != smp_processor_id()) {
|
|
|
|
/* Arch remote IPI send/receive backend aren't NMI safe */
|
|
|
|
WARN_ON_ONCE(in_nmi());
|
2021-10-07 09:26:46 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* On PREEMPT_RT the items which are not marked as
|
|
|
|
* IRQ_WORK_HARD_IRQ are added to the lazy list and a HARD work
|
|
|
|
* item is used on the remote CPU to wake the thread.
|
|
|
|
*/
|
|
|
|
if (IS_ENABLED(CONFIG_PREEMPT_RT) &&
|
|
|
|
!(atomic_read(&work->node.a_flags) & IRQ_WORK_HARD_IRQ)) {
|
|
|
|
|
|
|
|
if (!llist_add(&work->node.llist, &per_cpu(lazy_list, cpu)))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
work = &per_cpu(irq_work_wakeup, cpu);
|
|
|
|
if (!irq_work_claim(work))
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2020-06-15 09:51:29 +00:00
|
|
|
__smp_call_single_queue(cpu, &work->node.llist);
|
2014-05-23 16:10:21 +00:00
|
|
|
} else {
|
2019-04-09 09:34:03 +00:00
|
|
|
__irq_work_queue_local(work);
|
2012-10-19 20:43:41 +00:00
|
|
|
}
|
2021-10-07 09:26:46 +00:00
|
|
|
out:
|
2010-12-14 16:28:45 +00:00
|
|
|
preempt_enable();
|
2014-02-11 15:01:16 +00:00
|
|
|
|
|
|
|
return true;
|
2019-04-09 09:34:03 +00:00
|
|
|
#endif /* CONFIG_SMP */
|
2010-10-14 06:01:34 +00:00
|
|
|
}
|
2019-04-09 09:34:03 +00:00
|
|
|
|
2012-11-07 20:03:07 +00:00
|
|
|
bool irq_work_needs_cpu(void)
|
|
|
|
{
|
2014-05-23 16:10:21 +00:00
|
|
|
struct llist_head *raised, *lazy;
|
2012-11-07 20:03:07 +00:00
|
|
|
|
2014-08-17 17:30:25 +00:00
|
|
|
raised = this_cpu_ptr(&raised_list);
|
|
|
|
lazy = this_cpu_ptr(&lazy_list);
|
2014-08-16 16:37:19 +00:00
|
|
|
|
|
|
|
if (llist_empty(raised) || arch_irq_work_has_interrupt())
|
|
|
|
if (llist_empty(lazy))
|
|
|
|
return false;
|
2012-11-07 20:03:07 +00:00
|
|
|
|
2012-11-15 17:52:44 +00:00
|
|
|
/* All work should have been flushed before going offline */
|
|
|
|
WARN_ON_ONCE(cpu_is_offline(smp_processor_id()));
|
|
|
|
|
2012-11-07 20:03:07 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-05-26 16:11:02 +00:00
|
|
|
void irq_work_single(void *arg)
|
|
|
|
{
|
|
|
|
struct irq_work *work = arg;
|
|
|
|
int flags;
|
|
|
|
|
|
|
|
/*
|
2020-06-18 20:28:37 +00:00
|
|
|
* Clear the PENDING bit, after this point the @work can be re-used.
|
|
|
|
* The PENDING bit acts as a lock, and we own it, so we can clear it
|
|
|
|
* without atomic ops.
|
2020-05-26 16:11:02 +00:00
|
|
|
*/
|
2020-06-18 20:28:37 +00:00
|
|
|
flags = atomic_read(&work->node.a_flags);
|
|
|
|
flags &= ~IRQ_WORK_PENDING;
|
|
|
|
atomic_set(&work->node.a_flags, flags);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* See irq_work_claim().
|
|
|
|
*/
|
|
|
|
smp_mb();
|
2020-05-26 16:11:02 +00:00
|
|
|
|
2020-06-18 20:28:37 +00:00
|
|
|
lockdep_irq_work_enter(flags);
|
2020-05-26 16:11:02 +00:00
|
|
|
work->func(work);
|
2020-06-18 20:28:37 +00:00
|
|
|
lockdep_irq_work_exit(flags);
|
|
|
|
|
2020-05-26 16:11:02 +00:00
|
|
|
/*
|
2020-06-18 20:28:37 +00:00
|
|
|
* Clear the BUSY bit, if set, and return to the free state if no-one
|
|
|
|
* else claimed it meanwhile.
|
2020-05-26 16:11:02 +00:00
|
|
|
*/
|
2020-06-15 09:51:29 +00:00
|
|
|
(void)atomic_cmpxchg(&work->node.a_flags, flags, flags & ~IRQ_WORK_BUSY);
|
2021-10-06 11:18:50 +00:00
|
|
|
|
2021-10-06 11:18:52 +00:00
|
|
|
if ((IS_ENABLED(CONFIG_PREEMPT_RT) && !irq_work_is_hard(work)) ||
|
|
|
|
!arch_irq_work_has_interrupt())
|
2021-10-06 11:18:50 +00:00
|
|
|
rcuwait_wake_up(&work->irqwait);
|
2020-05-26 16:11:02 +00:00
|
|
|
}
|
|
|
|
|
2014-05-23 16:10:21 +00:00
|
|
|
static void irq_work_run_list(struct llist_head *list)
|
2010-10-14 06:01:34 +00:00
|
|
|
{
|
2017-11-12 12:02:51 +00:00
|
|
|
struct irq_work *work, *tmp;
|
2011-09-08 06:00:46 +00:00
|
|
|
struct llist_node *llnode;
|
2010-10-14 06:01:34 +00:00
|
|
|
|
2021-10-07 09:26:46 +00:00
|
|
|
/*
|
|
|
|
* On PREEMPT_RT IRQ-work which is not marked as HARD will be processed
|
|
|
|
* in a per-CPU thread in preemptible context. Only the items which are
|
|
|
|
* marked as IRQ_WORK_HARD_IRQ will be processed in hardirq context.
|
|
|
|
*/
|
|
|
|
BUG_ON(!irqs_disabled() && !IS_ENABLED(CONFIG_PREEMPT_RT));
|
2012-10-19 20:43:41 +00:00
|
|
|
|
2014-05-23 16:10:21 +00:00
|
|
|
if (llist_empty(list))
|
2010-10-14 06:01:34 +00:00
|
|
|
return;
|
|
|
|
|
2014-05-23 16:10:21 +00:00
|
|
|
llnode = llist_del_all(list);
|
2020-06-15 09:51:29 +00:00
|
|
|
llist_for_each_entry_safe(work, tmp, llnode, node.llist)
|
2020-05-26 16:11:02 +00:00
|
|
|
irq_work_single(work);
|
2010-10-14 06:01:34 +00:00
|
|
|
}
|
2012-11-15 16:34:21 +00:00
|
|
|
|
|
|
|
/*
|
2014-06-25 05:13:07 +00:00
|
|
|
* hotplug calls this through:
|
|
|
|
* hotplug_cfd() -> flush_smp_call_function_queue()
|
2012-11-15 16:34:21 +00:00
|
|
|
*/
|
|
|
|
void irq_work_run(void)
|
|
|
|
{
|
2014-08-17 17:30:25 +00:00
|
|
|
irq_work_run_list(this_cpu_ptr(&raised_list));
|
2021-10-07 09:26:46 +00:00
|
|
|
if (!IS_ENABLED(CONFIG_PREEMPT_RT))
|
|
|
|
irq_work_run_list(this_cpu_ptr(&lazy_list));
|
|
|
|
else
|
|
|
|
wake_irq_workd();
|
2012-11-15 16:34:21 +00:00
|
|
|
}
|
2010-10-14 06:01:34 +00:00
|
|
|
EXPORT_SYMBOL_GPL(irq_work_run);
|
|
|
|
|
2014-08-16 16:37:19 +00:00
|
|
|
void irq_work_tick(void)
|
|
|
|
{
|
2014-10-27 15:49:45 +00:00
|
|
|
struct llist_head *raised = this_cpu_ptr(&raised_list);
|
2014-08-16 16:37:19 +00:00
|
|
|
|
|
|
|
if (!llist_empty(raised) && !arch_irq_work_has_interrupt())
|
|
|
|
irq_work_run_list(raised);
|
2021-10-07 09:26:46 +00:00
|
|
|
|
|
|
|
if (!IS_ENABLED(CONFIG_PREEMPT_RT))
|
|
|
|
irq_work_run_list(this_cpu_ptr(&lazy_list));
|
|
|
|
else
|
|
|
|
wake_irq_workd();
|
2014-08-16 16:37:19 +00:00
|
|
|
}
|
|
|
|
|
2010-10-14 06:01:34 +00:00
|
|
|
/*
|
|
|
|
* Synchronize against the irq_work @entry, ensures the entry is not
|
|
|
|
* currently in use.
|
|
|
|
*/
|
2011-09-08 06:00:46 +00:00
|
|
|
void irq_work_sync(struct irq_work *work)
|
2010-10-14 06:01:34 +00:00
|
|
|
{
|
2017-11-06 15:01:26 +00:00
|
|
|
lockdep_assert_irqs_enabled();
|
2021-10-06 11:18:50 +00:00
|
|
|
might_sleep();
|
|
|
|
|
2021-10-06 11:18:52 +00:00
|
|
|
if ((IS_ENABLED(CONFIG_PREEMPT_RT) && !irq_work_is_hard(work)) ||
|
|
|
|
!arch_irq_work_has_interrupt()) {
|
2021-10-06 11:18:50 +00:00
|
|
|
rcuwait_wait_event(&work->irqwait, !irq_work_is_busy(work),
|
|
|
|
TASK_UNINTERRUPTIBLE);
|
|
|
|
return;
|
|
|
|
}
|
2010-10-14 06:01:34 +00:00
|
|
|
|
2020-06-15 09:51:29 +00:00
|
|
|
while (irq_work_is_busy(work))
|
2010-10-14 06:01:34 +00:00
|
|
|
cpu_relax();
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(irq_work_sync);
|
2021-10-07 09:26:46 +00:00
|
|
|
|
|
|
|
static void run_irq_workd(unsigned int cpu)
|
|
|
|
{
|
|
|
|
irq_work_run_list(this_cpu_ptr(&lazy_list));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void irq_workd_setup(unsigned int cpu)
|
|
|
|
{
|
|
|
|
sched_set_fifo_low(current);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct smp_hotplug_thread irqwork_threads = {
|
|
|
|
.store = &irq_workd,
|
|
|
|
.setup = irq_workd_setup,
|
|
|
|
.thread_should_run = irq_workd_should_run,
|
|
|
|
.thread_fn = run_irq_workd,
|
|
|
|
.thread_comm = "irq_work/%u",
|
|
|
|
};
|
|
|
|
|
|
|
|
static __init int irq_work_init_threads(void)
|
|
|
|
{
|
|
|
|
if (IS_ENABLED(CONFIG_PREEMPT_RT))
|
|
|
|
BUG_ON(smpboot_register_percpu_thread(&irqwork_threads));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
early_initcall(irq_work_init_threads);
|