qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Heikki Lindholm <holindho@cs.helsinki.fi>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PATCH] small fix for ppc icache_flush_range
Date: Fri, 03 Mar 2006 10:02:01 +0200	[thread overview]
Message-ID: <4407F7F9.9050701@cs.helsinki.fi> (raw)

[-- 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) {

                 reply	other threads:[~2006-03-04  6:25 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4407F7F9.9050701@cs.helsinki.fi \
    --to=holindho@cs.helsinki.fi \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).