From: James Bottomley <James.Bottomley@HansenPartnership.com>
To: Joe Perches <joe@perches.com>
Cc: linux-kernel@vger.kernel.org, "Adam Radford" <linuxraid@amcc.com>,
"Adaptec OEM Raid Solutions" <aacraid@adaptec.com>,
"Rik Faith" <faith@cs.unc.edu>,
"Neela Syam Kolli" <megaraidlinux@lsi.com>,
"Willem Riede" <osst@riede.org>,
"Kai Mäkisara" <Kai.Makisara@kolumbus.fi>,
"Matthew Wilcox" <matthew@wil.cx>,
"Guennadi Liakhovetski" <g.liakhovetski@gmx.de>,
"Kurt Garloff" <garloff@suse.de>,
linux-scsi@vger.kernel.org, osst-users@lists.sourceforge.net
Subject: Re: [PATCH 14/19] drivers/scsi: Use PCI_VDEVICE
Date: Sat, 27 Jun 2009 12:20:35 -0500 [thread overview]
Message-ID: <1246123235.3990.15.camel@mulgrave.site> (raw)
In-Reply-To: <079fbc10b41dd4b7f0d381b7e969134184652c95.1245906152.git.joe@perches.com>
On Wed, 2009-06-24 at 22:13 -0700, Joe Perches wrote:
> Signed-off-by: Joe Perches <joe@perches.com>
OK, so there's no description whatsoever how am I supposed to divine the
reasons for doing this?
Because if I look at an example:
> --- a/drivers/scsi/3w-9xxx.c
> +++ b/drivers/scsi/3w-9xxx.c
> @@ -2278,14 +2278,10 @@ out_disable_device:
>
> /* PCI Devices supported by this driver */
> static struct pci_device_id twa_pci_tbl[] __devinitdata = {
> - { PCI_VENDOR_ID_3WARE, PCI_DEVICE_ID_3WARE_9000,
> - PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
> - { PCI_VENDOR_ID_3WARE, PCI_DEVICE_ID_3WARE_9550SX,
> - PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
> - { PCI_VENDOR_ID_3WARE, PCI_DEVICE_ID_3WARE_9650SE,
> - PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
> - { PCI_VENDOR_ID_3WARE, PCI_DEVICE_ID_3WARE_9690SA,
> - PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
> + { PCI_VDEVICE(3WARE, PCI_DEVICE_ID_3WARE_9000), 0},
> + { PCI_VDEVICE(3WARE, PCI_DEVICE_ID_3WARE_9550SX), 0},
> + { PCI_VDEVICE(3WARE, PCI_DEVICE_ID_3WARE_9650SE), 0},
> + { PCI_VDEVICE(3WARE, PCI_DEVICE_ID_3WARE_9690SA), 0},
It appears to take PCI matching on vendor device with any subvendor,
device and reproduce the results with a macro, which, for good measure
pastes PCI_VENDOR_ID on to the first argument but *doesn't* paste
PCI_DEVICE_ID on to the second?
So it transforms a relatively opaque initialiser which most people would
have to look up in pci.h into another relatively opaque initialiser
indirected via a macro, so now I have to look up both the structure and
the macro to figure out what's going on.
If that's all it does, I'm having a hard time seeing any actual
improvement here.
James
next prev parent reply other threads:[~2009-06-27 17:20 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <cover.1245906151.git.joe@perches.com>
2009-06-25 5:13 ` [PATCH 14/19] drivers/scsi: Use PCI_VDEVICE Joe Perches
2009-06-27 17:20 ` James Bottomley [this message]
2009-06-27 19:53 ` Joe Perches
2009-06-27 20:56 ` James Bottomley
2009-06-28 1:25 ` Joe Perches
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1246123235.3990.15.camel@mulgrave.site \
--to=james.bottomley@hansenpartnership.com \
--cc=Kai.Makisara@kolumbus.fi \
--cc=aacraid@adaptec.com \
--cc=faith@cs.unc.edu \
--cc=g.liakhovetski@gmx.de \
--cc=garloff@suse.de \
--cc=joe@perches.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=linuxraid@amcc.com \
--cc=matthew@wil.cx \
--cc=megaraidlinux@lsi.com \
--cc=osst-users@lists.sourceforge.net \
--cc=osst@riede.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox