From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.10]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 5593A32182 for ; Sun, 17 Dec 2023 11:49:13 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.intel.com Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=linux.intel.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=intel.com header.i=@intel.com header.b="MTc5dGZx" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1702813753; x=1734349753; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=pAB6UHpZ1jFyYGw9nUTrbNAF8ShhFcEIi6VVWcYmYi8=; b=MTc5dGZxMb7XY7HVHQxYs0F7qXvzfrH2z1zd/VY0VU6L1v+SODX5L4ug 6KtZvFjfD2BTZceOX+qCx+L/0qF9UGkCpnfk1cd6SZELoc04Ol/wdHRQu /z4KzXhTu9E7FLMNOxvDQSCu3lCTOz4Rqx0KVn/VnLeHFpc2Z3Vd+FU5E FaCU+SffBy6XIOgyXwgceTNgTy/lwZ7bBdzv6iDJmIHvH9hklI011oP4W sycBTEt8hR6yat2NkkA7chZOZO7OMvfcVVRfWJC+uUiKdryxzR5pRiMIg 50bUQpm/TjPG5UQfQlpAK7TCcpQK0iZbursikNtiKhPM1SquR5MdGMfEz w==; X-IronPort-AV: E=McAfee;i="6600,9927,10926"; a="2599469" X-IronPort-AV: E=Sophos;i="6.04,283,1695711600"; d="scan'208";a="2599469" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmvoesa104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Dec 2023 03:49:13 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10926"; a="751454178" X-IronPort-AV: E=Sophos;i="6.04,283,1695711600"; d="scan'208";a="751454178" Received: from ply01-vm-store.bj.intel.com ([10.238.153.201]) by orsmga006.jf.intel.com with ESMTP; 17 Dec 2023 03:49:09 -0800 From: Ethan Zhao To: bhelgaas@google.com, baolu.lu@linux.intel.com, dwmw2@infradead.org, will@kernel.org, robin.murphy@arm.com, lukas@wunner.de Cc: linux-pci@vger.kernel.org, iommu@lists.linux.dev, linux-kernel@vger.kernel.org Subject: [PATCH v3 1/2] PCI: make pci_dev_is_disconnected() helper public for Date: Sun, 17 Dec 2023 06:49:01 -0500 Message-Id: <20231217114902.3836260-2-haifeng.zhao@linux.intel.com> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20231217114902.3836260-1-haifeng.zhao@linux.intel.com> References: <20231217114902.3836260-1-haifeng.zhao@linux.intel.com> Precedence: bulk X-Mailing-List: iommu@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Make pci_dev_is_disconnected() public so that it can be called from Intel vt-d driver to quick fix/workaround the SURPPRISE_REMOVAL unplug hang issue for those ATS capable devices on PCIe switch downstream ports. Tested-by: Haorong Ye Signed-off-by: Ethan Zhao --- drivers/pci/pci.h | 5 ----- include/linux/pci.h | 5 +++++ 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/pci/pci.h b/drivers/pci/pci.h index 5ecbcf041179..75fa2084492f 100644 --- a/drivers/pci/pci.h +++ b/drivers/pci/pci.h @@ -366,11 +366,6 @@ static inline int pci_dev_set_disconnected(struct pci_dev *dev, void *unused) return 0; } -static inline bool pci_dev_is_disconnected(const struct pci_dev *dev) -{ - return dev->error_state == pci_channel_io_perm_failure; -} - /* pci_dev priv_flags */ #define PCI_DEV_ADDED 0 #define PCI_DPC_RECOVERED 1 diff --git a/include/linux/pci.h b/include/linux/pci.h index 60ca768bc867..869f2ec97a84 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h @@ -2503,6 +2503,11 @@ static inline struct pci_dev *pcie_find_root_port(struct pci_dev *dev) return NULL; } +static inline bool pci_dev_is_disconnected(const struct pci_dev *dev) +{ + return dev->error_state == pci_channel_io_perm_failure; +} + void pci_request_acs(void); bool pci_acs_enabled(struct pci_dev *pdev, u16 acs_flags); bool pci_acs_path_enabled(struct pci_dev *start, -- 2.31.1