Merge branches 'irq-fixes-for-linus' and 'sched-fixes-for-linus' of git://git.kernel...
authorLinus Torvalds <torvalds@linux-foundation.org>
Fri, 18 Mar 2011 17:44:05 +0000 (10:44 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 18 Mar 2011 17:44:05 +0000 (10:44 -0700)
* 'irq-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
  genirq: Fix incorrect unlock in __setup_irq()
  cris: Use generic show_interrupts()
  genirq: show_interrupts: Check desc->name before printing it blindly
  cris: Use accessor functions to set IRQ_PER_CPU flag
  cris: Fix irq conversion fallout

* 'sched-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
  sched, kernel-doc: Fix runqueue_is_locked() description

arch/cris/Kconfig
arch/cris/arch-v10/kernel/irq.c
arch/cris/arch-v32/kernel/irq.c
arch/cris/kernel/irq.c
kernel/irq/manage.c
kernel/irq/proc.c

index 0a7a4c1..4db5b46 100644 (file)
@@ -56,6 +56,7 @@ config CRIS
        select HAVE_IDE
        select HAVE_GENERIC_HARDIRQS
        select GENERIC_HARDIRQS_NO_DEPRECATED
+       select GENERIC_IRQ_SHOW
 
 config HZ
        int
index 7328a7c..907cfb5 100644 (file)
@@ -199,7 +199,7 @@ init_IRQ(void)
 
        /* Initialize IRQ handler descriptors. */
        for(i = 2; i < NR_IRQS; i++) {
-               set_irq_desc_and_handler(i, &crisv10_irq_type,
+               irq_set_chip_and_handler(i, &crisv10_irq_type,
                                         handle_simple_irq);
                set_int_vector(i, interrupt[i]);
        }
index 0ad9db5..8023176 100644 (file)
@@ -451,16 +451,16 @@ init_IRQ(void)
 
        /* Point all IRQ's to bad handlers. */
        for (i = FIRST_IRQ, j = 0; j < NR_IRQS; i++, j++) {
-               set_irq_chip_and_handler(j, &crisv32_irq_type,
+               irq_set_chip_and_handler(j, &crisv32_irq_type,
                                         handle_simple_irq);
                set_exception_vector(i, interrupt[j]);
        }
 
-        /* Mark Timer and IPI IRQs as CPU local */
+       /* Mark Timer and IPI IRQs as CPU local */
        irq_allocations[TIMER0_INTR_VECT - FIRST_IRQ].cpu = CPU_FIXED;
-       irq_desc[TIMER0_INTR_VECT].status |= IRQ_PER_CPU;
+       irq_set_status_flags(TIMER0_INTR_VECT, IRQ_PER_CPU);
        irq_allocations[IPI_INTR_VECT - FIRST_IRQ].cpu = CPU_FIXED;
-       irq_desc[IPI_INTR_VECT].status |= IRQ_PER_CPU;
+       irq_set_status_flags(IPI_INTR_VECT, IRQ_PER_CPU);
 
        set_exception_vector(0x00, nmi_interrupt);
        set_exception_vector(0x30, multiple_interrupt);
index c346952..788eb22 100644 (file)
 
 #include <asm/io.h>
 
-int show_interrupts(struct seq_file *p, void *v)
-{
-       int i = *(loff_t *) v, j;
-       struct irqaction * action;
-       unsigned long flags;
-
-       if (i == 0) {
-               seq_printf(p, "           ");
-               for_each_online_cpu(j)
-                       seq_printf(p, "CPU%d       ",j);
-               seq_putc(p, '\n');
-       }
-
-       if (i < NR_IRQS) {
-               raw_spin_lock_irqsave(&irq_desc[i].lock, flags);
-               action = irq_desc[i].action;
-               if (!action)
-                       goto skip;
-               seq_printf(p, "%3d: ",i);
-#ifndef CONFIG_SMP
-               seq_printf(p, "%10u ", kstat_irqs(i));
-#else
-               for_each_online_cpu(j)
-                       seq_printf(p, "%10u ", kstat_irqs_cpu(i, j));
-#endif
-               seq_printf(p, " %14s", irq_desc[i].irq_data.chip->name);
-               seq_printf(p, "  %s", action->name);
-
-               for (action=action->next; action; action = action->next)
-                       seq_printf(p, ", %s", action->name);
-
-               seq_putc(p, '\n');
-skip:
-               raw_spin_unlock_irqrestore(&irq_desc[i].lock, flags);
-       }
-       return 0;
-}
-
-
 /* called by the assembler IRQ entry functions defined in irq.h
  * to dispatch the interrupts to registered handlers
  * interrupts are disabled upon entry - depending on if the
index acd599a..0a2aa73 100644 (file)
@@ -1064,10 +1064,10 @@ mismatch:
        ret = -EBUSY;
 
 out_mask:
+       raw_spin_unlock_irqrestore(&desc->lock, flags);
        free_cpumask_var(mask);
 
 out_thread:
-       raw_spin_unlock_irqrestore(&desc->lock, flags);
        if (new->thread) {
                struct task_struct *t = new->thread;
 
index 4cc2e5e..760248d 100644 (file)
@@ -405,7 +405,8 @@ int show_interrupts(struct seq_file *p, void *v)
        for_each_online_cpu(j)
                seq_printf(p, "%10u ", kstat_irqs_cpu(i, j));
        seq_printf(p, " %8s", desc->irq_data.chip->name);
-       seq_printf(p, "-%-8s", desc->name);
+       if (desc->name)
+               seq_printf(p, "-%-8s", desc->name);
 
        if (action) {
                seq_printf(p, "  %s", action->name);