blob: 73abec5bb06ed4474242b9a4c1ce09cc301f3bbb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _LINUX_IRQ_WORK_TYPES_H
#define _LINUX_IRQ_WORK_TYPES_H
#include <linux/smp_types.h>
#include <linux/types.h>
struct irq_work {
struct __call_single_node node;
void (*func)(struct irq_work *);
struct rcuwait irqwait;
};
#endif
|