linux-ide.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Execute from CF causes segmentation faults
@ 2005-12-19  0:47 James Steward
  2005-12-20 12:52 ` Tejun Heo
  0 siblings, 1 reply; 18+ messages in thread
From: James Steward @ 2005-12-19  0:47 UTC (permalink / raw)
  To: 'linux-ide@vger.kernel.org'

G'day all,

The message below is a response from Russell King on the arm 
linux mailing lists regarding a problem I encountered, and as
it turns out has been encountered before.  I'm not sure if anyone
from the IDE development group is working on this but as it is
more ide specific it may be best handled by some clever guru 
from this mail list. 

The symptom I see is that executing code from a CF disk causes
SEGVs and other nasties.  The workaround is to add a kernel
command line arg "cachepolicy=writethrough".  This is seen as a
bit of a bandaid and not a "good" solution.

Could someone please take a look?

Regards,
James.


On Thu, Dec 01, 2005 at 01:44:59PM +1300, Charles Manning wrote:
> Something that confuses me lightly is why this problem should exist at
> all.
>
> It seems that the problem is caused by stale data in the cache.
> Surely cache data should never be stale (ie. Anything in the cache
> should be current).

No.  I think what is happening is:
* the page we submit to the block layer has some cache lines already
  associated with the kernel mapping.
* the IDE driver uses PIO to read from CF and hits these cache lines
  making them dirty.
* the page is then mapped into userspace via a page fault.
* userspace reads the page.  Because some of the data is sitting in
  the cache corresponding with the kernel mapping of the page,
  userspace doesn't see the up to date data until later.

> It also seems odd to me that this requires fixes at the block driver
> level. I'd have thought this would get resolved at the page cache
> level, or fs level at absolute lowest.

If you do it there, you hurt DMA performance.  The DMA model ensures
cache coherency.  The IDE PIO IO model does not.

Basically, the problem stems from IDE PIO IO not providing the same
cache guarantees as other block device drivers do. 

^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2006-01-09  9:16 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-12-19  0:47 Execute from CF causes segmentation faults James Steward
2005-12-20 12:52 ` Tejun Heo
2005-12-20 16:23   ` Bartlomiej Zolnierkiewicz
2005-12-21  9:48     ` Tejun Heo
2005-12-21 14:00       ` [PATCH] ide: add dcache flushing after PIO Tejun Heo
2005-12-21 14:03         ` Russell King
2005-12-21 14:43           ` Tejun Heo
2005-12-21 15:57             ` Bartlomiej Zolnierkiewicz
2005-12-21 16:00               ` Tejun Heo
2005-12-21 17:54               ` Russell King
2006-01-07 17:06                 ` Russell King
2006-01-07 20:17                   ` Bartlomiej Zolnierkiewicz
2006-01-07 21:22                     ` Russell King
2006-01-07 22:41                       ` Bartlomiej Zolnierkiewicz
2006-01-08  0:50                         ` james
2006-01-09  9:08                         ` Russell King
2006-01-09  9:16                           ` Tejun Heo
2005-12-21 15:01     ` Execute from CF causes segmentation faults Russell King

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).