The patch titled always define IRQ_PER_CPU has been removed from the -mm tree. Its filename is always-define-irq_per_cpu.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: always define IRQ_PER_CPU From: Yoichi Yuasa <yoichi_yuasa@xxxxxxxxxxxxxx> Reduce the likelihood of someone accidentally introducing namespace collisions. Signed-off-by: Yoichi Yuasa <yoichi_yuasa@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- include/linux/irq.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/linux/irq.h~always-define-irq_per_cpu include/linux/irq.h --- a/include/linux/irq.h~always-define-irq_per_cpu +++ a/include/linux/irq.h @@ -47,8 +47,8 @@ #define IRQ_WAITING 0x00200000 /* IRQ not yet seen - for autodetection */ #define IRQ_LEVEL 0x00400000 /* IRQ level triggered */ #define IRQ_MASKED 0x00800000 /* IRQ masked - shouldn't be seen again */ +#define IRQ_PER_CPU 0x01000000 /* IRQ is per CPU */ #ifdef CONFIG_IRQ_PER_CPU -# define IRQ_PER_CPU 0x01000000 /* IRQ is per CPU */ # define CHECK_IRQ_PER_CPU(var) ((var) & IRQ_PER_CPU) #else # define CHECK_IRQ_PER_CPU(var) 0 _ Patches currently in -mm which might be from yoichi_yuasa@xxxxxxxxxxxxxx are origin.patch drivers-base-check-errors-fix-2.patch reduce-max_nr_zones-move-highmem-counters-into-highmemc-h-fix.patch irq-fixed-coding-style.patch irq-removed-a-extra-line.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html