[host] add store fence to shm writes as we are using writecombine

This commit is contained in:
Geoffrey McRae 2017-12-28 15:41:37 +11:00
parent e09d7f0ad0
commit 59fa025292

View File

@ -292,6 +292,7 @@ bool Service::Process()
// update the flags // update the flags
INTERLOCKED_AND8((volatile char *)flags, KVMFR_HEADER_FLAG_RESTART); INTERLOCKED_AND8((volatile char *)flags, KVMFR_HEADER_FLAG_RESTART);
INTERLOCKED_OR8 ((volatile char *)flags, updateFlags); INTERLOCKED_OR8 ((volatile char *)flags, updateFlags);
_mm_sfence();
return true; return true;
} }