* Re: [PATCH 1/1] pata_it821x: fix lost interrupt with atapi devices [not found] ` <20070906013929.1621849d@the-village.bc.nu> @ 2007-09-17 5:00 ` Tejun Heo 2007-09-17 10:00 ` Jeff Garzik 2007-09-18 9:07 ` Alan Cox 0 siblings, 2 replies; 5+ messages in thread From: Tejun Heo @ 2007-09-17 5:00 UTC (permalink / raw) To: Alan Cox Cc: Mikael Pettersson, Jeff Norden, alan, linux-kernel, Albert CC Lee, IDE/ATA development list [cc'ing Albert and linux-ide] Alan Cox wrote: > /from the media. */ >> > + if (qc->nbytes < 2048) >> > + return -EOPNOTSUPP; >> > + >> > /* No ATAPI DMA in smart mode */ >> > if (itdev->smart) >> > return -EOPNOTSUPP; >> > >> >> This looks like a gross hack. Aren't you supposed to inspect >> the command instead and whitelist the ones you know are OK, >> like pata_pdc2027x.c and sata_promise.c do? > > It does seem to be about transfer size in the IT821x case not commands. > It may be to do with how we issue ATAPI command transfer sizes from high > up (patch went to Jeff) but for now this is definitely the right approach > > Reviewed-by: Alan Cox <alan@redhat.com> I wonder whether we should be using similar check in generic path too. We have quite a few cases where MWDMA ATAPI devices choking on commands with small transfer sizes. I don't think we'll experience significant performance regression with this applied and even if there is some, it's far better to have slightly slower working device. What do you guys think? -- tejun ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/1] pata_it821x: fix lost interrupt with atapi devices 2007-09-17 5:00 ` [PATCH 1/1] pata_it821x: fix lost interrupt with atapi devices Tejun Heo @ 2007-09-17 10:00 ` Jeff Garzik 2007-09-17 11:46 ` Tejun Heo 2007-09-18 9:07 ` Alan Cox 1 sibling, 1 reply; 5+ messages in thread From: Jeff Garzik @ 2007-09-17 10:00 UTC (permalink / raw) To: Tejun Heo Cc: Alan Cox, Mikael Pettersson, Jeff Norden, alan, linux-kernel, Albert CC Lee, IDE/ATA development list Tejun Heo wrote: > [cc'ing Albert and linux-ide] > > Alan Cox wrote: >> /from the media. */ >>> > + if (qc->nbytes < 2048) >>> > + return -EOPNOTSUPP; >>> > + >>> > /* No ATAPI DMA in smart mode */ >>> > if (itdev->smart) >>> > return -EOPNOTSUPP; >>> > >>> >>> This looks like a gross hack. Aren't you supposed to inspect >>> the command instead and whitelist the ones you know are OK, >>> like pata_pdc2027x.c and sata_promise.c do? >> It does seem to be about transfer size in the IT821x case not commands. >> It may be to do with how we issue ATAPI command transfer sizes from high >> up (patch went to Jeff) but for now this is definitely the right approach >> >> Reviewed-by: Alan Cox <alan@redhat.com> > > I wonder whether we should be using similar check in generic path too. > We have quite a few cases where MWDMA ATAPI devices choking on commands > with small transfer sizes. I don't think we'll experience significant > performance regression with this applied and even if there is some, it's > far better to have slightly slower working device. > > What do you guys think? Need to look at, or know, a standard profile of submitted commands. It's quite possible some high performance commands want this, where possible. Jeff ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/1] pata_it821x: fix lost interrupt with atapi devices 2007-09-17 10:00 ` Jeff Garzik @ 2007-09-17 11:46 ` Tejun Heo 2007-09-18 9:14 ` Alan Cox 0 siblings, 1 reply; 5+ messages in thread From: Tejun Heo @ 2007-09-17 11:46 UTC (permalink / raw) To: Jeff Garzik Cc: Alan Cox, Mikael Pettersson, Jeff Norden, alan, linux-kernel, Albert CC Lee, IDE/ATA development list Jeff Garzik wrote: > Tejun Heo wrote: >> [cc'ing Albert and linux-ide] >> >> Alan Cox wrote: >>> /from the media. */ >>>> > + if (qc->nbytes < 2048) >>>> > + return -EOPNOTSUPP; >>>> > + >>>> > /* No ATAPI DMA in smart mode */ >>>> > if (itdev->smart) >>>> > return -EOPNOTSUPP; >>>> > >>>> This looks like a gross hack. Aren't you supposed to inspect >>>> the command instead and whitelist the ones you know are OK, >>>> like pata_pdc2027x.c and sata_promise.c do? >>> It does seem to be about transfer size in the IT821x case not commands. >>> It may be to do with how we issue ATAPI command transfer sizes from high >>> up (patch went to Jeff) but for now this is definitely the right >>> approach >>> >>> Reviewed-by: Alan Cox <alan@redhat.com> >> >> I wonder whether we should be using similar check in generic path too. >> We have quite a few cases where MWDMA ATAPI devices choking on commands >> with small transfer sizes. I don't think we'll experience significant >> performance regression with this applied and even if there is some, it's >> far better to have slightly slower working device. >> >> What do you guys think? > > Need to look at, or know, a standard profile of submitted commands. It's > quite possible some high performance commands want this, where possible. Yeah, agreed. I'm quite confused what's going on with all these MWDMA failures and would really like to know what's broken. The reason can be one of the following two. 1. libata itself isn't doing anything wrong but using SCSI for mid and high level drivers are causing problems as more types of commands are used. 2. Mode programming for MWDMA is broken. This doesn't seem too likely as we're seeing MWDMA failures across different low level drivers but is still a possibility. However, it's now like drivers/ide drivers didn't have MWDMA problems. Some drives show similar behavior on IDE too. It's less noticeable because IDE is much quicker to downstep to PIO mode. libata EH logic definitely can use some improvements here. I think the correct thing to do regarding command DMA filtering is to follow what the other OS does. Apparently, that's all ATAPI device vendors test against. Thanks. -- tejun ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/1] pata_it821x: fix lost interrupt with atapi devices 2007-09-17 11:46 ` Tejun Heo @ 2007-09-18 9:14 ` Alan Cox 0 siblings, 0 replies; 5+ messages in thread From: Alan Cox @ 2007-09-18 9:14 UTC (permalink / raw) To: Tejun Heo Cc: Jeff Garzik, Alan Cox, Mikael Pettersson, Jeff Norden, alan, linux-kernel, Albert CC Lee, IDE/ATA development list On Mon, Sep 17, 2007 at 01:46:01PM +0200, Tejun Heo wrote: > failures and would really like to know what's broken. The reason can be > one of the following two. > > 1. libata itself isn't doing anything wrong but using SCSI for mid and > high level drivers are causing problems as more types of commands are used. > > 2. Mode programming for MWDMA is broken. This doesn't seem too likely > as we're seeing MWDMA failures across different low level drivers but is > still a possibility. 3 and 4 3. Libata is wrong (it is in places) 4. Old IDE uses DMA much less for ATAPI especially ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/1] pata_it821x: fix lost interrupt with atapi devices 2007-09-17 5:00 ` [PATCH 1/1] pata_it821x: fix lost interrupt with atapi devices Tejun Heo 2007-09-17 10:00 ` Jeff Garzik @ 2007-09-18 9:07 ` Alan Cox 1 sibling, 0 replies; 5+ messages in thread From: Alan Cox @ 2007-09-18 9:07 UTC (permalink / raw) To: Tejun Heo Cc: Alan Cox, Mikael Pettersson, Jeff Norden, alan, linux-kernel, Albert CC Lee, IDE/ATA development list On Mon, Sep 17, 2007 at 07:00:03AM +0200, Tejun Heo wrote: > I wonder whether we should be using similar check in generic path too. > We have quite a few cases where MWDMA ATAPI devices choking on commands > with small transfer sizes. I don't think we'll experience significant > performance regression with this applied and even if there is some, it's > far better to have slightly slower working device. > > What do you guys think? I think to start with someone should fix the ATAPI state machine. Stick a BUG() in the driver if dma start is called when the atapi command data size is zero Alan ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2007-09-18 9:15 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <200709041607.l84G7KsT032647@norden.math.tntech.edu>
[not found] ` <18141.42848.537873.349518@alkaid.it.uu.se>
[not found] ` <20070906013929.1621849d@the-village.bc.nu>
2007-09-17 5:00 ` [PATCH 1/1] pata_it821x: fix lost interrupt with atapi devices Tejun Heo
2007-09-17 10:00 ` Jeff Garzik
2007-09-17 11:46 ` Tejun Heo
2007-09-18 9:14 ` Alan Cox
2007-09-18 9:07 ` Alan Cox
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).