search for: vl_objs+

Displaying 14 results from an estimated 14 matches for "vl_objs+".

2005 May 27
0
[PATCH] ioemu: enable Cirrus VGA emulation
...6-dm/Makefile xeno-unstable.mine/tools/ioemu/target-i386-dm/Makefile --- xeno-unstable.orig/tools/ioemu/target-i386-dm/Makefile 2005-05-25 07:48:57.000000000 -0400 +++ xeno-unstable.mine/tools/ioemu/target-i386-dm/Makefile 2005-05-27 15:24:56.000000000 -0400 @@ -272,6 +272,7 @@ # Hardware support VL_OBJS+= ide.o ne2000.o pckbd.o vga.o dma.o VL_OBJS+= fdc.o mc146818rtc.o serial.o i8259.o i8254.o pc.o port-e9.o +VL_OBJS+= cirrus_vga.o ifeq ($(TARGET_ARCH), ppc) VL_OBJS+= ppc.o ide.o ne2000.o pckbd.o vga.o $(SOUND_HW) dma.o $(AUDIODRV) Only in xeno-unstable.mine/tools/ioemu/target-i386-dm: Makefi...
2008 Mar 10
12
[RFC][PATCH] Use ioemu block drivers through blktap
When I submitted the qcow2 patch for blktap, suggestions came up that the qemu block drivers should be used also for blktap to eliminate the current code duplication in ioemu and blktap. The attached patch adds support for a tap:ioemu pseudo driver. Devices using this driver won''t use tapdisk (containing the code duplication) any more, but will connect to the qemu-dm of the domain. In
2006 Sep 26
15
RE: Individual passwords for guest VNC servers ?
> Thanks all point about security, I''ll do as follows. > I thought that the point was the following two. > > > 1. Storage place of encrypted password > Should I store it in /etc/xen/passwd ? > Or, should I wait for DB of Xen that will be released in > the future? The xend life cycle management patches were posted by Alistair a couple of months back.
2007 Oct 24
16
PATCH 0/10: Merge PV framebuffer & console into QEMU
The following series of 10 patches is a merge of the xenfb and xenconsoled functionality into the qemu-dm code. The general approach taken is to have qemu-dm provide two machine types - one for xen paravirt, the other for fullyvirt. For compatability the later is the default. The goals overall are to kill LibVNCServer, remove alot of code duplication and/or parallel impls of the same concepts, and
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 -...
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