Re: RT 45-01: CF Card read: High latency?

From: P
Date: Mon Apr 11 2005 - 08:04:47 EST


I handled this issue by precaching all my files (15MB),
from my readonly root filesystem.

find / -type f |
grep -v ^/boot | #kernel is > 1MB and never read so don't put in cache
while read file; do
dd bs=32k if="$file" of=/dev/null 2>/dev/null
done

Pádraig.
-
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/