qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH KQEMU] Make kqemu compile with kernel 2.6.37


From: xtof pernod
Subject: [Qemu-devel] [PATCH KQEMU] Make kqemu compile with kernel 2.6.37
Date: Sat, 22 Jan 2011 11:21:20 +0100
User-agent: v8&2©He3tAh/0.4.0

Hello,

For those who still use kqemu (not all cpu's support kvm;), here is a
small patch that re-enable the init_MUTEX() macro, whose removal
was planed in 2009: see  https://lkml.org/lkml/2009/7/26/10

Signed-off-by: christophe pernod <address@hidden>
---
diff -up kqemu/kqemu-linux.c.ORG kqemu/kqemu-linux.c
--- kqemu/kqemu-linux.c.ORG     2009-05-31 00:34:10.000000000 +0200
+++ kqemu/kqemu-linux.c         2011-01-20 19:44:20.431688004 +0100
@@ -26,6 +27,7 @@
 #include <linux/ioctl.h>
 #include <linux/smp_lock.h>
 #include <linux/miscdevice.h>
+#include <linux/semaphore.h>
 #include <asm/atomic.h>
 #include <asm/processor.h>
 #include <asm/uaccess.h>
@@ -60,6 +62,10 @@ int lock_count;
 int page_alloc_count;
 #endif

+#ifndef init_MUTEX
+#define init_MUTEX(sem)         sema_init(sem, 1)
+#endif



--
XtoF.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]