The patch titled Subject: mm-add-utility-for-early-copy-from-unmapped-ram-v4 has been removed from the -mm tree. Its filename was mm-add-utility-for-early-copy-from-unmapped-ram-v4.patch This patch was dropped because it was folded into mm-add-utility-for-early-copy-from-unmapped-ram.patch ------------------------------------------------------ From: Mark Salter <msalter@xxxxxxxxxx> Subject: mm-add-utility-for-early-copy-from-unmapped-ram-v4 Fixed sparse warning in copy_from_early_mem() Signed-off-by: Mark Salter <msalter@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/early_ioremap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN mm/early_ioremap.c~mm-add-utility-for-early-copy-from-unmapped-ram-v4 mm/early_ioremap.c --- a/mm/early_ioremap.c~mm-add-utility-for-early-copy-from-unmapped-ram-v4 +++ a/mm/early_ioremap.c @@ -232,7 +232,7 @@ void __init copy_from_early_mem(void *de clen = MAX_MAP_CHUNK - slop; p = early_memremap(src & PAGE_MASK, clen + slop); memcpy(dest, p + slop, clen); - early_iounmap(p, clen + slop); + early_memunmap(p, clen + slop); dest += clen; src += clen; size -= clen; _ Patches currently in -mm which might be from msalter@xxxxxxxxxx are mm-add-utility-for-early-copy-from-unmapped-ram.patch arm64-support-initrd-outside-kernel-linear-map.patch arm64-support-initrd-outside-kernel-linear-map-v4.patch x86-use-generic-early-mem-copy.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