summaryrefslogtreecommitdiff
path: root/emulators/qemu/files/patch-dyngen.h
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2006-03-18 21:23:42 +0000
committerPav Lucistnik <pav@FreeBSD.org>2006-03-18 21:23:42 +0000
commitb56ad1448df9cd4f220225a8c951cde64671f5aa (patch)
tree6317e394b6fd6ffa40390811446d567021887102 /emulators/qemu/files/patch-dyngen.h
parentPuyos 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.h11
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) {