The patch titled kernelparams-detect-if-and-which-parameter-parsing-enabled-irqs-fix has been removed from the -mm tree. Its filename was kernelparams-detect-if-and-which-parameter-parsing-enabled-irqs-fix.patch This patch was dropped because it was folded into kernelparams-detect-if-and-which-parameter-parsing-enabled-irqs.patch ------------------------------------------------------ Subject: kernelparams-detect-if-and-which-parameter-parsing-enabled-irqs-fix From: Andrew Morton <akpm@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- kernel/params.c | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff -puN kernel/params.c~kernelparams-detect-if-and-which-parameter-parsing-enabled-irqs-fix kernel/params.c --- a/kernel/params.c~kernelparams-detect-if-and-which-parameter-parsing-enabled-irqs-fix +++ a/kernel/params.c @@ -146,10 +146,11 @@ int parse_args(const char *name, int irq_was_disabled; args = next_arg(args, ¶m, &val); - irq_was_disabled=irqs_disabled(); + irq_was_disabled = irqs_disabled(); ret = parse_one(param, val, params, num, unknown); - if(irq_was_disabled && !irqs_disabled()) { - printk(KERN_WARNING "parse_args(): option '%s' enabled irq's!\n",param); + if (irq_was_disabled && !irqs_disabled()) { + printk(KERN_WARNING "parse_args(): option '%s' enabled " + "irq's!\n", param); } switch (ret) { case -ENOENT: _ Patches currently in -mm which might be from akpm@xxxxxxxx are origin.patch start_kernel-test-if-irqs-got-enabled-early-barf-and-disable-them-again.patch kernelparams-detect-if-and-which-parameter-parsing-enabled-irqs.patch kernelparams-detect-if-and-which-parameter-parsing-enabled-irqs-fix.patch pci-prevent-down_read-when-pci_devices-is-empty-fix.patch atiixp-old-drivers-ide-layer-driver-for-the-atiixp-hang-tidy.patch ip2-warning-fix.patch pci-avoid-taking-pci_bus_sem-early-in-boot.patch shrink_all_memory-fix-lru_pages-handling.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