lkml.org 
[lkml]   [2005]   [Jun]   [13]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH 07/10] IOCHK interface for I/O error handling/detecting
David Mosberger wrote:
>>>>>>On Fri, 10 Jun 2005 19:29:58 +0900, Hidetoshi Seto <seto.hidetoshi@jp.fujitsu.com> said:
>
> Hidetoshi> +#define ia64_poison_check(val) \
> Hidetoshi> +{ register unsigned long gr8 asm("r8"); \
> Hidetoshi> + asm volatile ("add %0=%1,r0" : "=r"(gr8) : "r"(val)); }
>
> >> I have only looked that this briefly and I didn't see off hand where you get
> >> the "r9=[r10]" sequence from --- I hope you're not relying on the compiler
> >> happening to generate this sequence!
>
> Hidetoshi> +static inline unsigned char
> Hidetoshi> +___ia64_readb (const volatile void __iomem *addr)
> Hidetoshi> +{
> Hidetoshi> + unsigned char val;
> Hidetoshi> +
> Hidetoshi> + val = *(volatile unsigned char __force *)addr;
> Hidetoshi> + ia64_poison_check(val);
> Hidetoshi> +
> Hidetoshi> + return val;
> Hidetoshi> +}
>
> Ah, I see now what you're trying to do. I think it's really a
> machine-check barrier that you want there.

Yes, thanks for your understanding.

> I'm doubtful whether this is the right approach, though: your
> ia64_poison_check() will cause _every single_ readX() operation to
> stall the CPU for 1,000+ cycles. Why not define an explicit
> iochk_barrier() instead? Then you could do things like this:
>
> a = readb(X);
> b = readb(Y);
> c = readb(Z);
> iochk_barrier(a + b + c);
>
> That is, if it's unimportant to know whether the read of X, Y, or Z
> caused the MCA, you can amortize the cost of iochk_barrier() over 3
> reads.

I'm also doubtful, I know it too costs... but I don't have any other
better idea. As far as I can figure out, using iochk_barrier() style
has difficulty like that:
- pain for driver maintainers.
They should be careful to make exact argument for barrier.
- arch-specific.
It will go against the spirit of iochk, "generic" interface.
- unenforceable.
You could forget it.
- it would be in form:
{
iocookie cookie;
iochk_clear(cookie, dev);
for(i=0;i<count;i++)
buf++ = readb(addr);
iochk_barrier(***);
iochk_read(cookie);
}
so it seems that iochk_barrier() is kind of something that should be
include in iochk_read(), but it would be a difficult hack.

In case of ppc64, their eeh_readX() already have nervous error check,
by comparing its result to -1 in every single operation. In fact,
I didn't mind the cost so seriously because there is a precedent.

However, I think such cycle-saving would be possible in "string version",
such as ioreadX_rep(). I'd like to postpone it as a future optimization.

> I'd probably make iochk_barrier() an out-of-line no-op assembly
> routine. The cost of two branches compared to stalling for hundreds
> of cycles is rather trivial.

Of course I agree to have such routine in proper header file, but it
would not help us to save CPU cycles if we don't have any other idea...
Or I'll just replace ia64_poison_check() to ia64_mca_barrier() or so.

Thanks,
H.Seto

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2005-06-13 08:59    [W:0.060 / U:0.420 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site