Yinghai Lu
3ddfda1186
generic: add dyn_array support
Allow crazy big arrays via bootmem at init stage.
Architectures use CONFIG_HAVE_DYN_ARRAY to enable it.
usage:
| static struct irq_desc irq_desc_init __initdata = {
| .status = IRQ_DISABLED,
| .chip = &no_irq_chip,
| .handle_irq = handle_bad_irq,
| .depth = 1,
| .lock = __SPIN_LOCK_UNLOCKED(irq_desc->lock),
| #ifdef CONFIG_SMP
| .affinity = CPU_MASK_ALL
| #endif
| };
|
| static void __init init_work(void *data)
| {
| struct dyn_array *da = data;
| struct irq_desc *desc;
| int i;
|
| desc = *da->name;
|
| for (i = 0; i < *da->nr; i++)
| memcpy(&desc[i], &irq_desc_init, sizeof(struct irq_desc));
| }
|
| struct irq_desc *irq_desc;
| DEFINE_DYN_ARRAY(irq_desc, sizeof(struct irq_desc), nr_irqs, PAGE_SIZE, init_work);
after pre_alloc_dyn_array() after setup_arch(), the array is ready to be
used.
Via this facility we can replace irq_desc[NR_IRQS] array with dyn_array
irq_desc[nr_irqs].
v2: remove _nopanic in pre_alloc_dyn_array()
Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2008-10-16 16:52:02 +02:00
..
2008-08-15 02:12:16 +02:00
2008-08-16 20:01:18 +01:00
2008-09-06 19:30:24 +01:00
2008-08-20 13:19:52 -07:00
2008-10-16 16:52:02 +02:00
2008-09-06 19:30:24 +01:00
2008-10-14 10:23:27 -07:00
2008-10-11 16:18:52 +01:00
2008-08-20 13:19:51 -07:00
2008-10-13 17:13:56 +01:00
2008-09-19 12:44:54 -07:00
2008-10-16 16:52:02 +02:00
2008-09-06 19:30:24 +01:00
2008-08-29 15:50:04 +10:00
2008-10-16 16:52:02 +02:00
2008-10-13 09:57:34 -02:00
2008-10-13 09:35:14 +11:00
2008-08-31 16:00:42 +02:00
2008-08-04 11:02:14 -07:00
2008-10-10 10:53:26 -07:00
2008-10-13 14:03:59 -07:00
2008-10-09 21:33:02 +01:00
2008-10-03 10:04:10 +02:00