From: matthieu castet <castet.matthieu@free.fr>
To: albertl@mail.com
Cc: Jeff Garzik <jeff@garzik.org>,
akpm@osdl.org, alan@lxorguk.ukuu.org.uk,
"linux-ide@vger.kernel.org" <linux-ide@vger.kernel.org>,
B.Zolnierkiewicz@elka.pw.edu.pl, htejun@gmail.com,
Linux Kernel <linux-kernel@vger.kernel.org>,
Unicorn Chang <uchang@tw.ibm.com>, Doug Maxey <dwm@maxeymade.com>
Subject: Re: + via-pata-controller-xfer-fixes.patch added to -mm tree
Date: Sun, 02 Jul 2006 12:32:40 +0200 [thread overview]
Message-ID: <44A7A0C8.80108@free.fr> (raw)
In-Reply-To: <44A78599.9060405@free.fr>
[-- Attachment #1: Type: text/plain, Size: 994 bytes --]
matthieu castet wrote:
> Hi Albert,
>
> Albert Lee wrote:
>
>> castet.matthieu@free.fr wrote:
>>
>>>
>>>> Could you please test the current libata-upstream tree and
>>>> turn on ATA_DEBUG and ATA_VERBOSE_DEBUG in include/linux/libata.h.
>>>>
>>>
>>> Is there a easy way to get libata-upstream tree ?
>>> Do I need to install git for that or there are some snapshots
>>> somewhere ?
>>>
>>>
>>
>>
>> Hi Matthieu,
>>
>> Tejun has a patch against 2.6.17:
>> http://home-tj.org/files/libata-tj-stable/libata-tj-2.6.17-20060625-1.tar.bz2
>>
>>
> I don't know if I did someting wrong, but it didn't apply cleanly.
> So I enable the trace on lastest -mm kernel and I disable the via quirk.
>
> But the printk in the interrupt handler takes some times and hides the
> altstatus delay.
>
> I will try to send you a trace, where I move the printk at the end of
> the interrupt handler.
>
>
After apllying the following patch to -mm, I got
http://castet.matthieu.free.fr/tmp/ata_log
Matthieu
[-- Attachment #2: test_trace --]
[-- Type: text/plain, Size: 2185 bytes --]
Index: linux-2.6.16/drivers/scsi/libata-core.c
===================================================================
--- linux-2.6.16.orig/drivers/scsi/libata-core.c 2006-07-02 10:32:33.000000000 +0200
+++ linux-2.6.16/drivers/scsi/libata-core.c 2006-07-02 10:38:03.000000000 +0200
@@ -4722,9 +4722,6 @@
{
u8 status, host_stat = 0;
- VPRINTK("ata%u: protocol %d task_state %d\n",
- ap->id, qc->tf.protocol, ap->hsm_task_state);
-
/* Check whether we are expecting interrupt in this state */
switch (ap->hsm_task_state) {
case HSM_ST_FIRST:
@@ -4780,6 +4777,9 @@
ap->ops->irq_clear(ap);
ata_hsm_move(ap, qc, status, 0);
+ VPRINTK("ata%u: protocol %d task_state %d\n",
+ ap->id, qc->tf.protocol, ap->hsm_task_state);
+
return 1; /* irq handled */
idle_irq:
@@ -4792,6 +4792,9 @@
return 1;
}
#endif
+ VPRINTK("ata%u: protocol %d task_state %d\n",
+ ap->id, qc->tf.protocol, ap->hsm_task_state);
+
return 0; /* irq not handled */
}
Index: linux-2.6.16/drivers/scsi/pata_via.c
===================================================================
--- linux-2.6.16.orig/drivers/scsi/pata_via.c 2006-07-01 19:38:41.000000000 +0200
+++ linux-2.6.16/drivers/scsi/pata_via.c 2006-07-01 19:38:54.000000000 +0200
@@ -324,7 +324,7 @@
continue;
if (!(qc->flags & ATA_QCFLAG_ACTIVE))
continue;
- if (qc->tf.command == ATA_CMD_SET_FEATURES &&
+ if (0 && qc->tf.command == ATA_CMD_SET_FEATURES &&
qc->tf.feature == SETFEATURES_XFER) {
/*
* With some ATAPI devices (CDR-6S48, ...), the
Index: linux-2.6.16/include/linux/libata.h
===================================================================
--- linux-2.6.16.orig/include/linux/libata.h 2006-07-01 19:37:51.000000000 +0200
+++ linux-2.6.16/include/linux/libata.h 2006-07-01 19:38:24.000000000 +0200
@@ -43,6 +43,8 @@
#undef ATA_DEBUG /* debugging output */
#undef ATA_VERBOSE_DEBUG /* yet more debugging output */
#undef ATA_IRQ_TRAP /* define to ack screaming irqs */
+#define ATA_DEBUG
+#define ATA_VERBOSE_DEBUG
#undef ATA_NDEBUG /* define to disable quick runtime checks */
#define ATA_ENABLE_PATA /* define to enable PATA support in some
* low-level drivers */
next prev parent reply other threads:[~2006-07-02 10:32 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <200606242214.k5OMEHCU005963@shell0.pdx.osdl.net>
2006-06-24 22:36 ` + via-pata-controller-xfer-fixes.patch added to -mm tree Jeff Garzik
2006-06-24 22:43 ` Jeff Garzik
2006-06-25 9:15 ` matthieu castet
2006-06-30 7:09 ` Albert Lee
2006-06-30 7:55 ` castet.matthieu
2006-06-30 8:26 ` Albert Lee
2006-07-02 8:36 ` matthieu castet
2006-07-02 10:32 ` matthieu castet [this message]
2006-07-02 12:46 ` Albert Lee
2006-07-02 13:06 ` matthieu castet
2006-07-02 14:17 ` Albert Lee
2006-06-30 10:03 ` Alan Cox
2006-07-02 13:59 ` Albert Lee
2006-06-24 23:17 ` Alan Cox
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=44A7A0C8.80108@free.fr \
--to=castet.matthieu@free.fr \
--cc=B.Zolnierkiewicz@elka.pw.edu.pl \
--cc=akpm@osdl.org \
--cc=alan@lxorguk.ukuu.org.uk \
--cc=albertl@mail.com \
--cc=dwm@maxeymade.com \
--cc=htejun@gmail.com \
--cc=jeff@garzik.org \
--cc=linux-ide@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=uchang@tw.ibm.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).