* [Qemu-devel] [PATCH] small fix for ppc icache_flush_range
@ 2006-03-03 8:02 Heikki Lindholm
0 siblings, 0 replies; only message in thread
From: Heikki Lindholm @ 2006-03-03 8:02 UTC (permalink / raw)
To: qemu-devel
[-- Attachment #1: Type: text/plain, Size: 115 bytes --]
There's a non-sense line in ppc icache_flush_range. This fixes it to
what was probably meant.
-- Heikki Lindholm
[-- Attachment #2: qemu-060303-ppcicache.patch --]
[-- Type: text/plain, Size: 382 bytes --]
--- dyngen.h.orig 2006-03-03 09:54:08.000000000 +0200
+++ dyngen.h 2006-03-03 09:54:43.000000000 +0200
@@ -59,7 +59,7 @@
{
unsigned long p;
- p = start & ~(MIN_CACHE_LINE_SIZE - 1);
+ start = start & ~(MIN_CACHE_LINE_SIZE - 1);
stop = (stop + MIN_CACHE_LINE_SIZE - 1) & ~(MIN_CACHE_LINE_SIZE - 1);
for (p = start; p < stop; p += MIN_CACHE_LINE_SIZE) {
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2006-03-04 6:25 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-03-03 8:02 [Qemu-devel] [PATCH] small fix for ppc icache_flush_range Heikki Lindholm
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).