The patch titled [PATCH] dlm: tcp_connect_to_sock should check for -EINVAL, not EINVAL has been removed from the -mm tree. Its filename was dlm-tcp_connect_to_sock-should-check-for-einval-not-einval.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: [PATCH] dlm: tcp_connect_to_sock should check for -EINVAL, not EINVAL From: Marcin Slusarz <marcin.slusarz@xxxxxxxxx> Signed-off-by: Marcin Slusarz <marcin.slusarz@xxxxxxxxx> Cc: Christine Caulfield <ccaulfie@xxxxxxxxxx> Cc: David Teigland <teigland@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/dlm/lowcomms.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/dlm/lowcomms.c~dlm-tcp_connect_to_sock-should-check-for-einval-not-einval fs/dlm/lowcomms.c --- a/fs/dlm/lowcomms.c~dlm-tcp_connect_to_sock-should-check-for-einval-not-einval +++ a/fs/dlm/lowcomms.c @@ -931,7 +931,7 @@ out_err: * errors we try again until the max number of retries is reached. */ if (result != -EHOSTUNREACH && result != -ENETUNREACH && - result != -ENETDOWN && result != EINVAL + result != -ENETDOWN && result != -EINVAL && result != -EPROTONOSUPPORT) { lowcomms_connect_sock(con); result = 0; _ Patches currently in -mm which might be from marcin.slusarz@xxxxxxxxx are linux-next.patch git-cifs.patch drm-radeon-radeon_enable_vblank-should-return-negative-error.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 s390-char-vmlogrdr-module-initialization-function-should-return-negative-errors.patch usb-usbtest-comment-on-why-this-code-expects-negative-and-positive-errnos.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