[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <adawrwhwyiq.fsf@roland-alpha.cisco.com>
Date: Thu, 08 Apr 2010 12:10:53 -0700
From: Roland Dreier <rdreier@...co.com>
To: Yinghai Lu <yinghai@...nel.org>
Cc: Jesse Barnes <jbarnes@...tuousgeek.org>,
Chris Wright <chrisw@...s-sol.org>, David.Woodhouse@...el.com,
fenghua.yu@...el.com, linux-kernel@...r.kernel.org,
linux-pci@...r.kernel.org, iommu@...ts.linux-foundation.org
Subject: Re: [PATCH 4/6] pci/dmar/sriov: use physfn to search drhd for VF
> +#ifdef CONFIG_PCI_IOV
> + if (dev->is_virtfn)
> + dev = dev->physfn;
> +#endif
Seems we would prefer to avoid this ifdef... if we had a function like
struct pci_dev *pci_physfn(struct pci_dev *virtfn)
as an inline in <linux/pci.h> that just returns NULL if PCI_IOV is not
enabled, then we could write this as
if (dev->is_virtfn)
dev = pci_physfn(dev)
without any #ifdef.
--
Roland Dreier <rolandd@...co.com> || For corporate legal information go to:
http://www.cisco.com/web/about/doing_business/legal/cri/index.html
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists