Thread (26 messages) flat view 26 messages, 3 authors, 2012-04-05
STALE5271d

[PATCH v2 1/3] PATA host controller driver for ep93xx

From: Rafal Prylowski <hidden>
Date: 2012-04-04 12:40:34
Also in: linux-ide

On 2012-04-03 22:08, Arnd Bergmann wrote:
quoted
quoted
+static void ep93xx_pata_wait_for_iordy(void __iomem *base)
+{
+     unsigned long deadline = jiffies + msecs_to_jiffies(1000);
+     while (!ep93xx_pata_check_iordy(base) &&
+             time_is_before_jiffies(deadline))
+             cpu_relax();
+}
Much better for a delay than the previous version. However, it's
still a busy wait, which is bad for realtime behavior, especially
since this can potentially take many milliseconds. If possible,
it should have an msleep() or at least cond_resched() instead of
the cpu_relax(). Obviously that will only work when no spinlocks
are held.
Unfortunately, we can't use msleep() or cond_resched() here
- ep93xx_pata_wait_for_iordy() is called from interrupt handler.

Thanks,
RP
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help