linux-ide.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Mark Lord <liml@rtr.ca>
To: Tejun Heo <htejun@gmail.com>
Cc: jeff@garzik.org, linux-ide@vger.kernel.org,
	alan@lxorguk.ukuu.org.uk, kngregertsen@norway.atmel.com,
	sonic.adi@gmail.com, rmk@dyn-67.arm.linux.org.uk,
	alessandro.zummo@towertech.it, domen.puncer@telargo.com,
	akira2.iguchi@toshiba.co.jp, leoli@freescale.com
Subject: Re: [PATCH 5/9] libata: implement and use SHT initializers and ops inheritance
Date: Wed, 30 Jan 2008 23:04:59 -0500	[thread overview]
Message-ID: <47A148EB.10203@rtr.ca> (raw)
In-Reply-To: <47A142E3.3040508@gmail.com>

Tejun Heo wrote:
> Mark Lord wrote:
>> Tejun Heo wrote:
>>> libata lets low level drivers build scsi_host_template and
>>> ata_port_operations tables and register them with upper layers.  This
>>> allows low level drivers high level of flexibility but also burdens
>>> them with lots of boilerplate entries in thoes data structures.
>> ..
>>> diff --git a/drivers/ata/sata_mv.c b/drivers/ata/sata_mv.c
>>> index 939bf1d..c365650 100644
>>> --- a/drivers/ata/sata_mv.c
>>> +++ b/drivers/ata/sata_mv.c
>>> @@ -452,61 +452,28 @@ static void mv_channel_reset(struct mv_host_priv
>>> *hpriv, void __iomem *mmio,
>>>                   unsigned int port_no);
>>>  
>>>  static struct scsi_host_template mv5_sht = {
>>> -    .module            = THIS_MODULE,
>>> -    .name            = DRV_NAME,
>>> -    .ioctl            = ata_scsi_ioctl,
>>> -    .queuecommand        = ata_scsi_queuecmd,
>>> -    .can_queue        = ATA_DEF_QUEUE,
>>> -    .this_id        = ATA_SHT_THIS_ID,
>>> +    ATA_BASE_SHT(DRV_NAME),
>>>      .sg_tablesize        = MV_MAX_SG_CT / 2,
>> ..
>>
>> I think this will need to be re-diff'd against the latest sata_mv,
>> which now has NCQ support.
> 
> No problem at all.  Just push it into #upstream.  :-)
..

Oh, it is/was already there.  And I quoted the wrong lines from your patch.
Let's try again:
>
>  static struct scsi_host_template mv6_sht = {
> -       .module                 = THIS_MODULE,
> -       .name                   = DRV_NAME,
> -       .ioctl                  = ata_scsi_ioctl,
> -       .queuecommand           = ata_scsi_queuecmd,
> -       .can_queue              = ATA_DEF_QUEUE,
> -       .this_id                = ATA_SHT_THIS_ID,
> +       ATA_BASE_SHT(DRV_NAME),
>         .sg_tablesize           = MV_MAX_SG_CT / 2,
> -       .cmd_per_lun            = ATA_SHT_CMD_PER_LUN,
> -       .emulated               = ATA_SHT_EMULATED,
> -       .use_clustering         = 1,
> -       .proc_name              = DRV_NAME,
>         .dma_boundary           = MV_DMA_BOUNDARY,
> -       .slave_configure        = ata_scsi_slave_config,
> -       .slave_destroy          = ata_scsi_slave_destroy,
> -       .bios_param             = ata_std_bios_param,
>  };

That doesn't look correct.  :)
Shouldn't it be ATA_NCQ_SHT(DRV_NAME) there?

Cheers





  reply	other threads:[~2008-01-31  4:05 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-01-30  9:28 [PATCHSET libata-dev#upstream] clean up scsi_host_templates and ata_port_operations Tejun Heo
2008-01-30  9:28 ` [PATCH 1/9] libata: PCI device should be powered up before being accessed Tejun Heo
2008-02-01 20:44   ` Jeff Garzik
2008-02-11 19:24   ` Jeff Garzik
2008-01-30  9:28 ` [PATCH 2/9] libata: reorganize ata_port_operations Tejun Heo
2008-01-30  9:28 ` [PATCH 3/9] libata: implement and use ata_noop_irq_clear() Tejun Heo
2008-02-01 20:45   ` Jeff Garzik
2008-01-30  9:28 ` [PATCH 4/9] libata: normalize port_info, port_operations and sht tables Tejun Heo
2008-02-01 20:46   ` Jeff Garzik
2008-02-09  1:57     ` Tejun Heo
2008-02-04 14:24   ` Alan Cox
2008-02-09  6:11     ` Tejun Heo
2008-02-09  6:53       ` Tejun Heo
2008-01-30  9:28 ` [PATCH 5/9] libata: implement and use SHT initializers and ops inheritance Tejun Heo
2008-01-30 17:09   ` Mark Lord
2008-01-31  3:39     ` Tejun Heo
2008-01-31  4:04       ` Mark Lord [this message]
2008-01-31  4:12         ` Tejun Heo
2008-02-01 20:49   ` Jeff Garzik
2008-02-02  0:06     ` Tejun Heo
2008-01-30  9:29 ` [PATCH 6/9] make ata_pci_init_one() not use ops->irq_handler and pi->sht Tejun Heo
2008-01-30  9:29 ` [PATCH 7/9] libata: stop overloading port_info->private_data Tejun Heo
2008-02-04 14:26   ` Alan Cox
2008-02-09  2:07     ` Tejun Heo
2008-01-30  9:29 ` [PATCH 8/9] libata: kill port_info->sht and ->irq_handler Tejun Heo
2008-01-30  9:29 ` [PATCH 9/9] libata: make reset related methods proper port operations Tejun Heo
2008-02-01 20:52   ` Jeff Garzik
2008-01-30  9:49 ` How to verify sht-ops-conversion patch doesn't change anything Tejun Heo
2008-01-30  9:51 ` GIT tree available Tejun Heo
2008-01-31  8:29 ` [PATCHSET libata-dev#upstream] clean up scsi_host_templates and ata_port_operations Akira Iguchi
2008-02-09  1:55   ` Tejun Heo
2008-01-31  8:34 ` Akira Iguchi

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=47A148EB.10203@rtr.ca \
    --to=liml@rtr.ca \
    --cc=akira2.iguchi@toshiba.co.jp \
    --cc=alan@lxorguk.ukuu.org.uk \
    --cc=alessandro.zummo@towertech.it \
    --cc=domen.puncer@telargo.com \
    --cc=htejun@gmail.com \
    --cc=jeff@garzik.org \
    --cc=kngregertsen@norway.atmel.com \
    --cc=leoli@freescale.com \
    --cc=linux-ide@vger.kernel.org \
    --cc=rmk@dyn-67.arm.linux.org.uk \
    --cc=sonic.adi@gmail.com \
    /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;
as well as URLs for NNTP newsgroup(s).