blob: 4709a7c870d77814901571f26370081d0d976036 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/kernel/irq/handle.c
3 *
Ingo Molnara34db9b2006-06-29 02:24:50 -07004 * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar
5 * Copyright (C) 2005-2006, Thomas Gleixner, Russell King
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * This file contains the core interrupt handling code.
Ingo Molnara34db9b2006-06-29 02:24:50 -07008 *
9 * Detailed information is available in Documentation/DocBook/genericirq
10 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
12
13#include <linux/irq.h>
14#include <linux/module.h>
15#include <linux/random.h>
16#include <linux/interrupt.h>
17#include <linux/kernel_stat.h>
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080018#include <linux/rculist.h>
19#include <linux/hash.h>
Jason Baronaf392412009-02-26 10:11:05 -050020#include <trace/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#include "internals.h"
23
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080024/*
25 * lockdep: we want to handle all irq_desc locks as a single lock-class:
26 */
Yinghai Lu48a1b102008-12-11 00:15:01 -080027struct lock_class_key irq_desc_lock_class;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080028
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070029/**
30 * handle_bad_irq - handle spurious and unhandled irqs
Henrik Kretzschmar43a1dd52006-08-31 21:27:44 -070031 * @irq: the interrupt number
32 * @desc: description of the interrupt
Henrik Kretzschmar43a1dd52006-08-31 21:27:44 -070033 *
34 * Handles spurious and unhandled IRQ's. It also prints a debugmessage.
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070035 */
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +020036void handle_bad_irq(unsigned int irq, struct irq_desc *desc)
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070037{
Ingo Molnar43f77752006-06-29 02:24:58 -070038 print_irq_desc(irq, desc);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +020039 kstat_incr_irqs_this_cpu(irq, desc);
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070040 ack_bad_irq(irq);
41}
42
David Daney97179fd2009-01-27 09:53:22 -080043#if defined(CONFIG_SMP) && defined(CONFIG_GENERIC_HARDIRQS)
44static void __init init_irq_default_affinity(void)
45{
46 alloc_bootmem_cpumask_var(&irq_default_affinity);
47 cpumask_setall(irq_default_affinity);
48}
49#else
50static void __init init_irq_default_affinity(void)
51{
52}
53#endif
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055/*
56 * Linux has a controller-independent interrupt architecture.
57 * Every controller has a 'controller-template', that is used
58 * by the main code to do the right thing. Each driver-visible
Ingo Molnar06fcb0c2006-06-29 02:24:40 -070059 * interrupt source is transparently wired to the appropriate
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 * controller. Thus drivers need not be aware of the
61 * interrupt-controller.
62 *
63 * The code is designed to be easily extended with new/different
64 * interrupt controllers, without having to do assembly magic or
65 * having to touch the generic code.
66 *
67 * Controller mappings for all interrupt sources:
68 */
Yinghai Lu85c0f902008-08-19 20:49:47 -070069int nr_irqs = NR_IRQS;
Ingo Molnarfa42d102008-08-19 20:50:30 -070070EXPORT_SYMBOL_GPL(nr_irqs);
Yinghai Lud60458b2008-08-19 20:50:00 -070071
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080072#ifdef CONFIG_SPARSE_IRQ
73static struct irq_desc irq_desc_init = {
74 .irq = -1,
75 .status = IRQ_DISABLED,
76 .chip = &no_irq_chip,
77 .handle_irq = handle_bad_irq,
78 .depth = 1,
79 .lock = __SPIN_LOCK_UNLOCKED(irq_desc_init.lock),
80#ifdef CONFIG_SMP
81 .affinity = CPU_MASK_ALL
82#endif
83};
84
Yinghai Lu48a1b102008-12-11 00:15:01 -080085void init_kstat_irqs(struct irq_desc *desc, int cpu, int nr)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080086{
87 unsigned long bytes;
88 char *ptr;
89 int node;
90
91 /* Compute how many bytes we need per irq and allocate them */
92 bytes = nr * sizeof(unsigned int);
93
94 node = cpu_to_node(cpu);
95 ptr = kzalloc_node(bytes, GFP_ATOMIC, node);
96 printk(KERN_DEBUG " alloc kstat_irqs on cpu %d node %d\n", cpu, node);
97
98 if (ptr)
99 desc->kstat_irqs = (unsigned int *)ptr;
100}
101
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800102static void init_one_irq_desc(int irq, struct irq_desc *desc, int cpu)
103{
104 memcpy(desc, &irq_desc_init, sizeof(struct irq_desc));
Ingo Molnar793f7b12008-12-26 19:02:20 +0100105
106 spin_lock_init(&desc->lock);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800107 desc->irq = irq;
108#ifdef CONFIG_SMP
109 desc->cpu = cpu;
110#endif
111 lockdep_set_class(&desc->lock, &irq_desc_lock_class);
112 init_kstat_irqs(desc, cpu, nr_cpu_ids);
113 if (!desc->kstat_irqs) {
114 printk(KERN_ERR "can not alloc kstat_irqs\n");
115 BUG_ON(1);
116 }
117 arch_init_chip_data(desc, cpu);
118}
119
120/*
121 * Protect the sparse_irqs:
122 */
Yinghai Lu48a1b102008-12-11 00:15:01 -0800123DEFINE_SPINLOCK(sparse_irq_lock);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800124
125struct irq_desc *irq_desc_ptrs[NR_IRQS] __read_mostly;
126
Yinghai Lu99d093d2008-12-05 18:58:32 -0800127static struct irq_desc irq_desc_legacy[NR_IRQS_LEGACY] __cacheline_aligned_in_smp = {
128 [0 ... NR_IRQS_LEGACY-1] = {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800129 .irq = -1,
130 .status = IRQ_DISABLED,
131 .chip = &no_irq_chip,
132 .handle_irq = handle_bad_irq,
133 .depth = 1,
134 .lock = __SPIN_LOCK_UNLOCKED(irq_desc_init.lock),
135#ifdef CONFIG_SMP
136 .affinity = CPU_MASK_ALL
137#endif
138 }
139};
140
141/* FIXME: use bootmem alloc ...*/
Yinghai Lu99d093d2008-12-05 18:58:32 -0800142static unsigned int kstat_irqs_legacy[NR_IRQS_LEGACY][NR_CPUS];
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800143
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800144int __init early_irq_init(void)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800145{
146 struct irq_desc *desc;
147 int legacy_count;
148 int i;
149
David Daney97179fd2009-01-27 09:53:22 -0800150 init_irq_default_affinity();
151
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800152 desc = irq_desc_legacy;
153 legacy_count = ARRAY_SIZE(irq_desc_legacy);
154
155 for (i = 0; i < legacy_count; i++) {
156 desc[i].irq = i;
157 desc[i].kstat_irqs = kstat_irqs_legacy[i];
Yinghai Lufa6beb32008-12-22 20:24:09 -0800158 lockdep_set_class(&desc[i].lock, &irq_desc_lock_class);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800159
160 irq_desc_ptrs[i] = desc + i;
161 }
162
163 for (i = legacy_count; i < NR_IRQS; i++)
164 irq_desc_ptrs[i] = NULL;
165
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800166 return arch_early_irq_init();
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800167}
168
169struct irq_desc *irq_to_desc(unsigned int irq)
170{
171 return (irq < NR_IRQS) ? irq_desc_ptrs[irq] : NULL;
172}
173
174struct irq_desc *irq_to_desc_alloc_cpu(unsigned int irq, int cpu)
175{
176 struct irq_desc *desc;
177 unsigned long flags;
178 int node;
179
180 if (irq >= NR_IRQS) {
181 printk(KERN_WARNING "irq >= NR_IRQS in irq_to_desc_alloc: %d %d\n",
182 irq, NR_IRQS);
183 WARN_ON(1);
184 return NULL;
185 }
186
187 desc = irq_desc_ptrs[irq];
188 if (desc)
189 return desc;
190
191 spin_lock_irqsave(&sparse_irq_lock, flags);
192
193 /* We have to check it to avoid races with another CPU */
194 desc = irq_desc_ptrs[irq];
195 if (desc)
196 goto out_unlock;
197
198 node = cpu_to_node(cpu);
199 desc = kzalloc_node(sizeof(*desc), GFP_ATOMIC, node);
200 printk(KERN_DEBUG " alloc irq_desc for %d on cpu %d node %d\n",
201 irq, cpu, node);
202 if (!desc) {
203 printk(KERN_ERR "can not alloc irq_desc\n");
204 BUG_ON(1);
205 }
206 init_one_irq_desc(irq, desc, cpu);
207
208 irq_desc_ptrs[irq] = desc;
209
210out_unlock:
211 spin_unlock_irqrestore(&sparse_irq_lock, flags);
212
213 return desc;
214}
215
KOSAKI Motohirof9af0e72008-12-26 12:24:24 +0900216#else /* !CONFIG_SPARSE_IRQ */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800217
Ravikiran G Thirumalaie729aa12007-05-08 00:29:13 -0700218struct irq_desc irq_desc[NR_IRQS] __cacheline_aligned_in_smp = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 [0 ... NR_IRQS-1] = {
Zhang, Yanmin4f167fb2005-05-16 21:53:43 -0700220 .status = IRQ_DISABLED,
Ingo Molnarf1c26622006-06-29 02:24:57 -0700221 .chip = &no_irq_chip,
Ingo Molnar7a557132006-06-29 02:24:54 -0700222 .handle_irq = handle_bad_irq,
Thomas Gleixner94d39e12006-06-29 02:24:50 -0700223 .depth = 1,
Yinghai Luaac3f2b2008-09-24 19:04:35 -0700224 .lock = __SPIN_LOCK_UNLOCKED(irq_desc->lock),
Ingo Molnara53da522006-06-29 02:24:38 -0700225#ifdef CONFIG_SMP
226 .affinity = CPU_MASK_ALL
227#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 }
229};
Yinghai Lu08678b02008-08-19 20:50:05 -0700230
Yinghai Lu12026ea2008-12-26 22:38:15 -0800231int __init early_irq_init(void)
232{
233 struct irq_desc *desc;
234 int count;
235 int i;
236
David Daney97179fd2009-01-27 09:53:22 -0800237 init_irq_default_affinity();
238
Yinghai Lu12026ea2008-12-26 22:38:15 -0800239 desc = irq_desc;
240 count = ARRAY_SIZE(irq_desc);
241
242 for (i = 0; i < count; i++)
243 desc[i].irq = i;
244
245 return arch_early_irq_init();
246}
247
KOSAKI Motohirof9af0e72008-12-26 12:24:24 +0900248struct irq_desc *irq_to_desc(unsigned int irq)
249{
250 return (irq < NR_IRQS) ? irq_desc + irq : NULL;
251}
252
253struct irq_desc *irq_to_desc_alloc_cpu(unsigned int irq, int cpu)
254{
255 return irq_to_desc(irq);
256}
257#endif /* !CONFIG_SPARSE_IRQ */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259/*
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700260 * What should we do if we get a hw irq event on an illegal vector?
261 * Each architecture has to answer this themself.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 */
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700263static void ack_bad(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200265 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu08678b02008-08-19 20:50:05 -0700266
Yinghai Lu08678b02008-08-19 20:50:05 -0700267 print_irq_desc(irq, desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 ack_bad_irq(irq);
269}
270
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700271/*
272 * NOP functions
273 */
274static void noop(unsigned int irq)
275{
276}
277
278static unsigned int noop_ret(unsigned int irq)
279{
280 return 0;
281}
282
283/*
284 * Generic no controller implementation
285 */
Ingo Molnarf1c26622006-06-29 02:24:57 -0700286struct irq_chip no_irq_chip = {
287 .name = "none",
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700288 .startup = noop_ret,
289 .shutdown = noop,
290 .enable = noop,
291 .disable = noop,
292 .ack = ack_bad,
293 .end = noop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294};
295
296/*
Thomas Gleixnerf8b54732006-07-01 22:30:08 +0100297 * Generic dummy implementation which can be used for
298 * real dumb interrupt sources
299 */
300struct irq_chip dummy_irq_chip = {
301 .name = "dummy",
302 .startup = noop_ret,
303 .shutdown = noop,
304 .enable = noop,
305 .disable = noop,
306 .ack = noop,
307 .mask = noop,
308 .unmask = noop,
309 .end = noop,
310};
311
312/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 * Special, empty irq handler:
314 */
David Howells7d12e782006-10-05 14:55:46 +0100315irqreturn_t no_action(int cpl, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
317 return IRQ_NONE;
318}
319
Jason Baronaf392412009-02-26 10:11:05 -0500320DEFINE_TRACE(irq_handler_entry);
321DEFINE_TRACE(irq_handler_exit);
322
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700323/**
324 * handle_IRQ_event - irq action chain handler
325 * @irq: the interrupt number
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700326 * @action: the interrupt action chain for this irq
327 *
328 * Handles the action chain of an irq event
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 */
David Howells7d12e782006-10-05 14:55:46 +0100330irqreturn_t handle_IRQ_event(unsigned int irq, struct irqaction *action)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
Jan Beulich908dcec2006-06-23 02:06:00 -0700332 irqreturn_t ret, retval = IRQ_NONE;
333 unsigned int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Thomas Gleixner3cca53b2006-07-01 19:29:31 -0700335 if (!(action->flags & IRQF_DISABLED))
Ingo Molnar366c7f52006-07-03 00:25:25 -0700336 local_irq_enable_in_hardirq();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 do {
Jason Baronaf392412009-02-26 10:11:05 -0500339 trace_irq_handler_entry(irq, action);
David Howells7d12e782006-10-05 14:55:46 +0100340 ret = action->handler(irq, action->dev_id);
Jason Baronaf392412009-02-26 10:11:05 -0500341 trace_irq_handler_exit(irq, action, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 if (ret == IRQ_HANDLED)
343 status |= action->flags;
344 retval |= ret;
345 action = action->next;
346 } while (action);
347
Thomas Gleixner3cca53b2006-07-01 19:29:31 -0700348 if (status & IRQF_SAMPLE_RANDOM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 add_interrupt_randomness(irq);
350 local_irq_disable();
351
352 return retval;
353}
354
David Howellsaf8c65b2006-09-25 23:32:07 -0700355#ifndef CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700356/**
357 * __do_IRQ - original all in one highlevel IRQ handler
358 * @irq: the interrupt number
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700359 *
360 * __do_IRQ handles all normal device IRQ's (the special
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 * SMP cross-CPU interrupts have their own specific
362 * handlers).
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700363 *
364 * This is the original x86 implementation which is used for every
365 * interrupt type.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800367unsigned int __do_IRQ(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
Yinghai Lu08678b02008-08-19 20:50:05 -0700369 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700370 struct irqaction *action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 unsigned int status;
372
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200373 kstat_incr_irqs_this_cpu(irq, desc);
374
Karsten Wiesef26fdd52005-09-06 15:17:25 -0700375 if (CHECK_IRQ_PER_CPU(desc->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 irqreturn_t action_ret;
377
378 /*
379 * No locking required for CPU-local interrupts:
380 */
Yinghai Lu48a1b102008-12-11 00:15:01 -0800381 if (desc->chip->ack) {
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700382 desc->chip->ack(irq);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800383 /* get new one */
384 desc = irq_remap_to_desc(irq, desc);
385 }
Russ Andersonc642b832007-11-14 17:00:15 -0800386 if (likely(!(desc->status & IRQ_DISABLED))) {
387 action_ret = handle_IRQ_event(irq, desc->action);
388 if (!noirqdebug)
389 note_interrupt(irq, desc, action_ret);
390 }
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700391 desc->chip->end(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 return 1;
393 }
394
395 spin_lock(&desc->lock);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800396 if (desc->chip->ack) {
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700397 desc->chip->ack(irq);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800398 desc = irq_remap_to_desc(irq, desc);
399 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 /*
401 * REPLAY is when Linux resends an IRQ that was dropped earlier
402 * WAITING is used by probe to mark irqs that are being tested
403 */
404 status = desc->status & ~(IRQ_REPLAY | IRQ_WAITING);
405 status |= IRQ_PENDING; /* we _want_ to handle it */
406
407 /*
408 * If the IRQ is disabled for whatever reason, we cannot
409 * use the action we have.
410 */
411 action = NULL;
412 if (likely(!(status & (IRQ_DISABLED | IRQ_INPROGRESS)))) {
413 action = desc->action;
414 status &= ~IRQ_PENDING; /* we commit to handling */
415 status |= IRQ_INPROGRESS; /* we are handling it */
416 }
417 desc->status = status;
418
419 /*
420 * If there is no IRQ handler or it was disabled, exit early.
421 * Since we set PENDING, if another processor is handling
422 * a different instance of this same irq, the other processor
423 * will take care of it.
424 */
425 if (unlikely(!action))
426 goto out;
427
428 /*
429 * Edge triggered interrupts need to remember
430 * pending events.
431 * This applies to any hw interrupts that allow a second
432 * instance of the same irq to arrive while we are in do_IRQ
433 * or in the handler. But the code here only handles the _second_
434 * instance of the irq, not the third or fourth. So it is mostly
435 * useful for irq hardware that does not mask cleanly in an
436 * SMP environment.
437 */
438 for (;;) {
439 irqreturn_t action_ret;
440
441 spin_unlock(&desc->lock);
442
David Howells7d12e782006-10-05 14:55:46 +0100443 action_ret = handle_IRQ_event(irq, action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 if (!noirqdebug)
David Howells7d12e782006-10-05 14:55:46 +0100445 note_interrupt(irq, desc, action_ret);
Linus Torvaldsb42172f2006-11-22 09:32:06 -0800446
447 spin_lock(&desc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 if (likely(!(desc->status & IRQ_PENDING)))
449 break;
450 desc->status &= ~IRQ_PENDING;
451 }
452 desc->status &= ~IRQ_INPROGRESS;
453
454out:
455 /*
456 * The ->end() handler has to deal with interrupts which got
457 * disabled while the handler was running.
458 */
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700459 desc->chip->end(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 spin_unlock(&desc->lock);
461
462 return 1;
463}
David Howellsaf8c65b2006-09-25 23:32:07 -0700464#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Ingo Molnar243c7622006-07-03 00:25:06 -0700466void early_init_irq_lock_class(void)
467{
Thomas Gleixner10e58082008-10-16 14:19:04 +0200468 struct irq_desc *desc;
Ingo Molnar243c7622006-07-03 00:25:06 -0700469 int i;
470
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800471 for_each_irq_desc(i, desc) {
Thomas Gleixner10e58082008-10-16 14:19:04 +0200472 lockdep_set_class(&desc->lock, &irq_desc_lock_class);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800473 }
Yinghai Lu08678b02008-08-19 20:50:05 -0700474}
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800475
476#ifdef CONFIG_SPARSE_IRQ
477unsigned int kstat_irqs_cpu(unsigned int irq, int cpu)
478{
479 struct irq_desc *desc = irq_to_desc(irq);
KOSAKI Motohiro26ddd8d2008-12-26 14:24:10 +0900480 return desc ? desc->kstat_irqs[cpu] : 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800481}
482#endif
483EXPORT_SYMBOL(kstat_irqs_cpu);
484