From: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
To: Jens Axboe <axboe@suse.de>
Cc: Jeff Garzik <jgarzik@pobox.com>, Linux IDE <linux-ide@vger.kernel.org>
Subject: Re: libata vs ATAPI
Date: Thu, 14 Oct 2004 23:15:21 +0200 [thread overview]
Message-ID: <58cb370e04101414157605d9a@mail.gmail.com> (raw)
In-Reply-To: <58cb370e04101412196d5a5c87@mail.gmail.com>
On Thu, 14 Oct 2004 21:19:25 +0200, Bartlomiej Zolnierkiewicz
<bzolnier@gmail.com> wrote:
>
>
> On Thu, 14 Oct 2004 09:13:13 +0200, Jens Axboe <axboe@suse.de> wrote:
> > On Tue, Oct 12 2004, Bartlomiej Zolnierkiewicz wrote:
> > > > libata enables DMA at the maximum level supported by both the device and
> > > > host controller. I definitely want to do this by default.
> > >
> > > Me too but I suppose that there are many devices which don't like it
> > > (otherwise restrictions in ide-cd and ide-scsi make no sense).
> > >
> > > Jens?
> >
> > There's no precedens for doing > 128KiB on ATAPI in Linux. Recently Pat
> > at Iomega tested 512/1024KiB requests and it worked fine. So if the
> > device works, we should be golden...
>
> Cool...
>
> Jeff, I added arbitrary size ATAPI PIO support and it didn't help :(
> (still empty info from SCSI layer)
>
> Patch below:
It has a small bug...
> diff -Nru a/drivers/scsi/libata-core.c b/drivers/scsi/libata-core.c
> --- a/drivers/scsi/libata-core.c 2004-10-14 21:18:29 +02:00
> +++ b/drivers/scsi/libata-core.c 2004-10-14 21:18:29 +02:00
> @@ -2223,11 +2223,48 @@
> kunmap(page);
> }
>
> -static void atapi_pio_sector(struct ata_queued_cmd *qc)
> +static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
> +{
> + int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
> + struct scatterlist *sg = qc->sg;
> + struct ata_port *ap = qc->ap;
> + struct page *page;
> + unsigned char *buf;
> + unsigned int count;
> +
> + if (qc->curbytes == qc->nbytes - bytes)
> + ap->pio_task_state = PIO_ST_LAST;
> +
> +next_sg:
> + sg = &sg[qc->cursg];
> + count = min(sg_dma_len(sg) - qc->cursg_ofs, bytes);
page = sg->page;
should be here
I also found the real bug (feature?): ata_scsi_rbuf_get() clears
INQUIRY buffer for ATAPI when called from atapi_qc_complete().
With the patch below INQUIRY w/ DMA works just fine for me
("Vendor" and "Model" are correctly reported).
Now time for REPORT_LUNS...
[libata] fix INQUIRY command handling for ATAPI
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
diff -Nru a/drivers/scsi/libata-scsi.c b/drivers/scsi/libata-scsi.c
--- a/drivers/scsi/libata-scsi.c 2004-10-14 23:04:45 +02:00
+++ b/drivers/scsi/libata-scsi.c 2004-10-14 23:04:45 +02:00
@@ -895,7 +895,6 @@
buflen = cmd->request_bufflen;
}
- memset(buf, 0, buflen);
*buf_out = buf;
return buflen;
}
@@ -944,6 +943,7 @@
struct scsi_cmnd *cmd = args->cmd;
buflen = ata_scsi_rbuf_get(cmd, &rbuf);
+ memset(rbuf, 0, buflen);
rc = actor(args, rbuf, buflen);
ata_scsi_rbuf_put(cmd);
next prev parent reply other threads:[~2004-10-14 21:15 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-10-12 20:21 libata vs ATAPI Bartlomiej Zolnierkiewicz
2004-10-12 20:50 ` Jeff Garzik
2004-10-12 21:17 ` Bartlomiej Zolnierkiewicz
2004-10-12 21:22 ` Jeff Garzik
2004-10-12 21:36 ` Bartlomiej Zolnierkiewicz
2004-10-12 21:45 ` Jeff Garzik
2004-10-12 23:03 ` Bartlomiej Zolnierkiewicz
2004-10-15 13:13 ` Jens Axboe
2004-10-15 17:17 ` Jeff Garzik
2004-10-12 21:30 ` Jeff Garzik
2004-10-12 21:39 ` Bartlomiej Zolnierkiewicz
2004-10-12 21:46 ` Jeff Garzik
2004-10-14 7:13 ` Jens Axboe
2004-10-14 19:19 ` Bartlomiej Zolnierkiewicz
2004-10-14 21:15 ` Bartlomiej Zolnierkiewicz [this message]
2004-10-15 5:00 ` Jeff Garzik
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=58cb370e04101414157605d9a@mail.gmail.com \
--to=bzolnier@gmail.com \
--cc=axboe@suse.de \
--cc=jgarzik@pobox.com \
--cc=linux-ide@vger.kernel.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;
as well as URLs for NNTP newsgroup(s).