The patch titled kcore-use-registerd-physmem-information-fix2 has been removed from the -mm tree. Its filename was kcore-use-registerd-physmem-information-fix2.patch This patch was dropped because an updated version will be merged The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: kcore-use-registerd-physmem-information-fix2 From: Jiri Slaby <jirislaby@xxxxxxxxx> Fix this compilation warning on x86_64: fs/proc/kcore.c: In function `kclist_add_private': fs/proc/kcore.c:175: warning: comparison between pointer and integer Signed-off-by: Jiri Slaby <jirislaby@xxxxxxxxx> Reviewed-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/proc/kcore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/proc/kcore.c~kcore-use-registerd-physmem-information-fix2 fs/proc/kcore.c --- a/fs/proc/kcore.c~kcore-use-registerd-physmem-information-fix2 +++ a/fs/proc/kcore.c @@ -172,7 +172,7 @@ kclist_add_private(unsigned long pfn, un ent->size = ULONG_MAX - ent->addr; /* cut when vmalloc() area is higher than direct-map area */ - if (VMALLOC_START > __va(0)) { + if (VMALLOC_START > (unsigned long)__va(0)) { if (ent->addr > VMALLOC_START) goto free_out; if (VMALLOC_START - ent->addr < ent->size) _ Patches currently in -mm which might be from jirislaby@xxxxxxxxx are origin.patch md-dm-log-fix-cn_ulog_callback-declaration.patch linux-next.patch toshiba_acpi-return-on-a-fail-path.patch gpu-vgaarb-use-%p-in-pointers-prints.patch mtd-sst25l-fix-lock-imbalance.patch isdn-hisax-fix-lock-imbalance.patch isdn-eicon-use-offsetof.patch isdn-eicon-return-on-error.patch icom-converting-space-to-tabs.patch cyclades-read-buffer-overflow.patch serial167-fix-read-buffer-overflow.patch usb-make-usb_buffer_map_sg-consistent-with-doc.patch char-riscom8-fix-shutdown-declaration.patch kcore-use-registerd-physmem-information-fix2.patch video-console-use-div_round_up.patch memory-controller-soft-limit-organize-cgroups-v9-fix.patch cyclades-allow-overriding-isa-defaults-also-when-the-driver-is-built-in.patch drivers-char-rio-rioctrlc-off-by-one-error-in-rioctrlc.patch memstick-move-dev_dbg.patch reiser4.patch fs-reiser4-add-parenths-around-x-y.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