From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 14B88A04FD; Fri, 25 Mar 2022 10:03:10 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id BFE1240687; Fri, 25 Mar 2022 10:03:09 +0100 (CET) Received: from inbox.dpdk.org (inbox.dpdk.org [95.142.172.178]) by mails.dpdk.org (Postfix) with ESMTP id CC17E40140 for ; Fri, 25 Mar 2022 10:03:08 +0100 (CET) Received: by inbox.dpdk.org (Postfix, from userid 33) id A8481A04FF; Fri, 25 Mar 2022 10:03:08 +0100 (CET) From: bugzilla@dpdk.org To: dev@dpdk.org Subject: [Bug 981] vhost: avoid sleeping under mutex Date: Fri, 25 Mar 2022 09:03:08 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: DPDK X-Bugzilla-Component: vhost/virtio X-Bugzilla-Version: unspecified X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: david.marchand@redhat.com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: dev@dpdk.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://bugs.dpdk.org/ Auto-Submitted: auto-generated X-Auto-Response-Suppress: All MIME-Version: 1.0 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org https://bugs.dpdk.org/show_bug.cgi?id=3D981 Bug ID: 981 Summary: vhost: avoid sleeping under mutex Product: DPDK Version: unspecified Hardware: All OS: All Status: UNCONFIRMED Severity: normal Priority: Normal Component: vhost/virtio Assignee: dev@dpdk.org Reporter: david.marchand@redhat.com Target Milestone: --- Reported by covscan: 2. dpdk-21.11/lib/vhost/socket.c:852: lock_acquire: Calling function "pthread_mutex_lock" acquires lock "vhost_user.mutex". 23. dpdk-21.11/lib/vhost/socket.c:955: sleep: Call to "vhost_user_reconnect_init" might sleep while holding lock "vhost_user.mute= x". # 953| vsocket->reconnect =3D !(flags & RTE_VHOST_USER_NO_RECONNECT); # 954| if (vsocket->reconnect && reconn_tid =3D=3D 0) { # 955|-> if (vhost_user_reconnect_init() !=3D 0) # 956| goto out_mutex; # 957| } The reason for this warning is that creating a ctrl thread might end up with sleep() calls. Maybe creating the ctrl thread could be moved early (out of the mutex). Plus, comparing (pthread_t) reconn_tid against 0 is ugly. Fixing this bz would be a good time to clean this too. --=20 You are receiving this mail because: You are the assignee for the bug.=