Re: [Patch] fix MTD CFI/LPDDR flash driver huge latency bug

From: Andrew Morton
Date: Fri Mar 12 2010 - 17:24:49 EST


On Sat, 06 Mar 2010 17:48:57 +0100
Stefani Seibold <stefani@xxxxxxxxxxx> wrote:

> This patch fix a huge latency problem in the MTD CFI and LPDDR flash
> drivers.
>
> The use of a memcpy() during a spinlock operation will cause very long
> thread context switch delays if the flash chip bandwidth is low and the
> data to be copied large, because a spinlock will disable preemption.
>
> For example: A flash with 6,5 MB/s bandwidth will cause under ubifs,
> which request sometimes 128 KB (the flash erase size), a preemption
> delay of 20 milliseconds. High priority threads will not be served
> during this time, regardless whether this threads access the flash or
> not. This behavior breaks real time.
>
> The patch change all the use of spin_lock operations for xxxx->mutex
> into mutex operations, which is exact what the name says and means.
>
> There is no performance regression since the mutex is normally not
> acquired.

hm, big scary patch. Are you sure this mutex is never taken from
atomic or irq contexts? Is it ully tested with all relevant debug options
and lockdep enabled?


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