From: linas@austin.ibm.com (Linas Vepstas)
To: Hidetoshi Seto <seto.hidetoshi@jp.fujitsu.com>
Cc: Greg KH <greg@kroah.com>,
Linux Kernel list <linux-kernel@vger.kernel.org>,
linux-ia64@vger.kernel.org, linux-pci@atrey.karlin.mff.cuni.cz
Subject: Re: [PATCH 1/6] PCIERR : interfaces for synchronous I/O error detection on driver
Date: Fri, 31 Mar 2006 22:01:17 +0000 [thread overview]
Message-ID: <20060331220117.GB23872@austin.ibm.com> (raw)
In-Reply-To: <44274FF0.406@jp.fujitsu.com>
On Mon, Mar 27, 2006 at 11:37:36AM +0900, Hidetoshi Seto wrote:
> - State check would be architecture dependent routine work.
I read through your patches. You are proposing a very different
way of handling PCI errors than the pci_error_handlers API.
It seems to be much more invasive, and I don't understand why
its needed or how its better. Let me be specific:
In the mpt code you have a function called pciras_readl()
that tries to perform an error-free read by retrying the read:
do {
pcierr_clear(&cookie, ioc->pcidev);
val = ioread32(addr);
status = pcierr_read(&cookie);
} while(status && (--retries > 0));
Why not create special arch/ia_64 readl routine to do this?
In that case, other device drivers would get the benefit of
the retry-on-error type read.
Now, you probably shouldn't put this into the default readl
routine, since some devices do peculiar things if the same
register is read repeatedly.
Next, I notice that if the repeated read fails, then
schedule_work(&mptbase_rstTask);
is called. This seems to be exactly the kind of action
that the pci_error_handlers API was meant to provide:
if there is a pci read error that cannot be trivially
recovered, then the error_detected() &c. routines would
be called. The mpt device driver would then initiate
a mptbase_rstTask upon one of these callbacks.
Thus, in the ia64 code, if a repeated readl fails,
then the ia64 reset task calls the device drivers
error_detected() routine, followed by the drivers's
link_reset() routine, followed by the resume() routine.
For the mpt, it would probably be resume() that was
a wrapper around mptbase_rstTask(). Wouldn't this
work just as well?
--linas
next prev parent reply other threads:[~2006-03-31 22:01 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-03-22 8:38 [PATCH] PCIERR : interfaces for synchronous I/O error detection on Hidetoshi Seto
2006-03-22 21:01 ` [PATCH] PCIERR : interfaces for synchronous I/O error detection on driver Greg KH
2006-03-24 7:47 ` [PATCH 1/6] PCIERR : interfaces for synchronous I/O error detection Hidetoshi Seto
2006-03-24 23:43 ` [PATCH 1/6] PCIERR : interfaces for synchronous I/O error detection on driver Linas Vepstas
2006-03-27 2:37 ` [PATCH 1/6] PCIERR : interfaces for synchronous I/O error detection Hidetoshi Seto
2006-03-31 22:01 ` Linas Vepstas [this message]
2006-04-03 4:54 ` Hidetoshi Seto
2006-03-24 7:48 ` [PATCH 2/6] " Hidetoshi Seto
2006-03-24 7:49 ` [PATCH 3/6] " Hidetoshi Seto
2006-03-24 7:50 ` [PATCH 4/6] " Hidetoshi Seto
2006-03-24 7:51 ` [PATCH 5/6] " Hidetoshi Seto
2006-03-24 7:52 ` [PATCH 6/6] " Hidetoshi Seto
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=20060331220117.GB23872@austin.ibm.com \
--to=linas@austin.ibm.com \
--cc=greg@kroah.com \
--cc=linux-ia64@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@atrey.karlin.mff.cuni.cz \
--cc=seto.hidetoshi@jp.fujitsu.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