mlx4_core: Report thermal error events
[linux-2.6-block.git] / kernel / irq_work.c
CommitLineData
e360adbe
PZ
1/*
2 * Copyright (C) 2010 Red Hat, Inc., Peter Zijlstra <pzijlstr@redhat.com>
3 *
4 * Provides a framework for enqueueing and running callbacks from hardirq
5 * context. The enqueueing is NMI-safe.
6 */
7
8#include <linux/kernel.h>
9984de1a 9#include <linux/export.h>
e360adbe 10#include <linux/irq_work.h>
967d1f90 11#include <linux/percpu.h>
e360adbe 12#include <linux/hardirq.h>
967d1f90 13#include <asm/processor.h>
e360adbe
PZ
14
15/*
16 * An entry can be in one of four states:
17 *
18 * free NULL, 0 -> {claimed} : free to be used
19 * claimed NULL, 3 -> {pending} : claimed to be enqueued
20 * pending next, 3 -> {busy} : queued, pending callback
21 * busy NULL, 2 -> {free, claimed} : callback in progress, can be claimed
e360adbe
PZ
22 */
23
24#define IRQ_WORK_PENDING 1UL
25#define IRQ_WORK_BUSY 2UL
26#define IRQ_WORK_FLAGS 3UL
27
38aaf809 28static DEFINE_PER_CPU(struct llist_head, irq_work_list);
e360adbe
PZ
29
30/*
31 * Claim the entry so that no one else will poke at it.
32 */
38aaf809 33static bool irq_work_claim(struct irq_work *work)
e360adbe 34{
38aaf809 35 unsigned long flags, nflags;
e360adbe 36
38aaf809
HY
37 for (;;) {
38 flags = work->flags;
39 if (flags & IRQ_WORK_PENDING)
e360adbe 40 return false;
38aaf809
HY
41 nflags = flags | IRQ_WORK_FLAGS;
42 if (cmpxchg(&work->flags, flags, nflags) == flags)
43 break;
44 cpu_relax();
45 }
e360adbe
PZ
46
47 return true;
48}
49
e360adbe
PZ
50void __weak arch_irq_work_raise(void)
51{
52 /*
53 * Lame architectures will get the timer tick callback
54 */
55}
56
57/*
58 * Queue the entry and raise the IPI if needed.
59 */
38aaf809 60static void __irq_work_queue(struct irq_work *work)
e360adbe 61{
38aaf809 62 bool empty;
e360adbe 63
20b87691 64 preempt_disable();
e360adbe 65
38aaf809 66 empty = llist_add(&work->llnode, &__get_cpu_var(irq_work_list));
e360adbe 67 /* The list was empty, raise self-interrupt to start processing. */
38aaf809 68 if (empty)
e360adbe
PZ
69 arch_irq_work_raise();
70
20b87691 71 preempt_enable();
e360adbe
PZ
72}
73
74/*
75 * Enqueue the irq_work @entry, returns true on success, failure when the
76 * @entry was already enqueued by someone else.
77 *
78 * Can be re-enqueued while the callback is still in progress.
79 */
38aaf809 80bool irq_work_queue(struct irq_work *work)
e360adbe 81{
38aaf809 82 if (!irq_work_claim(work)) {
e360adbe
PZ
83 /*
84 * Already enqueued, can't do!
85 */
86 return false;
87 }
88
38aaf809 89 __irq_work_queue(work);
e360adbe
PZ
90 return true;
91}
92EXPORT_SYMBOL_GPL(irq_work_queue);
93
94/*
95 * Run the irq_work entries on this cpu. Requires to be ran from hardirq
96 * context with local IRQs disabled.
97 */
98void irq_work_run(void)
99{
38aaf809
HY
100 struct irq_work *work;
101 struct llist_head *this_list;
102 struct llist_node *llnode;
e360adbe 103
38aaf809
HY
104 this_list = &__get_cpu_var(irq_work_list);
105 if (llist_empty(this_list))
e360adbe
PZ
106 return;
107
108 BUG_ON(!in_irq());
109 BUG_ON(!irqs_disabled());
110
38aaf809
HY
111 llnode = llist_del_all(this_list);
112 while (llnode != NULL) {
113 work = llist_entry(llnode, struct irq_work, llnode);
e360adbe 114
924f8f5a 115 llnode = llist_next(llnode);
e360adbe
PZ
116
117 /*
38aaf809 118 * Clear the PENDING bit, after this point the @work
e360adbe
PZ
119 * can be re-used.
120 */
38aaf809
HY
121 work->flags = IRQ_WORK_BUSY;
122 work->func(work);
e360adbe
PZ
123 /*
124 * Clear the BUSY bit and return to the free state if
125 * no-one else claimed it meanwhile.
126 */
38aaf809 127 (void)cmpxchg(&work->flags, IRQ_WORK_BUSY, 0);
e360adbe
PZ
128 }
129}
130EXPORT_SYMBOL_GPL(irq_work_run);
131
132/*
133 * Synchronize against the irq_work @entry, ensures the entry is not
134 * currently in use.
135 */
38aaf809 136void irq_work_sync(struct irq_work *work)
e360adbe
PZ
137{
138 WARN_ON_ONCE(irqs_disabled());
139
38aaf809 140 while (work->flags & IRQ_WORK_BUSY)
e360adbe
PZ
141 cpu_relax();
142}
143EXPORT_SYMBOL_GPL(irq_work_sync);