The patch titled gregkh-pci-64bit-resource-fix-up-printks-for-resources-in-arch-and-core-code fix has been removed from the -mm tree. Its filename is 64bit-resource-fix-up-printks-for-resources-in-arch-and-core-code-fix.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: gregkh-pci-64bit-resource-fix-up-printks-for-resources-in-arch-and-core-code fix From: Andy Isaacson <adi@xxxxxxxxxxxxx> In 2.6.17-mm1, the patch gregkh-pci-64bit-resource-fix-up-printks-for-resources-in-arch-and-core-code.patch has some formatting bugs. * converts %08x into %16llx, which results in space-padding rather than zero-padding. * some casts are insufficiently touchy-feely with their castees. This patch fixes them. Signed-off-by: Andy Isaacson <adi@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- kernel/resource.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN kernel/resource.c~64bit-resource-fix-up-printks-for-resources-in-arch-and-core-code-fix kernel/resource.c --- a/kernel/resource.c~64bit-resource-fix-up-printks-for-resources-in-arch-and-core-code-fix +++ a/kernel/resource.c @@ -510,8 +510,8 @@ void __release_region(struct resource *p write_unlock(&resource_lock); printk(KERN_WARNING "Trying to free nonexistent resource " - "<%16llx-%16llx>\n", (unsigned long long)start, - (unsigned long long) end); + "<%016llx-%016llx>\n", (unsigned long long)start, + (unsigned long long)end); } EXPORT_SYMBOL(__release_region); _ Patches currently in -mm which might be from adi@xxxxxxxxxxxxx are - 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