diff options
-rw-r--r-- | sys/powerpc/powerpc/syncicache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/powerpc/powerpc/syncicache.c b/sys/powerpc/powerpc/syncicache.c index df6c50f..12dd55c 100644 --- a/sys/powerpc/powerpc/syncicache.c +++ b/sys/powerpc/powerpc/syncicache.c @@ -94,5 +94,5 @@ __syncicache(void *from, int len) __asm __volatile ("icbi 0,%0" :: "r"(p)); p += CACHELINESIZE; } while ((len -= CACHELINESIZE) > 0); - __asm __volatile ("isync"); + __asm __volatile ("sync; isync"); } |