The patch titled x86-64: mmconfig missing printk levels has been removed from the -mm tree. Its filename was x86-64-mmconfig-missing-printk-levels.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: x86-64: mmconfig missing printk levels From: Dave Jones <davej@xxxxxxxxxx> Signed-off-by: Dave Jones <davej@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/x86_64/pci/mmconfig.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff -puN arch/x86_64/pci/mmconfig.c~x86-64-mmconfig-missing-printk-levels arch/x86_64/pci/mmconfig.c --- a/arch/x86_64/pci/mmconfig.c~x86-64-mmconfig-missing-printk-levels +++ a/arch/x86_64/pci/mmconfig.c @@ -220,7 +220,7 @@ void __init pci_mmcfg_init(int type) pci_mmcfg_virt = kmalloc(sizeof(*pci_mmcfg_virt) * pci_mmcfg_config_num, GFP_KERNEL); if (pci_mmcfg_virt == NULL) { - printk("PCI: Can not allocate memory for mmconfig structures\n"); + printk(KERN_ERR "PCI: Can not allocate memory for mmconfig structures\n"); return; } for (i = 0; i < pci_mmcfg_config_num; ++i) { @@ -228,8 +228,9 @@ void __init pci_mmcfg_init(int type) pci_mmcfg_virt[i].virt = ioremap_nocache(pci_mmcfg_config[i].address, MMCONFIG_APER_MAX); if (!pci_mmcfg_virt[i].virt) { - printk("PCI: Cannot map mmconfig aperture for segment %d\n", - pci_mmcfg_config[i].pci_segment); + printk(KERN_ERR "PCI: Cannot map mmconfig aperture for " + "segment %d\n", + pci_mmcfg_config[i].pci_segment); return; } printk(KERN_INFO "PCI: Using MMCONFIG at %lx\n", _ Patches currently in -mm which might be from davej@xxxxxxxxxx are origin.patch git-cpufreq.patch swsusp-support-i386-systems-with-pae-or-without-pse.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