From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id C0FC4C433DF for ; Tue, 9 Jun 2020 18:00:20 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 915C920734 for ; Tue, 9 Jun 2020 18:00:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1591725620; bh=n8q04xDMrDPWu9IhdcNaULZR032c3fQUuJoUitb60Xo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=fNnpMeFGERBDtMLqz0bE+DrFiOQqm2Td/HgyFm2pdHYes7AqSz3MKRYBOTThR9aZm hLpAqmb5KlIjOWfrA28pPqaGcTXbFjcZ1Erxa89GS1xmJHscVLEyF/qSpiO9AfOEe9 JT3FrglQhbHsEN/DxhUIbANjlrrlhjkT7R9Scea0= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2387739AbgFISAS (ORCPT ); Tue, 9 Jun 2020 14:00:18 -0400 Received: from mail.kernel.org ([198.145.29.99]:46398 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1731706AbgFIRyf (ORCPT ); Tue, 9 Jun 2020 13:54:35 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 27D682081A; Tue, 9 Jun 2020 17:54:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1591725275; bh=n8q04xDMrDPWu9IhdcNaULZR032c3fQUuJoUitb60Xo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Wa40lJT+WPLLeIL66KJo5meS4ng7jmrrhsnUClLuF3t1jTTIa69BEk4QZ2AIZmw8O yfthMEXZ3CoKJsby89QZoWJXZX0sVKDzoA135zbKYCo6E5N5z7gAqunQ7wgccs/7Di EvL4YF5N9nK8L9m/67SZQq95wzLkDE52VrA+d00k= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Stefano Garzarella , Jorgen Hansen , "David S. Miller" Subject: [PATCH 5.6 12/41] vsock: fix timeout in vsock_accept() Date: Tue, 9 Jun 2020 19:45:14 +0200 Message-Id: <20200609174113.318521695@linuxfoundation.org> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20200609174112.129412236@linuxfoundation.org> References: <20200609174112.129412236@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Stefano Garzarella [ Upstream commit 7e0afbdfd13d1e708fe96e31c46c4897101a6a43 ] The accept(2) is an "input" socket interface, so we should use SO_RCVTIMEO instead of SO_SNDTIMEO to set the timeout. So this patch replace sock_sndtimeo() with sock_rcvtimeo() to use the right timeout in the vsock_accept(). Fixes: d021c344051a ("VSOCK: Introduce VM Sockets") Signed-off-by: Stefano Garzarella Reviewed-by: Jorgen Hansen Signed-off-by: David S. Miller Signed-off-by: Greg Kroah-Hartman --- net/vmw_vsock/af_vsock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/net/vmw_vsock/af_vsock.c +++ b/net/vmw_vsock/af_vsock.c @@ -1408,7 +1408,7 @@ static int vsock_accept(struct socket *s /* Wait for children sockets to appear; these are the new sockets * created upon connection establishment. */ - timeout = sock_sndtimeo(listener, flags & O_NONBLOCK); + timeout = sock_rcvtimeo(listener, flags & O_NONBLOCK); prepare_to_wait(sk_sleep(listener), &wait, TASK_INTERRUPTIBLE); while ((connected = vsock_dequeue_accept(listener)) == NULL &&