search for: vl_objs

Displaying 11 results from an estimated 11 matches for "vl_objs".

Did you mean: vl_objs+
2007 Dec 21
0
[Virtio-for-kvm] [PATCH 3/7] userspace virtio
...| 2 +- qemu/vl.c | 4 + 6 files changed, 185 insertions(+), 2 deletions(-) create mode 100644 qemu/hw/virtio-blk.c diff --git a/qemu/Makefile.target b/qemu/Makefile.target index 17ff6f2..535f4f5 100644 --- a/qemu/Makefile.target +++ b/qemu/Makefile.target @@ -464,7 +464,7 @@ VL_OBJS += rtl8139.o VL_OBJS+= hypercall.o # virtio devices -VL_OBJS += virtio.o virtio-net.o +VL_OBJS += virtio.o virtio-net.o virtio-blk.o ifeq ($(TARGET_BASE_ARCH), i386) # Hardware support diff --git a/qemu/hw/pc.c b/qemu/hw/pc.c index dde40c3..003d15d 100644 --- a/qemu/hw/pc.c +++ b/qemu/hw/pc...
2007 Dec 21
0
[Virtio-for-kvm] [PATCH 3/7] userspace virtio
...| 2 +- qemu/vl.c | 4 + 6 files changed, 185 insertions(+), 2 deletions(-) create mode 100644 qemu/hw/virtio-blk.c diff --git a/qemu/Makefile.target b/qemu/Makefile.target index 17ff6f2..535f4f5 100644 --- a/qemu/Makefile.target +++ b/qemu/Makefile.target @@ -464,7 +464,7 @@ VL_OBJS += rtl8139.o VL_OBJS+= hypercall.o # virtio devices -VL_OBJS += virtio.o virtio-net.o +VL_OBJS += virtio.o virtio-net.o virtio-blk.o ifeq ($(TARGET_BASE_ARCH), i386) # Hardware support diff --git a/qemu/hw/pc.c b/qemu/hw/pc.c index dde40c3..003d15d 100644 --- a/qemu/hw/pc.c +++ b/qemu/hw/pc...
2007 Dec 21
0
[Virtio-for-kvm] [PATCH 2/7] userspace virtio
...++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 188 insertions(+), 2 deletions(-) create mode 100644 qemu/hw/virtio-net.c diff --git a/qemu/Makefile.target b/qemu/Makefile.target index 8b5853b..17ff6f2 100644 --- a/qemu/Makefile.target +++ b/qemu/Makefile.target @@ -464,7 +464,7 @@ VL_OBJS += rtl8139.o VL_OBJS+= hypercall.o # virtio devices -VL_OBJS += virtio.o +VL_OBJS += virtio.o virtio-net.o ifeq ($(TARGET_BASE_ARCH), i386) # Hardware support diff --git a/qemu/hw/pc.h b/qemu/hw/pc.h index beb711c..ce1a1f3 100644 --- a/qemu/hw/pc.h +++ b/qemu/hw/pc.h @@ -142,4 +142,9 @@ voi...
2007 Dec 21
0
[Virtio-for-kvm] [PATCH 2/7] userspace virtio
...++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 188 insertions(+), 2 deletions(-) create mode 100644 qemu/hw/virtio-net.c diff --git a/qemu/Makefile.target b/qemu/Makefile.target index 8b5853b..17ff6f2 100644 --- a/qemu/Makefile.target +++ b/qemu/Makefile.target @@ -464,7 +464,7 @@ VL_OBJS += rtl8139.o VL_OBJS+= hypercall.o # virtio devices -VL_OBJS += virtio.o +VL_OBJS += virtio.o virtio-net.o ifeq ($(TARGET_BASE_ARCH), i386) # Hardware support diff --git a/qemu/hw/pc.h b/qemu/hw/pc.h index beb711c..ce1a1f3 100644 --- a/qemu/hw/pc.h +++ b/qemu/hw/pc.h @@ -142,4 +142,9 @@ voi...
2008 Jan 08
1
[PATCH] QEMU KVM balloon support
..._sync_shadow_with_user(kvm_context_t kvm); + /*! * \brief Create a memory alias * Index: kvm-userspace/qemu/Makefile.target =================================================================== --- kvm-userspace.orig/qemu/Makefile.target +++ kvm-userspace/qemu/Makefile.target @@ -464,7 +464,7 @@ VL_OBJS += rtl8139.o VL_OBJS+= hypercall.o # virtio devices -VL_OBJS += virtio.o virtio-net.o virtio-blk.o +VL_OBJS += virtio.o virtio-net.o virtio-blk.o virtio-balloon.o ifeq ($(TARGET_BASE_ARCH), i386) # Hardware support Index: kvm-userspace/qemu/hw/pc.c ==========================================...
2008 Jan 08
1
[PATCH] QEMU KVM balloon support
..._sync_shadow_with_user(kvm_context_t kvm); + /*! * \brief Create a memory alias * Index: kvm-userspace/qemu/Makefile.target =================================================================== --- kvm-userspace.orig/qemu/Makefile.target +++ kvm-userspace/qemu/Makefile.target @@ -464,7 +464,7 @@ VL_OBJS += rtl8139.o VL_OBJS+= hypercall.o # virtio devices -VL_OBJS += virtio.o virtio-net.o virtio-blk.o +VL_OBJS += virtio.o virtio-net.o virtio-blk.o virtio-balloon.o ifeq ($(TARGET_BASE_ARCH), i386) # Hardware support Index: kvm-userspace/qemu/hw/pc.c ==========================================...
2008 Jan 09
4
[PATCH/RFC 0/2] CPU hotplug virtio driver
I'm sending a first draft of my proposed cpu hotplug driver for kvm/virtio The first patch is the kernel module, while the second, the userspace pci device. The host boots with the maximum cpus it should ever use, through the -smp parameter. Due to real machine constraints (which qemu copies), i386 does not allow for any addition of cpus after boot, so this is the most general way. I do
2008 Jan 09
4
[PATCH/RFC 0/2] CPU hotplug virtio driver
I'm sending a first draft of my proposed cpu hotplug driver for kvm/virtio The first patch is the kernel module, while the second, the userspace pci device. The host boots with the maximum cpus it should ever use, through the -smp parameter. Due to real machine constraints (which qemu copies), i386 does not allow for any addition of cpus after boot, so this is the most general way. I do
2006 Aug 21
1
[PATCH][vTPM] 3/3: TPM device model for qemu dm
This patch adds a TPM device model to the qemu dm for fully virtualized VMs. It is enabled in the VM only if the user requests a TPM device in the vm configuration file using the ''vtpm=[...]'' line. It enables the qemu device model command line with a ''vtpm_instance <instance number>'' parameter. Signed-off-by: David Safford <safford@watson.ibm.com>
2007 Dec 21
0
[Virtio-for-kvm] [PATCH 1/7] userspace virtio
...+++++++++++ 3 files changed, 568 insertions(+), 0 deletions(-) create mode 100644 qemu/hw/virtio.c create mode 100644 qemu/hw/virtio.h diff --git a/qemu/Makefile.target b/qemu/Makefile.target index 12fb043..8b5853b 100644 --- a/qemu/Makefile.target +++ b/qemu/Makefile.target @@ -463,6 +463,9 @@ VL_OBJS += rtl8139.o # PCI Hypercall VL_OBJS+= hypercall.o +# virtio devices +VL_OBJS += virtio.o + ifeq ($(TARGET_BASE_ARCH), i386) # Hardware support VL_OBJS+= ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o diff --git a/qemu/hw/virtio.c b/qemu/hw/virtio.c new file mode 100644 index 0000000..6a1d380 -...
2007 Dec 21
0
[Virtio-for-kvm] [PATCH 1/7] userspace virtio
...+++++++++++ 3 files changed, 568 insertions(+), 0 deletions(-) create mode 100644 qemu/hw/virtio.c create mode 100644 qemu/hw/virtio.h diff --git a/qemu/Makefile.target b/qemu/Makefile.target index 12fb043..8b5853b 100644 --- a/qemu/Makefile.target +++ b/qemu/Makefile.target @@ -463,6 +463,9 @@ VL_OBJS += rtl8139.o # PCI Hypercall VL_OBJS+= hypercall.o +# virtio devices +VL_OBJS += virtio.o + ifeq ($(TARGET_BASE_ARCH), i386) # Hardware support VL_OBJS+= ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o diff --git a/qemu/hw/virtio.c b/qemu/hw/virtio.c new file mode 100644 index 0000000..6a1d380 -...