The patch titled s390/char/vmlogrdr: module initialization function should return negative errors has been removed from the -mm tree. Its filename was s390-char-vmlogrdr-module-initialization-function-should-return-negative-errors.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: s390/char/vmlogrdr: module initialization function should return negative errors From: Marcin Slusarz <marcin.slusarz@xxxxxxxxx> Signed-off-by: Marcin Slusarz <marcin.slusarz@xxxxxxxxx> Cc: Martin Schwidefsky <schwidefsky@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/s390/char/vmlogrdr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/s390/char/vmlogrdr.c~s390-char-vmlogrdr-module-initialization-function-should-return-negative-errors drivers/s390/char/vmlogrdr.c --- a/drivers/s390/char/vmlogrdr.c~s390-char-vmlogrdr-module-initialization-function-should-return-negative-errors +++ a/drivers/s390/char/vmlogrdr.c @@ -858,7 +858,7 @@ static int __init vmlogrdr_init(void) for (i=0; i < MAXMINOR; ++i ) { sys_ser[i].buffer = (char *) get_zeroed_page(GFP_KERNEL); if (!sys_ser[i].buffer) { - rc = ENOMEM; + rc = -ENOMEM; break; } sys_ser[i].current_position = sys_ser[i].buffer; _ Patches currently in -mm which might be from marcin.slusarz@xxxxxxxxx are origin.patch linux-next.patch drm-radeon-radeon_enable_vblank-should-return-negative-error.patch git-jfs.patch isdn-capi-return-proper-errnos-on-module-init.patch net-s2io-set_rxd_buffer_pointer-returns-enomem-not-enomem.patch ntfs-le_add_cpu-conversion.patch tty_check_change-avoid-taking-tasklist_lock-while-holding-tty-ctrl_lock.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