mirror of https://github.com/xemu-project/xemu.git
2.6 kernel compile fix
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@654 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
00af2b2680
commit
73bdea1951
|
@ -34,9 +34,14 @@
|
||||||
#ifdef USE_CODE_COPY
|
#ifdef USE_CODE_COPY
|
||||||
#include <asm/ldt.h>
|
#include <asm/ldt.h>
|
||||||
#include <linux/unistd.h>
|
#include <linux/unistd.h>
|
||||||
|
#include <linux/version.h>
|
||||||
|
|
||||||
_syscall3(int, modify_ldt, int, func, void *, ptr, unsigned long, bytecount)
|
_syscall3(int, modify_ldt, int, func, void *, ptr, unsigned long, bytecount)
|
||||||
|
|
||||||
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 5, 66)
|
||||||
|
#define modify_ldt_ldt_s user_desc
|
||||||
#endif
|
#endif
|
||||||
|
#endif /* USE_CODE_COPY */
|
||||||
|
|
||||||
CPUX86State *cpu_x86_init(void)
|
CPUX86State *cpu_x86_init(void)
|
||||||
{
|
{
|
||||||
|
|
|
@ -884,9 +884,14 @@ void test_xchg(void)
|
||||||
|
|
||||||
#include <asm/ldt.h>
|
#include <asm/ldt.h>
|
||||||
#include <linux/unistd.h>
|
#include <linux/unistd.h>
|
||||||
|
#include <linux/version.h>
|
||||||
|
|
||||||
_syscall3(int, modify_ldt, int, func, void *, ptr, unsigned long, bytecount)
|
_syscall3(int, modify_ldt, int, func, void *, ptr, unsigned long, bytecount)
|
||||||
|
|
||||||
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 5, 66)
|
||||||
|
#define modify_ldt_ldt_s user_desc
|
||||||
|
#endif
|
||||||
|
|
||||||
uint8_t seg_data1[4096];
|
uint8_t seg_data1[4096];
|
||||||
uint8_t seg_data2[4096];
|
uint8_t seg_data2[4096];
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue