Received: by 2002:a25:7ec1:0:0:0:0:0 with SMTP id z184csp3549330ybc; Mon, 18 Nov 2019 17:20:35 -0800 (PST) X-Google-Smtp-Source: APXvYqyIpwnxl6l7DqxPYJlrZvljXI44rVC/FfzsR/iS90viRFKiIxFK1a6NAC2L0bdeQ+gto985 X-Received: by 2002:a17:906:5fd0:: with SMTP id k16mr30566972ejv.243.1574126435729; Mon, 18 Nov 2019 17:20:35 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1574126435; cv=none; d=google.com; s=arc-20160816; b=I4l+NYa23K0DazbhQuMqYrnQUK053dH4fNSYz5XQydEW/yw6ASfGYMtQW6DPj7O48W w7Rk2XKTI0618N6C8MuGWLZzTaXJfozE+/vpz6wQOpUsez3e03JgR5ZkJKYbPBMqVyeT bJtHgJPIoKiL8wxeds6Z+/bdDMgb+9GfeIUDtju06IgZZ/AhiyUXdrLYpGFrbR/+ZzIO l+Yn5gvpWJzqY6bq14iTENYqjSA4hzmcn6Gpsk5uNBH++IhWRJQ6yfmielhbuS9KN3fj ctXm5BBFM5TbXIoSRl1w7OWI/W+bWEuxOnm1LbJSK+H+cnn5TPX6kiOACkF0RCNx2A5G 9rvQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:message-id:date:subject:cc :to:from; bh=NBD22C5u0+nMze79eO3WzpzToNkbu0Xd0+r6GVnx5S8=; b=fhm6ZPBq8vI6+TKmR19oy0MlLwKPWAR2f7XOYnaw8K7Fb0hyz6vgh5Zh+Ahhs7SPUm Ey2dFNGu6cxgGLJLw0eJyadiZtqwta839+ugVuB3fAOB4jwASOGzaikkQYuOIaWKfPow VjDcqjFYLdqRowgYSFigBSRPpgrjk/m/O0Zo1dvK9R2DCuUAWNTAH8LLEVLCpNGGNJfk RWk5gymfjB0svhutx+R/oVOUq6n6gVRcaLwU3VaOO502cioV8svVblV3gR9KYwdDL7FN ydIVTBnWa1Rzi01YD52oCwjQpEj1uhh06mMvpntQm/s2IHXeu0aA4pR+jH/h1OgNGzs/ I1/g== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id c6si13846431ejc.350.2019.11.18.17.20.11; Mon, 18 Nov 2019 17:20:35 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727004AbfKSBQc (ORCPT + 99 others); Mon, 18 Nov 2019 20:16:32 -0500 Received: from szxga07-in.huawei.com ([45.249.212.35]:34018 "EHLO huawei.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726775AbfKSBQc (ORCPT ); Mon, 18 Nov 2019 20:16:32 -0500 Received: from DGGEMS403-HUB.china.huawei.com (unknown [172.30.72.59]) by Forcepoint Email with ESMTP id 019D6627C3C33EB3DB28; Tue, 19 Nov 2019 09:16:29 +0800 (CST) Received: from HGHY4Z004218071.china.huawei.com (10.133.224.57) by DGGEMS403-HUB.china.huawei.com (10.3.19.203) with Microsoft SMTP Server id 14.3.439.0; Tue, 19 Nov 2019 09:16:20 +0800 From: Xiang Zheng To: , CC: , , , , , , , , , , Subject: [PATCH v2] pci: lock the pci_cfg_wait queue for the consistency of data Date: Tue, 19 Nov 2019 09:15:45 +0800 Message-ID: <20191119011545.15408-1-zhengxiang9@huawei.com> X-Mailer: git-send-email 2.15.1.windows.2 MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.133.224.57] X-CFilter-Loop: Reflected Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit "7ea7e98fd8d0" suggests that the "pci_lock" is sufficient, and all the callers of pci_wait_cfg() are wrapped with the "pci_lock". However, since the commit "cdcb33f98244" merged, the accesses to the pci_cfg_wait queue are not safe anymore. A "pci_lock" is insufficient and we need to hold an additional queue lock while read/write the wait queue. So let's use the add_wait_queue()/remove_wait_queue() instead of __add_wait_queue()/__remove_wait_queue(). Also move the wait queue functionality around the "schedule()" function to avoid reintroducing the deadlock addressed by "cdcb33f98244". Signed-off-by: Xiang Zheng Cc: Heyi Guo Cc: Biaoxiang Ye --- v2: - Move the wait queue functionality around the "schedule()" function to avoid reintroducing the deadlock addressed by "cdcb33f98244" --- drivers/pci/access.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/pci/access.c b/drivers/pci/access.c index 2fccb5762c76..09342a74e5ea 100644 --- a/drivers/pci/access.c +++ b/drivers/pci/access.c @@ -207,14 +207,14 @@ static noinline void pci_wait_cfg(struct pci_dev *dev) { DECLARE_WAITQUEUE(wait, current); - __add_wait_queue(&pci_cfg_wait, &wait); do { set_current_state(TASK_UNINTERRUPTIBLE); raw_spin_unlock_irq(&pci_lock); + add_wait_queue(&pci_cfg_wait, &wait); schedule(); + remove_wait_queue(&pci_cfg_wait, &wait); raw_spin_lock_irq(&pci_lock); } while (dev->block_cfg_access); - __remove_wait_queue(&pci_cfg_wait, &wait); } /* Returns 0 on success, negative values indicate error. */ -- 2.19.1