Displaying 9 results from an estimated 9 matches for "cpux86state".
2011 Feb 26
1
make world error
...first use in this function)
/usr/src/xen-4.0.1/tools/ioemu-dir/target-i386/kvm.c:243: error:
‘DESC_AVL_MASK’ undeclared (first use in this function)
/usr/src/xen-4.0.1/tools/ioemu-dir/target-i386/kvm.c: In function
‘kvm_getput_regs’:
/usr/src/xen-4.0.1/tools/ioemu-dir/target-i386/kvm.c:265: error:
‘CPUX86State’ has no member named ‘regs’
/usr/src/xen-4.0.1/tools/ioemu-dir/target-i386/kvm.c:265: error:
‘R_EAX’ undeclared (first use in this function)
/usr/src/xen-4.0.1/tools/ioemu-dir/target-i386/kvm.c:266: error:
‘CPUX86State’ has no member named ‘regs’
/usr/src/xen-4.0.1/tools/ioemu-dir/target-i386/kvm.c...
2011 Mar 23
4
[LLVMdev] Calling external functions failed on PowerPC
Hi, all
I have a trouble with calling external functions on PowerPC.
What I am doing is generating a LLVM IR first like this,
- x86
call void @helper_shack_flush(%struct.CPUX86State* %62) noinline, !flags !12
- ppc
call void @helper_shack_flush(%struct.CPUX86State* %62) noinline, !flags !10
After lowering above LLVM IR for x86 and ppc, it becomes:
- x86
%RAX<def> = MOV64ri <ga:@helper_shack_flush>
%RDI<def> = COPY %RBX
CALL64r %RAX<kill>, %R...
2016 Sep 25
0
How to enable the svm cpu flag inside a vm?
...virt-manager.py, virsh or the domain xml?
Hoping to avoid having to patch the source a such:
--- qemu-kvm-0.12.1.2.000/target-i386/helper.c 2009-12-29 21:46:34.000000000 +0100
+++ qemu-kvm-0.12.1.2/target-i386/helper.c 2016-09-25 16:35:02.984334623 +0200
@@ -1811,8 +1811,10 @@ void cpu_x86_cpuid(CPUX86State *env, uin
/* disable CPU features that KVM cannot support */
/* svm */
+/*
if (!kvm_nested)
*ecx &= ~CPUID_EXT3_SVM;
+*/
/* 3dnow */
*edx &= ~0xc0000000;
} else {
Regards,
Leonard.
--
mount -t li...
2016 Sep 23
2
How to enable the svm cpu flag inside a vm?
Hello,
I'm trying to get the Android Emulator to run inside a kvm vm on
CentOS-6. Apparently the latest Android Emulators cannot run without
hardware acceleration so I am trying to get the vm to see the svm cpu
flag.
Host:
$ grep model\ name /proc/cpuinfo | sort -u
model name : AMD Phenom(tm) II X4 965 Processor
$ grep svm /proc/cpuinfo | sort -u
flags : fpu vme de pse tsc msr pae mce cx8
2015 Oct 26
9
[PATCH 0/7] Hyper-V Synthetic interrupt controller
Hyper-V SynIC (synthetic interrupt controller) device
implementation.
The implementation contains:
* msr's support
* irq routing setup
* irq injection
* irq ack callback registration
* event/message pages changes tracking at Hyper-V exit
* Hyper-V test device to test SynIC by kvm-unit-tests
Andrey Smetanin (7):
standard-headers/x86: add Hyper-V SynIC constants
target-i386/kvm: Hyper-V
2015 Oct 26
9
[PATCH 0/7] Hyper-V Synthetic interrupt controller
Hyper-V SynIC (synthetic interrupt controller) device
implementation.
The implementation contains:
* msr's support
* irq routing setup
* irq injection
* irq ack callback registration
* event/message pages changes tracking at Hyper-V exit
* Hyper-V test device to test SynIC by kvm-unit-tests
Andrey Smetanin (7):
standard-headers/x86: add Hyper-V SynIC constants
target-i386/kvm: Hyper-V
2012 Oct 08
21
[PATCH 00/14] Remove old_portio users for memory region PIO mapping
When running on PowerPC, we don''t have native PIO support. There are a few hacks
around to enable PIO access on PowerPC nevertheless.
The most typical one is the isa-mmio device. It takes MMIO requests and converts
them to PIO requests on the (QEMU internal) PIO bus.
This however is not how real hardware works and it limits us in the ability to
spawn eventfd''s on PIO ports
2010 Aug 12
59
[PATCH 00/15] RFC xen device model support
Hi all,
this is the long awaited patch series to add xen device model support in
qemu; the main author is Anthony Perard.
Developing this series we tried to come up with the cleanest possible
solution from the qemu point of view, limiting the amount of changes to
common code as much as possible. The end result still requires a couple
of hooks in piix_pci but overall the impact should be very
2012 Oct 15
1
[QEMU PATCH v4] create struct for machine initialization arguments
...void xen_init_pv(QEMUMachineInitArgs *args)
{
+ const char *cpu_model = args->cpu_model;
+ const char *kernel_filename = args->kernel_filename;
+ const char *kernel_cmdline = args->kernel_cmdline;
+ const char *initrd_filename = args->initrd_filename;
X86CPU *cpu;
CPUX86State *env;
DriveInfo *dinfo;
diff --git a/hw/xilinx_zynq.c b/hw/xilinx_zynq.c
index fd46ba2..c55dafb 100644
--- a/hw/xilinx_zynq.c
+++ b/hw/xilinx_zynq.c
@@ -77,10 +77,13 @@ static inline void zynq_init_spi_flashes(uint32_t base_addr, qemu_irq irq)
}
-static void zynq_init(ram_addr_t ram_size,...