From: Anton Blanchard Date: Tue, 17 May 2011 19:38:57 +0000 (-0400) Subject: net: recvmmsg: Strip MSG_WAITFORONE when calling recvmsg X-Git-Tag: v2.6.39.1~158 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9aefae678abf4ba79f97983dd014135c3d46f96a;p=pandora-kernel.git net: recvmmsg: Strip MSG_WAITFORONE when calling recvmsg commit b9eb8b8752804cecbacdb4d24b52e823cf07f107 upstream. recvmmsg fails on a raw socket with EINVAL. The reason for this is packet_recvmsg checks the incoming flags: err = -EINVAL; if (flags & ~(MSG_PEEK|MSG_DONTWAIT|MSG_TRUNC|MSG_CMSG_COMPAT|MSG_ERRQUEUE)) goto out; This patch strips out MSG_WAITFORONE when calling recvmmsg which fixes the issue. Signed-off-by: Anton Blanchard Signed-off-by: David S. Miller Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed