The patch titled kexec-premit-reduction-of-the-reserved-memory-size-fix has been removed from the -mm tree. Its filename was kexec-premit-reduction-of-the-reserved-memory-size-fix.patch This patch was dropped because it was folded into kexec-premit-reduction-of-the-reserved-memory-size.patch The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: kexec-premit-reduction-of-the-reserved-memory-size-fix From: Cong Wang <amwang@xxxxxxxxxx> kernel/ksysfs.c: In function `kexec_crash_size_show': kernel/ksysfs.c:106: warning: format `%lu' expects type `long unsigned int', but argument 3 has type `size_t' Cc: Dan Carpenter <error27@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/ksysfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN kernel/ksysfs.c~kexec-premit-reduction-of-the-reserved-memory-size-fix kernel/ksysfs.c --- a/kernel/ksysfs.c~kexec-premit-reduction-of-the-reserved-memory-size-fix +++ a/kernel/ksysfs.c @@ -103,7 +103,7 @@ KERNEL_ATTR_RO(kexec_crash_loaded); static ssize_t kexec_crash_size_show(struct kobject *kobj, struct kobj_attribute *attr, char *buf) { - return sprintf(buf, "%lu\n", crash_get_memory_size()); + return sprintf(buf, "%zu\n", crash_get_memory_size()); } static ssize_t kexec_crash_size_store(struct kobject *kobj, struct kobj_attribute *attr, _ Patches currently in -mm which might be from amwang@xxxxxxxxxx are origin.patch ipc-remove-unreachable-code-in-semc.patch ipc-hard_msgmax-should-be-higher-not-lower-on-64bit.patch kexec-premit-reduction-of-the-reserved-memory-size.patch kexec-premit-reduction-of-the-reserved-memory-size-fix.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