search for: qemumachin

Displaying 14 results from an estimated 14 matches for "qemumachin".

Did you mean: qemumachine
2013 Jan 17
1
[QEMU PATCH v3] virtio-net: introduce a new macaddr control
...re is acked --- hw/pc_piix.c | 4 ++++ hw/virtio-net.c | 10 +++++++++- hw/virtio-net.h | 12 ++++++++++-- 3 files changed, 23 insertions(+), 3 deletions(-) diff --git a/hw/pc_piix.c b/hw/pc_piix.c index 7268dcd..66606b9 100644 --- a/hw/pc_piix.c +++ b/hw/pc_piix.c @@ -295,6 +295,10 @@ static QEMUMachine pc_machine_v1_4 = { .driver = "usb-tablet",\ .property = "usb_version",\ .value = stringify(1),\ + },{\ + .driver = "virtio-net-pci",\ + .property = "ctrl_mac_addr",\ + .va...
2013 Jan 17
1
[QEMU PATCH v3] virtio-net: introduce a new macaddr control
...re is acked --- hw/pc_piix.c | 4 ++++ hw/virtio-net.c | 10 +++++++++- hw/virtio-net.h | 12 ++++++++++-- 3 files changed, 23 insertions(+), 3 deletions(-) diff --git a/hw/pc_piix.c b/hw/pc_piix.c index 7268dcd..66606b9 100644 --- a/hw/pc_piix.c +++ b/hw/pc_piix.c @@ -295,6 +295,10 @@ static QEMUMachine pc_machine_v1_4 = { .driver = "usb-tablet",\ .property = "usb_version",\ .value = stringify(1),\ + },{\ + .driver = "virtio-net-pci",\ + .property = "ctrl_mac_addr",\ + .va...
2007 Dec 21
0
[Virtio-for-kvm] [PATCH 3/7] userspace virtio
...F_SD + IF_IDE, IF_SCSI, IF_FLOPPY, IF_PFLASH, IF_MTD, IF_SD, IF_VIRTIO } BlockInterfaceType; typedef struct DriveInfo { diff --git a/qemu/vl.c b/qemu/vl.c index 28c5df4..26055a4 100644 --- a/qemu/vl.c +++ b/qemu/vl.c @@ -4970,6 +4970,9 @@ static int drive_init(const char *str, int snapshot, QEMUMachine *machine) } else if (!strcmp(buf, "sd")) { interface = IF_SD; max_devs = 0; + } else if (!strcmp(buf, "virtio")) { + interface = IF_VIRTIO; + max_devs = 0; } else { fprintf(stderr, "qemu: '%s' unsupporte...
2007 Dec 21
0
[Virtio-for-kvm] [PATCH 3/7] userspace virtio
...F_SD + IF_IDE, IF_SCSI, IF_FLOPPY, IF_PFLASH, IF_MTD, IF_SD, IF_VIRTIO } BlockInterfaceType; typedef struct DriveInfo { diff --git a/qemu/vl.c b/qemu/vl.c index 28c5df4..26055a4 100644 --- a/qemu/vl.c +++ b/qemu/vl.c @@ -4970,6 +4970,9 @@ static int drive_init(const char *str, int snapshot, QEMUMachine *machine) } else if (!strcmp(buf, "sd")) { interface = IF_SD; max_devs = 0; + } else if (!strcmp(buf, "virtio")) { + interface = IF_VIRTIO; + max_devs = 0; } else { fprintf(stderr, "qemu: '%s' unsupporte...
2013 Jan 22
5
[QEMU PATCH v5 0/3] virtio-net: fix of ctrl commands
Currently virtio-net code relys on the layout of descriptor, this patchset removed the assumptions and introduced a control command to set mac address. Last patch is a trivial renaming. V2: check guest's iov_len V3: fix of migration compatibility make mac field in config space read-only when new feature is acked V4: add fix of descriptor layout assumptions, trivial rename V5: fix
2013 Jan 22
5
[QEMU PATCH v5 0/3] virtio-net: fix of ctrl commands
Currently virtio-net code relys on the layout of descriptor, this patchset removed the assumptions and introduced a control command to set mac address. Last patch is a trivial renaming. V2: check guest's iov_len V3: fix of migration compatibility make mac field in config space read-only when new feature is acked V4: add fix of descriptor layout assumptions, trivial rename V5: fix
2013 Jan 19
8
[QEMU PATCH v4 0/3] virtio-net: fix of ctrl commands
From: Amos Kong <akong at redhat.com> Currently virtio-net code relys on the layout of descriptor, this patchset removed the assumptions and introduced a control command to set mac address. Last patch is a trivial renaming. V2: check guest's iov_len V3: fix of migration compatibility make mac field in config space read-only when new feature is acked V4: add fix of descriptor layout
2013 Jan 19
8
[QEMU PATCH v4 0/3] virtio-net: fix of ctrl commands
From: Amos Kong <akong at redhat.com> Currently virtio-net code relys on the layout of descriptor, this patchset removed the assumptions and introduced a control command to set mac address. Last patch is a trivial renaming. V2: check guest's iov_len V3: fix of migration compatibility make mac field in config space read-only when new feature is acked V4: add fix of descriptor layout
2016 Dec 21
1
Re: Audio in Windows 10 VM is distorted. Using ALSA.
Hi, I found the main reason for sound distortions on my system is guest timer configuration. The working one is: <clock offset="localtime"> <timer name="hypervclock" present="yes"/> <timer name="hpet" present="no"/> <timer name="rtc" present="yes" track="guest"
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
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
2009 Aug 25
3
Extending virtio_console to support multiple ports
Hello all, Here is a new iteration of the patch series that implements a transport for guest and host communications. The code has been updated to reuse the virtio-console device instead of creating a new virtio-serial device. I've tested for compatibility (old qemu & new kernel, new qemu & old kernel, new qemu & new kernel) and it all works fine. There are a few items on my
2009 Aug 25
3
Extending virtio_console to support multiple ports
Hello all, Here is a new iteration of the patch series that implements a transport for guest and host communications. The code has been updated to reuse the virtio-console device instead of creating a new virtio-serial device. I've tested for compatibility (old qemu & new kernel, new qemu & old kernel, new qemu & new kernel) and it all works fine. There are a few items on my
2009 Mar 02
0
[PATCH 4 of 13] DisplayState interface change
...ere. The LCD controller will set the size once configured, so this just sets an initial size until the guest activates the display. */ - dpy_resize(ds, 320, 320); + ds->surface = qemu_resize_displaysurface(ds->surface, 320, 320, 32, 4 * 320); + dpy_resize(ds); } QEMUMachine palmte_machine = { diff --git a/hw/vga.c b/hw/vga.c --- a/hw/vga.c +++ b/hw/vga.c @@ -1270,18 +1270,19 @@ return; } - s->last_scr_width = width * cw; - s->last_scr_height = height * cheight; if (width != s->last_width || height != s->last_height || c...