diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2006-03-18 21:23:42 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2006-03-18 21:23:42 +0000 |
commit | b56ad1448df9cd4f220225a8c951cde64671f5aa (patch) | |
tree | 6317e394b6fd6ffa40390811446d567021887102 /emulators/qemu/files/patch-dyngen.h | |
parent | Puyos are fancy smiling bubbles... But they can really be invading (diff) |
- Add Lonnie's usb host support patches and a bunch of other fixes mostly from
cvs, including a workaround for the -nographic crash.
PR: ports/94654
Submitted by: Juergen Lock <nox@jelal.kn-bremen.de> (maintainer)
Notes
Notes:
svn path=/head/; revision=157608
Diffstat (limited to 'emulators/qemu/files/patch-dyngen.h')
-rw-r--r-- | emulators/qemu/files/patch-dyngen.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/emulators/qemu/files/patch-dyngen.h b/emulators/qemu/files/patch-dyngen.h new file mode 100644 index 000000000000..09ab311dfdf6 --- /dev/null +++ b/emulators/qemu/files/patch-dyngen.h @@ -0,0 +1,11 @@ +# 1.9 +Index: qemu/dyngen.h +@@ -59,7 +59,7 @@ + { + unsigned long p; + +- p = start & ~(MIN_CACHE_LINE_SIZE - 1); ++ 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) { |