suppose I'm writing to a RAM location on a Core Duo system through L1/L2 cache.

Suppose I am going to write to a persistent location in RAM and panic Linux kernel soon after that. The location is persistent meaning that it won't be re-inited during CPU reboot and will be picked up after reboot.

Will Linux flush CPU cache as a part of reboot/panic?

Will the CPU flush cache before rebooting?

Or should I do that manually? How?

Update: my cache is not write-through.

The question is, does the CPU spec define this behavior?

link|improve this question

68% accept rate
feedback

3 Answers

Probably the most appropriate way to do this would be to mark the page containing the persistent location(s) as non-cacheable. That way writes to the persistent location(s) would always bypass the cache (effectively write-through). Of course it may be that your cache is write-through anyway, so this may be redundant - you should check this first.

link|improve this answer
yes, but this affects performance – n-alexander Dec 3 '10 at 16:22
@n-alexander: only for this one page - surely you don't have persistent data that is also performance-critical ? – Paul R Dec 3 '10 at 16:28
unfortunately, this is exactly what I have – n-alexander Dec 3 '10 at 17:13
feedback

The cache may not be flushed because a system diagnostic or debugger may need to be run by a user, system engineer or IT support person to diagnose and dump the computer state. The cache may be flushed at startup or not and this depends on the type and version of operating system, programming language and application in use at the event. It may be a selectable option (from any BIOS) at start up time but It would likely be initialized at poweron but not necessarily at warm restart if available.

link|improve this answer
not sure I understand how app/language come into play, or diagnostic tools.. We're talking memory cache, not file cache, right? – n-alexander Dec 3 '10 at 16:22
feedback

I guess this might come in handy:) http://lxr.linux.no/#linux+v2.6.30/arch/x86/kernel/reboot.c

link|improve this answer
thanks, this is interesting, but this covers Linux controlled reboot. Which is part of my problem. Another part is HW-initiated reboots – n-alexander Dec 3 '10 at 16:20
from the abose source, you can see that different methods for rebooting might be used. Some will reset the CPU on a low-level, some will not. So my answer to your question would be "it depends":) – Quamis Dec 4 '10 at 12:31
Personally I would also expect the BIOS to flush the cache during restart, so the system would always start in the same predictable state... – Quamis Dec 4 '10 at 12:33
me too, but I need to know. Right now I don't even know if it's CPU feature or BIOS or if it should be done by SW and then not all kinds of reboot will be supported – n-alexander Dec 6 '10 at 9:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.