Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S966025Ab3E2MbU (ORCPT ); Wed, 29 May 2013 08:31:20 -0400 Received: from nat28.tlf.novell.com ([130.57.49.28]:59883 "EHLO nat28.tlf.novell.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S965855Ab3E2MbT convert rfc822-to-8bit (ORCPT ); Wed, 29 May 2013 08:31:19 -0400 Message-Id: <51A6113302000078000D99A3@nat28.tlf.novell.com> X-Mailer: Novell GroupWise Internet Agent 12.0.2 Date: Wed, 29 May 2013 13:31:15 +0100 From: "Jan Beulich" To: "Bjorn Helgaas" , "Konrad Rzeszutek Wilk" Cc: "xen-devel" , Subject: [PATCH] xen-pciback: more uses of cached MSI-X capability offset Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 8BIT Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1067 Lines: 34 Signed-off-by: Jan Beulich --- drivers/xen/xen-pciback/pci_stub.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- 3.10-rc3/drivers/xen/xen-pciback/pci_stub.c +++ 3.10-rc3-xen-pciback-MSI-X-cap/drivers/xen/xen-pciback/pci_stub.c @@ -106,7 +106,7 @@ static void pcistub_device_release(struc else pci_restore_state(dev); - if (pci_find_capability(dev, PCI_CAP_ID_MSIX)) { + if (dev->msix_cap) { struct physdev_pci_device ppdev = { .seg = pci_domain_nr(dev->bus), .bus = dev->bus->number, @@ -371,7 +371,7 @@ static int pcistub_init_device(struct pc if (err) goto config_release; - if (pci_find_capability(dev, PCI_CAP_ID_MSIX)) { + if (dev->msix_cap) { struct physdev_pci_device ppdev = { .seg = pci_domain_nr(dev->bus), .bus = dev->bus->number, -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/