commit_msg
stringlengths
1
24.2k
commit_hash
stringlengths
2
84
project
stringlengths
2
40
source
stringclasses
4 values
labels
int64
0
1
repo_url
stringlengths
26
70
commit_url
stringlengths
74
118
commit_date
stringlengths
25
25
target-lm32: stop VM on illegal or unknown instruction Instead of translating the instruction to a no-op, pause the VM and display a message to the user. As a side effect, this also works for instructions where the operands are only known at runtime. Signed-off-by: Michael Walle <[email protected]>
667ff9612b786f9bb5b70135811164b48b7d44eb
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/667ff9612b786f9bb5b70135811164b48b7d44eb
2014-02-04 19:47:39+01:00
hw/9pfs: fix P9_STATS_GEN handling Currently we fail getattr request altogether if we can't read P9_STATS_GEN for some reason. It breaks valid use cases: E.g let's assume we have non-readable directory with execution bit set on host and we export it to client over 9p On host we can chdir into directory, but not open directory on read and list content. But if client will try to call getattr (as part of chdir(2)) for the directory it will fail with -EACCES. It happens because we try to open the directory on read to call ioctl(FS_IOC_GETVERSION), it fails and we return the error code to client. It's excessive. The solution is to make P9_STATS_GEN failure non-fatal for getattr request. Just don't set P9_STATS_GEN flag in result mask on failure. Signed-off-by: Kirill A. Shutemov <[email protected]> Signed-off-by: Aneesh Kumar K.V <[email protected]>
f8b7ee38b3ed4ec2da5cc0529cf0cf82c8589805
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/f8b7ee38b3ed4ec2da5cc0529cf0cf82c8589805
2014-02-02 22:09:16+05:30
drive mirror:fix memory leak In the function mirror_iteration() -> qemu_iovec_init(), it allocates memory for op->qiov.iov, when the write request calls back, but in the function mirror_iteration_done(), it only frees the op, not free the op->qiov.iov, so this causes memory leak. It should use qemu_iovec_destroy() to free op->qiov. Signed-off-by: Zhang Min <[email protected]> Signed-off-by: Kevin Wolf <[email protected]>
6df3bf8eb3ed428015c85cfbd554ac9b32164f40
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/6df3bf8eb3ed428015c85cfbd554ac9b32164f40
2014-01-24 14:33:00+01:00
softfloat: Only raise Invalid when conversions to int are out of range We implement a number of float-to-integer conversions using conversion to an integer type with a wider range and then a check against the narrower range we are actually converting to. If we find the result to be out of range we correctly raise the Invalid exception, but we must also suppress other exceptions which might have been raised by the conversion function we called. This won't throw away exceptions we should have preserved, because for the 'core' exception flags the IEEE spec mandates that the only valid combinations of exception that can be raised by a single operation are Inexact + Overflow and Inexact + Underflow. For the non-IEEE softfloat flag for input denormals, we can guarantee that that flag won't have been set for out of range float-to-int conversions because a squashed denormal by definition goes to plus or minus zero, which is always in range after conversion to integer zero. This bug has been fixed for some of the float-to-int conversion routines by previous patches; fix it for the remaining functions as well, so that they all restore the pre-conversion status flags prior to raising Invalid. Signed-off-by: Peter Maydell <[email protected]> Reviewed-by: Aurelien Jarno <[email protected]> Reviewed-by: Richard Henderson <[email protected]>
34e1c27bc3094ffe484d9855e07ad104bddf579f
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/34e1c27bc3094ffe484d9855e07ad104bddf579f
2014-01-08 19:07:22+00:00
Python-lang gdb script to extract x86_64 guest vmcore from qemu coredump When qemu dies unexpectedly, for example in response to an explicit abort() call, or (more importantly) when an external signal is delivered to it that results in a coredump, sometimes it is useful to extract the guest vmcore from the qemu process' memory image. The guest vmcore might help understand an emulation problem in qemu, or help debug the guest. This script reimplements (and cuts many features of) the qmp_dump_guest_memory() command in gdb/Python, https://sourceware.org/gdb/current/onlinedocs/gdb/Python-API.html working off the saved memory image of the qemu process. The docstring in the patch (serving as gdb help text) describes the limitations relative to the QMP command. Dependencies of qmp_dump_guest_memory() have been reimplemented as needed. I sought to follow the general structure, sticking to original function names where possible. However, keeping it simple prevailed in some places. The patch has been tested with a 4 VCPU, 768 MB, RHEL-6.4 (2.6.32-358.el6.x86_64) guest: - The script printed > guest RAM blocks: > target_start target_end host_addr message count > ---------------- ---------------- ---------------- ------- ----- > 0000000000000000 00000000000a0000 00007f95d0000000 added 1 > 00000000000a0000 00000000000b0000 00007f960ac00000 added 2 > 00000000000c0000 00000000000ca000 00007f95d00c0000 added 3 > 00000000000ca000 00000000000cd000 00007f95d00ca000 joined 3 > 00000000000cd000 00000000000d0000 00007f95d00cd000 joined 3 > 00000000000d0000 00000000000f0000 00007f95d00d0000 joined 3 > 00000000000f0000 0000000000100000 00007f95d00f0000 joined 3 > 0000000000100000 0000000030000000 00007f95d0100000 joined 3 > 00000000fc000000 00000000fc800000 00007f960ac00000 added 4 > 00000000fffe0000 0000000100000000 00007f9618800000 added 5 > dumping range at 00007f95d0000000 for length 00000000000a0000 > dumping range at 00007f960ac00000 for length 0000000000010000 > dumping range at 00007f95d00c0000 for length 000000002ff40000 > dumping range at 00007f960ac00000 for length 0000000000800000 > dumping range at 00007f9618800000 for length 0000000000020000 - The vmcore was checked with "readelf", comparing the results against a vmcore written by qmp_dump_guest_memory(): > --- theirs 2013-09-12 17:38:59.797289404 +0200 > +++ mine 2013-09-12 17:39:03.820289404 +0200 > @@ -27,16 +27,16 @@ > Type Offset VirtAddr PhysAddr > FileSiz MemSiz Flags Align > NOTE 0x0000000000000190 0x0000000000000000 0x0000000000000000 > - 0x0000000000000ca0 0x0000000000000ca0 0 > - LOAD 0x0000000000000e30 0x0000000000000000 0x0000000000000000 > + 0x000000000000001c 0x000000000000001c 0 > + LOAD 0x00000000000001ac 0x0000000000000000 0x0000000000000000 > 0x00000000000a0000 0x00000000000a0000 0 > - LOAD 0x00000000000a0e30 0x0000000000000000 0x00000000000a0000 > + LOAD 0x00000000000a01ac 0x0000000000000000 0x00000000000a0000 > 0x0000000000010000 0x0000000000010000 0 > - LOAD 0x00000000000b0e30 0x0000000000000000 0x00000000000c0000 > + LOAD 0x00000000000b01ac 0x0000000000000000 0x00000000000c0000 > 0x000000002ff40000 0x000000002ff40000 0 > - LOAD 0x000000002fff0e30 0x0000000000000000 0x00000000fc000000 > + LOAD 0x000000002fff01ac 0x0000000000000000 0x00000000fc000000 > 0x0000000000800000 0x0000000000800000 0 > - LOAD 0x00000000307f0e30 0x0000000000000000 0x00000000fffe0000 > + LOAD 0x00000000307f01ac 0x0000000000000000 0x00000000fffe0000 > 0x0000000000020000 0x0000000000020000 0 > > There is no dynamic section in this file. > @@ -47,13 +47,6 @@ > > No version information found in this file. > > -Notes at offset 0x00000190 with length 0x00000ca0: > +Notes at offset 0x00000190 with length 0x0000001c: > Owner Data size Description > - CORE 0x00000150 NT_PRSTATUS (prstatus structure) > - CORE 0x00000150 NT_PRSTATUS (prstatus structure) > - CORE 0x00000150 NT_PRSTATUS (prstatus structure) > - CORE 0x00000150 NT_PRSTATUS (prstatus structure) > - QEMU 0x000001b0 Unknown note type: (0x00000000) > - QEMU 0x000001b0 Unknown note type: (0x00000000) > - QEMU 0x000001b0 Unknown note type: (0x00000000) > - QEMU 0x000001b0 Unknown note type: (0x00000000) > + NONE 0x00000005 Unknown note type: (0x00000000) - The vmcore was checked with "crash" too, again comparing the results against a vmcore written by qmp_dump_guest_memory(): > --- guest.vmcore.log2 2013-09-12 17:52:27.074289201 +0200 > +++ example.dump.log2 2013-09-12 17:52:15.904289203 +0200 > @@ -22,11 +22,11 @@ > This GDB was configured as "x86_64-unknown-linux-gnu"... > > KERNEL: /usr/lib/debug/lib/modules/2.6.32-358.el6.x86_64/vmlinux > - DUMPFILE: /home/lacos/tmp/guest.vmcore > + DUMPFILE: /home/lacos/tmp/example.dump > CPUS: 4 > - DATE: Thu Sep 12 17:16:11 2013 > - UPTIME: 00:01:09 > -LOAD AVERAGE: 0.07, 0.03, 0.00 > + DATE: Thu Sep 12 17:17:41 2013 > + UPTIME: 00:00:38 > +LOAD AVERAGE: 0.18, 0.05, 0.01 > TASKS: 130 > NODENAME: localhost.localdomain > RELEASE: 2.6.32-358.el6.x86_64 > @@ -38,12 +38,12 @@ > COMMAND: "swapper" > TASK: ffffffff81a8d020 (1 of 4) [THREAD_INFO: ffffffff81a00000] > CPU: 0 > - STATE: TASK_RUNNING (PANIC) > + STATE: TASK_RUNNING (ACTIVE) > + WARNING: panic task not found > > crash> bt > PID: 0 TASK: ffffffff81a8d020 CPU: 0 COMMAND: "swapper" > - #0 [ffffffff81a01ed0] default_idle at ffffffff8101495d > - #1 [ffffffff81a01ef0] cpu_idle at ffffffff81009fc6 > + #0 [ffffffff81a01ef0] cpu_idle at ffffffff81009fc6 > crash> task ffffffff81a8d020 > PID: 0 TASK: ffffffff81a8d020 CPU: 0 COMMAND: "swapper" > struct task_struct { > @@ -75,7 +75,7 @@ > prev = 0xffffffff81a8d080 > }, > on_rq = 0, > - exec_start = 8618466836, > + exec_start = 7469214014, > sum_exec_runtime = 0, > vruntime = 0, > prev_sum_exec_runtime = 0, > @@ -149,7 +149,7 @@ > }, > tasks = { > next = 0xffff88002d621948, > - prev = 0xffff880029618f28 > + prev = 0xffff880023b74488 > }, > pushable_tasks = { > prio = 140, > @@ -165,7 +165,7 @@ > } > }, > mm = 0x0, > - active_mm = 0xffff88002929b780, > + active_mm = 0xffff8800297eb980, > exit_state = 0, > exit_code = 0, > exit_signal = 0, > @@ -177,7 +177,7 @@ > sched_reset_on_fork = 0, > pid = 0, > tgid = 0, > - stack_canary = 2483693585637059287, > + stack_canary = 7266362296181431986, > real_parent = 0xffffffff81a8d020, > parent = 0xffffffff81a8d020, > children = { > @@ -224,14 +224,14 @@ > set_child_tid = 0x0, > clear_child_tid = 0x0, > utime = 0, > - stime = 3, > + stime = 2, > utimescaled = 0, > - stimescaled = 3, > + stimescaled = 2, > gtime = 0, > prev_utime = 0, > prev_stime = 0, > nvcsw = 0, > - nivcsw = 1000, > + nivcsw = 1764, > start_time = { > tv_sec = 0, > tv_nsec = 0 - <name_dropping>I asked for Dave Anderson's help with verifying the extracted vmcore, and his comments make me think I should post this.</name_dropping> Signed-off-by: Laszlo Ersek <[email protected]> Signed-off-by: Michael S. Tsirkin <[email protected]>
3e16d14fd93ca6059134ba6b4f65c1c3e4cd3a18
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/3e16d14fd93ca6059134ba6b4f65c1c3e4cd3a18
2014-01-26 13:06:48+02:00
i440fx-test: verify firmware under 4G and 1M, both -bios and -pflash Check whether the firmware is not hidden by other memory regions. Qemu is started in paused mode: it shouldn't try to interpret generated garbage. Signed-off-by: Laszlo Ersek <[email protected]> Signed-off-by: Michael S. Tsirkin <[email protected]>
3bcc77ae9935c8c3d10f63492af81f1d7d99d492
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/3bcc77ae9935c8c3d10f63492af81f1d7d99d492
2013-12-23 13:12:34+02:00
virtio-scsi: switch exit callback to VirtioDeviceClass This ensures hot-unplug is handled properly by the proxy, and avoids leaking bus_name which is freed by virtio_device_exit. Cc: [email protected] Acked-by: Andreas Faerber <[email protected]> Signed-off-by: Paolo Bonzini <[email protected]>
e3c9d76acc984218264bbc6435b0c09f959ed9b8
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/e3c9d76acc984218264bbc6435b0c09f959ed9b8
2013-12-09 21:46:48+01:00
tcg-s390: Use qemu_getauxval in query_facilities No need to set up a SIGILL signal handler for detection anymore. Remove a ton of sanity checks that must be true, given that we're requiring a 64-bit build (the note about 31-bit KVM is satisfied by configuring with TCI). Signed-off-by: Richard Henderson <[email protected]>
c9baa30f42a87f61627391698f63fa4d1566d9d8
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/c9baa30f42a87f61627391698f63fa4d1566d9d8
2013-11-30 07:45:30+13:00
COW: Extend checking allocated bits to beyond one sector cow_co_is_allocated() only checks one sector's worth of allocated bits before returning. This is allowed but (slightly) inefficient, so extend it to check all of the file's metadata sectors. Signed-off-by: Charlie Shepherd <[email protected]> Reviewed-by: Paolo Bonzini <[email protected]> Signed-off-by: Stefan Hajnoczi <[email protected]> [kwolf: silenced compiler warning (-Wmaybe-uninitialized for changed)] Signed-off-by: Kevin Wolf <[email protected]>
091b1108ca6d6e3bfaea5f095f219bf5ea8c316b
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/091b1108ca6d6e3bfaea5f095f219bf5ea8c316b
2013-11-29 13:40:36+01:00
pc: get rid of builtin pvpanic for "-M pc-1.5" This causes two slight backwards-incompatibilities between "-M pc-1.5" and 1.5's "-M pc": (1) a fw_cfg file is removed with this patch. This is only a problem if migration stops the virtual machine exactly during fw_cfg enumeration. (2) after migration, a VM created without an explicit "-device pvpanic" will stop reporting panics to management. The first problem only occurs if migration is done at a very, very early point (and I'm not sure it can happen in practice for reasonable-size VMs, since it will likely take more time to send the RAM to destination, than it will take for BIOS to scan fw_cfg). The second problem only occurs if the guest panics _and_ has a guest driver _and_ management knows to look at the crash event, so it is mostly theoretical at this point in time. Thus keep the code simple, and pretend it was never broken. Reviewed-by: Eric Blake <[email protected]> Signed-off-by: Paolo Bonzini <[email protected]>
7839ff593be03a7de3c6760e0b50c565ea751d36
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/7839ff593be03a7de3c6760e0b50c565ea751d36
2013-11-21 17:38:54+01:00
blockdev-test: add test case for drive_add duplicate IDs The following should work: (qemu) drive_add if=none,id=drive0 (qemu) drive_del drive0 (qemu) drive_add if=none,id=drive0 Previous versions of QEMU produced a duplicate ID error because drive_add leaked the options. Signed-off-by: Stefan Hajnoczi <[email protected]> Reviewed-by: Eric Blake <[email protected]>
7ceeedd016facf8d58e14a0d1417fa7225d71072
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/7ceeedd016facf8d58e14a0d1417fa7225d71072
2013-11-07 13:58:58+01:00
exec: Fix bounce buffer allocation in address_space_map() This fixes a regression introduced by commit e3127ae0c, which kept the allocation size of the bounce buffer limited to one page in order to avoid unbounded allocations (as explained in the commit message of 6d16c2f88), but broke the reporting of the shortened bounce buffer to the caller. The caller therefore assumes that the full requested size was provided and causes memory corruption when writing beyond the end of the actually allocated buffer. Signed-off-by: Kevin Wolf <[email protected]>
e85d9db5f6f86299688a0acd2796ac1ccc96610c
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/e85d9db5f6f86299688a0acd2796ac1ccc96610c
2013-10-28 17:34:42+01:00
qdev-monitor: Unref device when device_add fails qdev_device_add() leaks the created device upon failure. I suspect this problem crept in because qdev_free() unparents the device but does not drop a reference - confusing name. Cc: [email protected] Signed-off-by: Stefan Hajnoczi <[email protected]> Reviewed-by: Eric Blake <[email protected]> Signed-off-by: Andreas Färber <[email protected]>
ee6abeb6ec08473713848ce9028110f1684853b7
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/ee6abeb6ec08473713848ce9028110f1684853b7
2013-11-05 18:06:24+01:00
block: Don't copy backing file name on error bdrv_open_backing_file() tries to copy the backing file name using pstrcpy directly after calling bdrv_open() to open the backing file without checking whether that was actually successful. If it was not, ps->backing_hd->file will probably be NULL and qemu will crash. Fix this by moving pstrcpy after checking whether bdrv_open() succeeded. Signed-off-by: Max Reitz <[email protected]> Reviewed-by: Benoit Canet <[email protected]> Reviewed-by: Amos Kong <[email protected]> Signed-off-by: Kevin Wolf <[email protected]>
61ed2684539f7f31304e193d7c0e68d57ce6be88
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/61ed2684539f7f31304e193d7c0e68d57ce6be88
2013-10-28 17:35:52+01:00
pseries: Update SLOF firmware image This has reworked USB OHCI and adds support of USB EHCI, VIRTIO-SCSI and various fixes (IBM VSCSI, VGA and more). The full list of fixes is: * usb-ohci: Convert td-phys every time to td-virt * usb-storage: Fix cbwflags field * Add -fno-strict-aliasing in global CFLAGS * usb: fix various issues found with js2x * Move hex64-{decode,encode}-unit to node.fs * usb: Use separate in-memory endian swap * usb-ohci: collect TDs from done list * js2x: more fixes * js2x: Fix build of takeover image * js2x: use new usb stack * usb-ohci: Use proper memory barriers always * usb: Fix a couple of warnings * Fix $cat-instance-unit * Cache phandle of /chosen * Use root.fs on qemu as well * usb-ehci: Add ehci handshake * usb: add mb for write accessors * usb-ohci: add missing memory barriers * usb-ohci: suspend the controller in exit code path * usb-ohci: Add a reset when closing the OHCI * usb: Use proper accessors for MMIO and separate in-memory endian swap * Use a global definition of sync() and mb() * net-snk: Remove exception handling * usb: unmap buffers * slof: call quiesce on closing of stdin * usb-kbd: accept "s" to drop to OF prompt * USB storage driver * usb-ohci: add Bulk transfer support * usb-ehci: Add bulk support * usb-core: add usb bulk support * USB generic hub device driver * usb-ehci: setup new device * usb-ehci: Check ehci ports * usb-ehci: initialize controller * USB keyboard driver * usb-core: setup new device * usb-core: create dev pool allocation * usb-ohci: implement ohci send control * usb-core: usb send control * usb-core: implement usb_{get,put}_pipe routines * usb-ohci: allocate pipe pool * usb-ohci: reset, init and check-ports * Add standard header stdbool.h * usb-slof: forth support routines for C * usb-ehci: Add USB EHCI skeleton * usb-core: Add register accessor functions * Use __builtin_bswap routines for endianness swapping * usb-core: hcd registration and query routines * usb-core: adding generic dev-hci.fs * usb-core: registration and makefiles * Add new USB code * Remove old usb code * vga: fix hcall-invert-screen and hcall-blink-screen * Enumerate disk/cdrom aliases for multiple disks or cdroms * scsi: unify scsi probing code * vscsi: generalizing probe code * virtio-scsi: iterate through targets * scsi: unify and use make-disk-alias * nvram: remove unnecessary prints * Add hack to client interface finddevice of "/memory" * scsi: Fix cdrom boot crash when no medium present * Look for /memory@0, not just /memory * Fix instance>qname crashing when displaying instance arguments * Fix js2x build * scsi-disk: Bound check read-blocks * Fix off by one error in scsi-disk get-capacity * scsi: fix report-luns handling * SLOF: virtio-scsi block driver code * scsi: Move bits of vio-vscsi.fs to a common helpers file * scsi: Move scsi-disk.fs to a generic place * SLOF: virtio-scsi helper routines * SLOF: virtio-scsi - add pci device file * iso9660: Don't constantly reallocate the read buffer * vscsi: Sanitize interface between scsi-disk.fs and vio-vscsi.fs * vio-vscsi: Rework vio-vscsi support * virtio: Add a virtio-set-qaddr helper * disk-label: Allocate 4096 bytes for 4k block devices * disk-label: Increase the max size of the PReP boot partition * Make load-base a real environment variable * vio-vscsi: Switch to using a wildcard "disk" node and make scsi-disk generic * Fix disk-label package to use proper instance path * Increase size of catpad * Fix instance>path to contain unit address for wildcard nodes * Fix handling of wildcard nodes in open-dev * vio-vscsi: Get CRQ on open and release on close Signed-off-by: Alexey Kardashevskiy <[email protected]> Signed-off-by: Alexander Graf <[email protected]>
09b04845a7b7ffba2fa0cd99a2329f6e8ffa9027
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/09b04845a7b7ffba2fa0cd99a2329f6e8ffa9027
2013-10-25 23:25:45+02:00
qemu-iotests: Correct 026 output Because l2_allocate now frees the unused L2 cluster on error, the according test cases in 026 don't result in one leaked cluster anymore. Signed-off-by: Max Reitz <[email protected]> Signed-off-by: Stefan Hajnoczi <[email protected]>
5c1fa87708d5f226bfd96e8eef8c905fb6895ae3
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/5c1fa87708d5f226bfd96e8eef8c905fb6895ae3
2013-10-07 13:23:19+02:00
update seabios from 1.7.2.2 to 1.7.3.2 'git shortlog d4f7d90f..ece025f5' says: Alex Williamson (4): seabios q35: Enable all PIRQn IRQs at startup seabios q35: Add new PCI slot to irq routing function seabios: Add a dummy PCI slot to irq mapping function pciinit: Enable default VGA device Asias He (2): virtio-scsi: Set _DRIVER_OK flag before scsi target scanning virtio-scsi: Pack struct virtio_scsi_{req_cmd,resp_cmd} Avik Sil (1): USB-EHCI: Fix null pointer assignment Christian Gmeiner (5): geodevga: fix errors in geode_fp_* functions geodevga: move framebuffer setup geodevga: move output setup to own function geodevga: add debug to msr functions geodevga: fix wrong define name David Woodhouse (26): Add macros for pushing and popping struct bregs Clean up #if in pirtable.c. CONFIG_PIRTABLE can't be set if CONFIG_COREBOOT is post: Export functions which will be used individually by CSM Export callrom() for CSM to use Export copy_smbios() from biostables.c Import LegacyBios.h from OVMF Complete and checksum EFI_COMPATIBILITY16_TABLE at build time Add pic_save_mask() and pic_restore_mask() functions Add CSM support Add README.CSM Add find_pmtimer() function Enable PMTIMER for CSM build Fix rom_reserve()/rom_confirm() for CSM oprom dispatch Don't calibrate TSC if PMTIMER is already set up Move find_pmtimer() to ACPI table setup where it logically belongs Use find_pmtimer() after copying Xen ACPI tables Use find_pmtimer() after copying coreboot ACPI tables Unify return path for CSM to go via csm_return() Make CONFIG_OPTIONROMS_DEPLOYED depend on CONFIG_QEMU Implement !CONFIG_OPTIONROMS support for CSM Implement !CONFIG_BOOT for CSM Enable VGA output when settings bochs-specific mode Disable CONFIG_THREAD_OPTIONROMS for CSM build Fix return type of le64_to_cpu() and be64_to_cpu() Rename find_pmtimer() to find_acpi_features() Add acpi_reboot() reset method using RESET_REG Gerd Hoffmann (6): config: allow DEBUG_IO for !QEMU coreboot: add qemu detection tweak coreboot qemu detection apm: fix shutdown ahci: add missing check for allocation failure fix buildversion.sh Hu Tao (1): Add pvpanic device driver Kevin O'Connor (101): pmm: Use 'struct segoff_s' in pmm header. Minor: Update README - variable changes are now reset on soft-reboots. Normalize POST initialization function name suffixes. POST: Reorganize post init functions for better grouping and reusability. Fix rebase error in commit 8a0a972f that broke LOWMEM variables. Support calling a function other than maininit() from reloc_preinit(). Ensure exported symbols are visible in the final link POST: Move QEMU specific ramsize and BIOS table setup to paravirt.c. POST: Reorganize post entry and "preinit" functions. POST: Move cpu caching and dma setup to platform_hardware_setup(). Undo incorrect assumptions about Xen in commit 6ca0460f. Determine century during init and store in VARLOW mem during runtime. No need to check both CONFIG_THREADS and CONFIG_THREAD_OPTIONROMS. Add runningOnQEMU() and runningOnXen() for runtime platform detection. Consistently use CONFIG_COREBOOT, CONFIG_QEMU, and runningOnXen(). Convert kvm_para_available() to runningOnKVM(). Minor - move definitions to paravirt.c from paravirt.h. Only perform SMP setup on QEMU. Start device_hardware_setup in mainint even with CONFIG_THREAD_OPTIONROMS. The mathcp setup touches the PIC and thus move to the "setup" phase. Update tools/acpi_extract.py to handle iasl 20130117 release. Support skipping content when reading from QEMU fw_cfg romfile entries. Convert fw_cfg ACPI entries into romfile entries. Convert fw_cfg SMBIOS entries into romfile entries. Convert basic integer fw_cfg entries into romfile entries. Convert fw_cfg NUMA entries into a romfile entry. Process fw_cfg e820 entries during the fw_cfg setup stage. Integrate qemu_cfg_preinit() into qemu_romfile_init(). Group QEMU platform setup together and move to paravirt.c. vgabios: Bochs/QEMU vgabios support should depend on CONFIG_QEMU. Warn on unaligned PCI ROM structure in option roms. Fix Makefile - don't reference "out/" directly, instead use "$(OUT)". build: Don't require $(OUT) to be a sub-directory of the main directory. Rename rom_get_top() to rom_get_max(). Report on f-segment UMB ram also. Clarify build generated "zone low" values. Verify CC is valid during build tests. Disable handle_post() on CSM builds. Remove unnecessary "export" declarations from assembler functions. Minor assembler enhancements to __csm_return. Introduce VARFSEG for variables that will reside in the f-segment. Convert VAR16VISIBLE, VAR16EXPORT, and VAR32VISIBLE to VARFSEG. Don't relocate "varlow" variable references at runtime. Move malloc's ZoneFSeg and ZoneLow setup to malloc_init. Calculate "RamSize" needed by 16bit interface dynamically. Eliminate separate BiosTableSpace[] space for f-segment allocations. Use CONFIG_ prefix for Kconfig variables; use BUILD_ for others. Try to detect an unsuccessful hard-reboot to prevent soft-reboot loops. Minor - fix confusing final_sec32low_start name in layoutrom.py. Minor - introduce numeric defines for the IVT offset of hw irqs. Separate out 16bit PCI-BIOS entry point from regular int 0x1a entry point. Support using the "extra stack" for all 16bit irq entry points. Minor - improve comments and grouping of handle_08(). floppy: Introduce 'struct floppy_pio_s' for floppy PIO ops. floppy: Cleanup floppy irq wait handling. floppy: Clean up Check Interrupt Status code. floppy: Move recalibration and results parsing to floppy_cmd(). floppy: Improve floppy_pio() error checking. floppy: Implement media format sensing. floppy: Actually do controller reset in floppy_reset(). Minor - note that passing QEMU config via cmos is deprecated. Cache boot-fail-wait to avoid romfile access after POST. Rename src/ssdt-susp.dsl to src/ssdt-misc.dsl. acpi: Eliminate BDAT parameter passing to DSDT code. Add additional dependency checks to Makefile. Don't use __FILE__ in virtio-ring.c. shadow: Don't use PCIDevices list in make_bios_readonly(). smm: Don't use PCIDevices list in smm_setup(). Add VARVERIFY32INIT attribute for variables only available during "init". Use VARVERIFY32INIT on global variables that point to "tmp" memory. vgabios: Fix stdvga_perform_gray_scale_summing(). vgabios: Fix cirrus memory clear on mode switch. Minor - add missing newline to floppy debug statement. Fix bug in NUMA node setup - don't create SRAT if NUMA not present. Update README - copy *.aml files for QEMU. Add dependencies to vgafixup.py and buildversion.sh scripts. Set ZF prior to keyboard read call in check_for_keystroke(). mptable: Don't describe pci-to-pci bridges. mptable: Use same PCI irqs as ACPI code. Cleanup QEMU_CFG_NUMA fw_cfg processing - split into two romfile entries. Use container_of on romfile entries. acpi: Move ACPI table definitions from acpi.c to acpi.h. acpi: Remove dead code with descriptions of bit flags. acpi: Use cpu_to_leXX() consistently. Minor - explicitly close files in buildrom.py. Minor - move "tracked memory alloc" code in pmm.c. Introduce and convert pmm code to use standard list helpers. Minor - relocate code in stacks.c to keep low-level thread code together. Introduce helper function have_threads() in stacks.c. Convert stacks.c to use standard list manipulation code. Convert boot.c to use standard list manipulation code. Convert pciinit.c to use standard list manipulation code. Convert PCIDevices list to use standard list manipultion code. Revert "Convert pciinit.c to use standard list manipulation code." Fix error in hlist_for_each_entry_safe macro. Convert pciinit.c to use standard list manipulation code. make qemu_cfg_init depend on QEMU_HARDWARE instead of QEMU Another fix for hlist_for_each_entry_safe. Minor - remove debugging dprintf added to pciinit.c. Fix USB EHCI detection that was broken in hlist conversion of PCIDevices. Fix bug in CBFS file walking with compressed files. Laszlo Ersek (1): Enable VGA output when setting Cirrus-specific mode Michael S. Tsirkin (2): acpi: make default DSDT optional acpi: sync FADT flags from PIIX4 to Q35 Signed-off-by: Gerd Hoffmann <[email protected]>
1cf9412b3b583b59a1ac131609cbf673662ee7eb
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/1cf9412b3b583b59a1ac131609cbf673662ee7eb
2013-09-30 11:18:02+02:00
qemu-ga: Add Windows VSS provider and requester as DLL Adds VSS provider and requester as a qga-vss.dll, which is loaded by Windows VSS service as well as by qemu-ga. "provider.cpp" implements a basic stub of a software VSS provider. Currently, this module only relays a frozen event from VSS service to the agent, and thaw event from the agent to VSS service, to block VSS process to keep the system frozen while snapshots are taken at the host. To register the provider to the guest system as COM+ application, the type library (.tlb) for qga-vss.dll is required. To build it from COM IDL (.idl), VisualC++, MIDL and stdole2.tlb in Windows SDK are required. This patch also adds pre-compiled .tlb file in the repository in order to enable cross-compile qemu-ga.exe for Windows with VSS support. "requester.cpp" provides the VSS requester to kick the VSS snapshot process. Qemu-ga.exe works without the DLL, although fsfreeze features are disabled. These functions are only supported in Windows 2003 or later. In older systems, fsfreeze features are disabled. In several versions of Windows which don't support attribute VSS_VOLSNAP_ATTR_NO_AUTORECOVERY, DoSnapshotSet fails with error VSS_E_OBJECT_NOT_FOUND. In this patch, we just ignore this error. To solve this fundamentally, we need a framework to handle mount writable snapshot on guests, which is required by VSS auto-recovery feature (cleanup phase after a snapshot is taken). Signed-off-by: Tomoki Sekiyama <[email protected]> Signed-off-by: Michael Roth <[email protected]>
b39297aedfabe9b2c426cd540413be991500da25
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/b39297aedfabe9b2c426cd540413be991500da25
2013-09-09 14:17:57-05:00
gluster: Abort on AIO completion failure Currently if gluster AIO callback thread fails to notify the QEMU thread about AIO completion, we try graceful recovery by marking the disk drive as inaccessible. This error recovery code is race-prone as found by Asias and Stefan. However as found out by Paolo, this kind of error is impossible and hence simplify the code that handles this error recovery. Signed-off-by: Bharata B Rao <[email protected]> Reviewed-by: Stefan Hajnoczi <[email protected]> Signed-off-by: Kevin Wolf <[email protected]>
9faa574f7d07109e2256c0b4b63e8711d650f2d8
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/9faa574f7d07109e2256c0b4b63e8711d650f2d8
2013-08-30 15:28:52+02:00
mips_malta: do not raise exceptions when accessing invalid memory Since commit c658b94f6e8c206c59d02aa6fbac285b86b53d2c, MIPS raises exceptions when accessing invalid memory. This is not the correct behaviour for MIPS Malta Core LV, as the GT-64120A system controller just ignore undecoded access. This feature is used by the Linux kernel to probe for some devices. Emulate the correct behaviour in QEMU by adding an empty slot covering the entire memory space decoded by the GT-64120A. Tested-by: Stefan Weil <[email protected]> Signed-off-by: Aurelien Jarno <[email protected]>
cc413a39355ed910f22f8f0be5e233c08a0773a0
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/cc413a39355ed910f22f8f0be5e233c08a0773a0
2013-08-14 16:47:30+02:00
hw/9pfs: Fix potential memory leak and avoid reuse of freed memory The leak was reported by cppcheck. Function proxy_init also calls g_free for ctx->fs_root. Avoid reuse of this memory by setting ctx->fs_root to NULL. Signed-off-by: Stefan Weil <[email protected]> Reviewed-by: M. Mohan Kumar <[email protected]> Signed-off-by: Michael Tokarev <[email protected]>
80cba1b71eb9a75404d1effddec8ffa9f0d6d6fb
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/80cba1b71eb9a75404d1effddec8ffa9f0d6d6fb
2013-07-27 11:22:54+04:00
block: fix vvfat error path for enable_write_target s->qcow and s->qcow_filename are allocated but not freed on error. Fix the possible leaks, remove unnecessary check for bdrv_new(), propagate ret code of bdrv_create() and also the one of enable_write_target(). Signed-off-by: Fam Zheng <[email protected]> Reviewed-by: Laszlo Ersek <[email protected]> Signed-off-by: Stefan Hajnoczi <[email protected]>
78f27bd02ceba4a2f6ac5c725f4d4410eec205ef
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/78f27bd02ceba4a2f6ac5c725f4d4410eec205ef
2013-07-19 12:29:21+08:00
net: add support of mac-programming over macvtap in QEMU side Currently macvtap based macvlan device is working in promiscuous mode, we want to implement mac-programming over macvtap through Libvirt for better performance. Design: QEMU notifies Libvirt when rx-filter config is changed in guest, then Libvirt query the rx-filter information by a monitor command, and sync the change to macvtap device. Related rx-filter config of the nic contains main mac, rx-mode items and vlan table. This patch adds a QMP event to notify management of rx-filter change, and adds a monitor command for management to query rx-filter information. Test: If we repeatedly add/remove vlan, and change macaddr of vlan interfaces in guest by a loop script. Result: The events will flood the QMP client(management), management takes too much resource to process the events. Event_throttle API (set rate to 1 ms) can avoid the events to flood QMP client, but it could cause an unexpected delay (~1ms), guests guests normally expect rx-filter updates immediately. So we use a flag for each nic to avoid events flooding, the event is emitted once until the query command is executed. The flag implementation could not introduce unexpected delay. There maybe exist an uncontrollable delay if we let Libvirt do the real change, guests normally expect rx-filter updates immediately. But it's another separate issue, we can investigate it when the work in Libvirt side is done. Michael S. Tsirkin: tweaked to enable events on start Michael S. Tsirkin: fixed not to crash when no id Michael S. Tsirkin: fold in patch: "additional fixes for mac-programming feature" Amos Kong: always notify QMP client if mactable is changed Amos Kong: return NULL list if no net client supports rx-filter query Reviewed-by: Eric Blake <[email protected]> Reviewed-by: Markus Armbruster <[email protected]> Signed-off-by: Amos Kong <[email protected]> Signed-off-by: Michael S. Tsirkin <[email protected]>
b1be42803b31a913bab65bab563a8760ad2e7f7f
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/b1be42803b31a913bab65bab563a8760ad2e7f7f
2013-07-15 21:23:08+03:00
qemu-option: Fix qemu_opts_set_defaults() for corner cases Commit 4f6dd9a changed the initialization of opts in opts_parse() to this: if (defaults) { if (!id && !QTAILQ_EMPTY(&list->head)) { opts = qemu_opts_find(list, NULL); } else { opts = qemu_opts_create(list, id, 0); } } else { opts = qemu_opts_create(list, id, 1); } Same as before for !defaults. If defaults is true, and params has no ID, and options exist, we use the first assignment. It sets opts to null if all options have an ID. opts_parse() then returns null. qemu_opts_set_defaults() asserts the value is non-null. It's the only caller that passes true for defaults. To reproduce, try "-M xenpv -machine id=foo" (yes, "id=foo" is silly, but it shouldn't crash). I believe the function attempts to do the following: If options don't yet exist, create new options Else, if defaults, modify the existing options Else, if list->merge_lists, modify the existing options Else, fail A straightforward call of qemu_opts_create() does exactly that. Cc: Jan Kiszka <[email protected]> Signed-off-by: Markus Armbruster <[email protected]> Message-id: [email protected] Signed-off-by: Anthony Liguori <[email protected]>
6d4cd408686f5ae60b2b3b94b79f48ddedc2f39d
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/6d4cd408686f5ae60b2b3b94b79f48ddedc2f39d
2013-07-09 13:38:57-05:00
virtio-rng: Fix crash with non-default backend 'default_backend' isn't always set, but 'rng' is, so use that. $ ./x86_64-softmmu/qemu-system-x86_64 -object rng-random,id=rng0,filename=/dev/random -device virtio-rng-pci,rng=rng0 Segmentation fault (core dumped) Regressed with virtio refactoring in 59ccd20a9ac719cff82180429458728f03ec612f CC: [email protected] Signed-off-by: Cole Robinson <[email protected]> Acked-by: Amit Shah <[email protected]> Acked-by: Michael S. Tsirkin <[email protected]> Tested-by: Michael Roth <[email protected]> Message-id: bf4505014a0a941dbd3c62068f3cf2c496b69e6a.1370023944.git.crobinso@redhat.com Signed-off-by: Anthony Liguori <[email protected]>
5b456438f5bb395ed6b1eec95e18ce7a7a884a0a
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/5b456438f5bb395ed6b1eec95e18ce7a7a884a0a
2013-06-18 10:05:45-05:00
tests: set MALLOC_PERTURB_ to expose memory bugs glibc wipes malloc(3) memory when the MALLOC_PERTURB_ environment variable is set. The value of the environment variable determines the bit pattern used to wipe memory. For more information, see http://udrepper.livejournal.com/11429.html. Set MALLOC_PERTURB_ for gtester and qemu-iotests. Note we pick a random value from 1 to 255 to expose more bugs. If you need to reproduce a crash use 'show environment' in gdb to extract the MALLOC_PERTURB_ value from a core dump. Both make check and qemu-iotests pass with MALLOC_PERTURB_ enabled. Signed-off-by: Stefan Hajnoczi <[email protected]> Reviewed-by: Eric Blake <[email protected]> Message-id: [email protected] Signed-off-by: Anthony Liguori <[email protected]>
04129606170ec9011d4952b4f22c368679bedbf9
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/04129606170ec9011d4952b4f22c368679bedbf9
2013-05-29 08:16:06-05:00
blockdev: reset werror/rerror on drive_del Paolo Bonzini <[email protected]> suggested the following test case: 1. Launch a guest and wait at the GRUB boot menu: qemu-system-x86_64 -enable-kvm -m 1024 \ -drive if=none,cache=none,file=test.img,id=foo,werror=stop,rerror=stop -device virtio-blk-pci,drive=foo,id=virtio0,addr=4 2. Hot unplug the device: (qemu) drive_del foo 3. Select the first boot menu entry Without this patch the guest pauses due to ENOMEDIUM. The guest is stuck in a continuous pause loop since the I/O request is retried and fails immediately again when the guest is resumed. With this patch the error is reported to the guest. Note that this scenario actually happens sometimes during libvirt disk hot unplug, where device_del is followed by drive_del. I/O may still be submitted to the drive after drive_del if the guest does not process the PCI hot unplug notification. Reported-by: Dafna Ron <[email protected]> Signed-off-by: Stefan Hajnoczi <[email protected]> Reviewed-by: Kevin Wolf <[email protected]>
293c51a6ee369228633a8428ab689f14c045ff98
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/293c51a6ee369228633a8428ab689f14c045ff98
2013-06-05 16:39:59+02:00
qapi: add native list coverage for QMP input visitor tests This exercises schema-generated visitors for native list types and does some sanity checking on validity of deserialized data. Signed-off-by: Michael Roth <[email protected]> Reviewed-by: Laszlo Ersek <[email protected]> Reviewed-by: Amos Kong <[email protected]> Signed-off-by: Luiz Capitulino <[email protected]>
199e0f17f23a68c8d619e9e623d970324ed5efc1
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/199e0f17f23a68c8d619e9e623d970324ed5efc1
2013-05-23 09:44:21-04:00
json-parser: fix handling of large whole number values Currently our JSON parser assumes that numbers lacking a fractional value are integers and attempts to store them as QInt/int64 values. This breaks in the case where the number overflows/underflows int64 values (which is still valid JSON) Fix this by detecting such cases and using a QFloat to store the value instead. Signed-off-by: Michael Roth <[email protected]> Reviewed-by: Laszlo Ersek <[email protected]> Reviewed-by: Amos Kong <[email protected]> Signed-off-by: Luiz Capitulino <[email protected]>
3d5b3ec6d460a92245215aaf7b349b0b9e5ffa25
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/3d5b3ec6d460a92245215aaf7b349b0b9e5ffa25
2013-05-23 09:44:20-04:00
virtio-net: count VIRTIO_NET_F_MAC when calculating config_len Commit 14f9b664 (hw/virtio-net.c: set config size using host features) tries to calculate config size based on the host features. But it forgets the VIRTIO_NET_F_MAC were always set for qemu later. This will lead a zero config len for virtio-net device when both VIRTIO_NET_F_STATUS and VIRTIO_NET_F_MQ were disabled form command line. Then qemu will crash when user tries to read the config of virtio-net. Fix this by counting VIRTIO_NET_F_MAC and make sure the config at least contains the mac address. Cc: Jesse Larrew <[email protected]> Signed-off-by: Jason Wang <[email protected]> Reviewed-by: Michael S. Tsirkin <[email protected]> Acked-by: Michael S. Tsirkin <[email protected]> Message-id: [email protected] Signed-off-by: Anthony Liguori <[email protected]>
e9016ee2bda1b7757072b856b2196f691aee3388
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/e9016ee2bda1b7757072b856b2196f691aee3388
2013-04-30 16:04:24-05:00
add a new qevent: QEVENT_GUEST_PANICKED This event will be emited when qemu detects guest panic. Signed-off-by: Wen Congyang <[email protected]> Signed-off-by: Hu Tao <[email protected]> Reviewed-by: Markus Armbruster <[email protected]> Message-id: cf0bc45ecf9ecd3699bc72dc39f8cbab8ed79d8c.1366945969.git.hutao@cn.fujitsu.com Signed-off-by: Anthony Liguori <[email protected]>
c401a8a5156a2596b285586002d544c595d40cf7
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/c401a8a5156a2596b285586002d544c595d40cf7
2013-04-30 10:30:01-05:00
monitor: fix the wrong order of releasing keys (qemu) sendkey ctrl_r-scroll_lock-scroll_lock Executing this command could not let Windows guest panic, it caused by the wrong order of releasing keys. This problem was introduced by commit e4c8f004c55d9da3eae3e14df740238bf805b5d6. The right release order should be starting from last item. Signed-off-by: Amos Kong <[email protected]> Signed-off-by: Luiz Capitulino <[email protected]>
153d02e338a063ad5c51ff0725d5d88285f44121
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/153d02e338a063ad5c51ff0725d5d88285f44121
2013-04-19 08:32:44-04:00
qemu-socket: set passed fd non-blocking in socket_connect() socket_connect() sets non-blocking on TCP or UNIX domain sockets if a callback function is passed. Do the same for file descriptor passing, otherwise we could unexpectedly be using a blocking file descriptor. Signed-off-by: Stefan Hajnoczi <[email protected]> Reviewed-by: Eric Blake <[email protected]> Signed-off-by: Luiz Capitulino <[email protected]>
1a751ebfbb2d7a696b889d8208cb5ffc83c090b1
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/1a751ebfbb2d7a696b889d8208cb5ffc83c090b1
2013-04-02 11:47:37-04:00
qdev: Fix qdev_try_create() semantics Since QOM'ification, qdev_try_create() uses object_new() internally, which asserts "type != NULL" when the type is not registered. This was revealed by the combination of kvmclock's kvm_enabled() check and early QOM type registration. Check whether the class exists before calling object_new(), so that the caller (e.g., qdev_create) can fail gracefully, telling us which device could not be created. Signed-off-by: Andreas Färber <[email protected]> Cc: Anthony Liguori <[email protected]> Signed-off-by: Anthony Liguori <[email protected]>
4ed658ca925249021789d6a51fd6f99f68213f28
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/4ed658ca925249021789d6a51fd6f99f68213f28
2012-02-17 09:58:21-06:00
vl.c: Fix off-by-one bug when handling "-numa node" argument The numa_add() code was unconditionally adding 1 to the get_opt_name() return value, making it point after the end of the string if no ',' separator is present. Example of weird behavior caused by the bug: $ qemu-img create -f qcow2 this-file-image-has,cpus=5,mem=1000,in-its-name.qcow2 5G Formatting 'this-file-image-has,cpus=5,mem=1000,in-its-name.qcow2', fmt=qcow2 size=5368709120 encryption=off cluster_size=65536 $ ./x86_64-softmmu/qemu-system-x86_64 -S -monitor stdio -numa node 'this-file-image-has,cpus=5,mem=1000,in-its-name.qcow2' QEMU 1.3.50 monitor - type 'help' for more information (qemu) info numa 1 nodes node 0 cpus: 0 node 0 size: 1000 MB (qemu) This changes the code to nove the pointer only if ',' is found. Signed-off-by: Eduardo Habkost <[email protected]> Reviewed-by: Eric Blake <[email protected]> Signed-off-by: Anthony Liguori <[email protected]>
8f302cb0900ba7f38b62da5759f07b77483d6fb9
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/8f302cb0900ba7f38b62da5759f07b77483d6fb9
2013-02-04 14:38:33-06:00
cutils: unsigned int parsing functions There are lots of duplicate parsing code using strto*() in QEMU, and most of that code is broken in one way or another. Even the visitors code have duplicate integer parsing code[1]. This introduces functions to help parsing unsigned int values: parse_uint() and parse_uint_full(). Parsing functions for signed ints and floats will be submitted later. parse_uint_full() has all the checks made by opts_type_uint64() at opts-visitor.c: - Check for NULL (returns -EINVAL) - Check for negative numbers (returns -EINVAL) - Check for empty string (returns -EINVAL) - Check for overflow or other errno values set by strtoll() (returns -errno) - Check for end of string (reject invalid characters after number) (returns -EINVAL) parse_uint() does everything above except checking for the end of the string, so callers can continue parsing the remainder of string after the number. Unit tests included. [1] string-input-visitor.c:parse_int() could use the same parsing code used by opts-visitor.c:opts_type_int(), instead of duplicating that logic. Signed-off-by: Eduardo Habkost <[email protected]> Reviewed-by: Eric Blake <[email protected]> Reviewed-by: Laszlo Ersek <[email protected]> Signed-off-by: Anthony Liguori <[email protected]>
e3f9fe2d404ca10153e95499ece111c077b6690a
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/e3f9fe2d404ca10153e95499ece111c077b6690a
2013-02-04 14:38:33-06:00
dmg: Fix bdrv_open() error handling Return -errno instead of -1 on errors and add error checks in some places that didn't have one. Passing things by reference requires more correct typing, replaced a few off_ts therefore - with a 32-bit off_t this is even a fix for truncation bugs. While touching the code, fix even some more memory leaks than in the other drivers... Signed-off-by: Kevin Wolf <[email protected]> Signed-off-by: Stefan Hajnoczi <[email protected]>
69d34a360dfe773e17e72c76d15931c9b9d190f6
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/69d34a360dfe773e17e72c76d15931c9b9d190f6
2013-02-01 14:58:29+01:00
qxl: call dpy_gfx_resize when entering vga mode When entering vga mode the display size likely changes, notify all displaychangelisteners about this. Probably went unnoticed for a while as one if the first things the guest does after leaving qxl native mode and entering qxl vga mode is to set the vga video mode. But there is still a small window where qemu can operate on stale data, leading to crashes now and then. https://bugzilla.redhat.com/show_bug.cgi?id=865767 Signed-off-by: Gerd Hoffmann <[email protected]>
e32c25b5f2452c7fed4dbe8962f4a9f4831fbe24
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/e32c25b5f2452c7fed4dbe8962f4a9f4831fbe24
2012-11-05 11:49:22+01:00
ide: Fix error messages from static code analysis (no real error) Report from smatch: hw/ide/core.c:1472 ide_exec_cmd(423) error: buffer overflow 'smart_attributes' 8 <= 29 hw/ide/core.c:1474 ide_exec_cmd(425) error: buffer overflow 'smart_attributes' 8 <= 29 hw/ide/core.c:1475 ide_exec_cmd(426) error: buffer overflow 'smart_attributes' 8 <= 29 ... The upper limit of 30 was never reached because both for loops terminated when 'smart_attributes' reached end of list, so there was no real buffer overflow. Nevertheless, changing the code not only fixes the error report, but also reduces the size of smart_attributes and simplifies the for loops. Signed-off-by: Stefan Weil <[email protected]> Signed-off-by: Kevin Wolf <[email protected]>
1e53537fdaa4657d11f130a0f2673fcfb1956381
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/1e53537fdaa4657d11f130a0f2673fcfb1956381
2012-09-12 15:50:09+02:00
ehci: Validate qh is not changed unexpectedly by the guest -combine the qh check with the check for devaddr changes -also ensure that p gets set to NULL when the queue gets cancelled on devaddr change, which was not done properly before this patch Signed-off-by: Hans de Goede <[email protected]>
dafe31fc2a8653b535d58f8c7b250c0827b14420
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/dafe31fc2a8653b535d58f8c7b250c0827b14420
2012-09-11 07:42:59+02:00
vga: add some optional CGA compatibility hacks This patch adds some optional compatibility hacks (default disabled) to allow Microport UNIX to function under qemu. I've tried to structure it to be easy to add more hacks for other old CGA programs, if anyone ever needs them. Microport UNIX System V/386 v 2.1 (ca 1987) tries to program the CGA registers directly with neither the assistance of BIOS, nor with proper handling of EGA/VGA-only registers. Note that it didn't work on real VGA hardware, either (although in that case, the most obvious problems seemed to be out-of-range hsync and/or vsync signalling, rather than the issues in this patch). Eventually real MDA and/or CGA support might provide an alternative to this patch, although a hybrid approach like this patch might still be useful in marginal cases. Signed-off-by: Matthew Ogilvie <[email protected]> Signed-off-by: malc <[email protected]>
482f7bf86b43af9f6903c52726fedf82b28bf953
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/482f7bf86b43af9f6903c52726fedf82b28bf953
2012-08-24 07:44:39+04:00
fsdev: Fix parameter parsing for proxy helper This fixes a crash when using sockfd with proxy FsDriver Signed-off-by: M. Mohan Kumar <[email protected]> Signed-off-by: Aneesh Kumar K.V <[email protected]>
5fc6dbae7416d7be38565391d4c213fa9085c9fb
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/5fc6dbae7416d7be38565391d4c213fa9085c9fb
2012-01-30 10:54:16+05:30
pseries: Update SLOF This patch updates the SLOF version, introducing a number of fixes: * add proper graphics support * fix bugs with graphical terminal under grub2 * fix bugs in handling of 64-bit unit addresses * fix VSCSI representation to be closer to PowerVM * fix bugs which caused grub2 to crash Signed-off-by: Benjamin Herrenschmidt <[email protected]> Signed-off-by: David Gibson <[email protected]> Signed-off-by: Alexander Graf <[email protected]>
03332579b81ef7f2b0fcb41e45f7764a5bfc1ea4
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/03332579b81ef7f2b0fcb41e45f7764a5bfc1ea4
2012-08-15 19:43:15+02:00
configure: Check for -Werror causing failures when compiling tests Add support for checking whether test case code can compile without warnings, by recompiling each successful test with -Werror. If the -Werror version doesn't pass, we bail out. This gives us the same level of visibility of warnings in test code as --enable-werror provides for the main compile. Signed-off-by: Peter Maydell <[email protected]> Signed-off-by: Blue Swirl <[email protected]>
8dc38a78d0f74e1561c1fe4d276150a1a8a12c4c
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/8dc38a78d0f74e1561c1fe4d276150a1a8a12c4c
2012-08-11 15:07:41+00:00
ahci: Fix sglist memleak in ahci_dma_rw_buf() I noticed that in hw/ide/ahci:ahci_dma_rw_buf() we do not free the sglist. Thus, I've added a call to qemu_sglist_destroy() to fix this memory leak. In addition, I've adeed a call in qemu_sglist_destroy() to 0 all of the sglist fields, in case there is some other codepath that tries to free the sglist. Signed-off-by: Jason Baron <[email protected]> Signed-off-by: Kevin Wolf <[email protected]>
ea8d82a1ed72634f089ed1bccccd9c84cc1ab855
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/ea8d82a1ed72634f089ed1bccccd9c84cc1ab855
2012-08-10 10:25:12+02:00
alpha-linux-user: Fix a3 error return with v0 error bypass. We were failing to initialize a3 for syscalls that bypass the negative return value error check. Signed-off-by: Richard Henderson <[email protected]>
0e141977e690ee6cd06e5a842eae0be291297efa
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/0e141977e690ee6cd06e5a842eae0be291297efa
2012-08-04 09:37:49-07:00
ehci: fix td writeback Only write back the dwords the hc is supposed to update. Should not make a difference in theory as the guest must not touch the td while it is active to avoid races. But it is still more correct. Signed-off-by: Gerd Hoffmann <[email protected]>
4ed1c57a64992d84376b446b0c60edff2486681b
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/4ed1c57a64992d84376b446b0c60edff2486681b
2012-07-09 09:57:46+02:00
block: simplify path_is_absolute On Windows, all the logic is already in is_windows_drive and is_windows_drive_prefix. On POSIX, there is no need to look out for colons. The win32 code changes the behaviour in some cases, we could have something like "d:foo.img". The old code would treat it as relative path, the new one as absolute. Now the path is absolute, because to go from c:/program files/blah to d:foo.img you cannot say c:/program files/blah/d:foo.img. You have to say d:foo.img. But you could also say it's relative because (I think, at least it was like that in DOS 15 years ago) d:foo.img is relative to the current path of drive D. Considering how path_is_absolute is used by path_combine, I think it's better to treat it as absolute. Signed-off-by: Paolo Bonzini <[email protected]> Signed-off-by: Kevin Wolf <[email protected]>
f53f4da9c68941fe70a3ca9e3fc792c8acf69c0c
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/f53f4da9c68941fe70a3ca9e3fc792c8acf69c0c
2012-05-10 10:32:12+02:00
scsi: remove useless debug messages Optional inquiry information is declared obsolete in the latest versions of the standard; invalid CDBs or unsupported VPD pages are supported can be diagnosed with trace_scsi_inquiry. Signed-off-by: Paolo Bonzini <[email protected]>
2a92fbff49a286ddad1686d60532d791f20f4ce1
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/2a92fbff49a286ddad1686d60532d791f20f4ce1
2012-05-07 08:44:21+02:00
rename qemu_sendv to iov_send, change proto and move declarations to iov.h Rename arguments and use size_t for sizes instead of int, from int qemu_sendv(int sockfd, struct iovec *iov, int len, int iov_offset) to ssize_t iov_send(int sockfd, struct iovec *iov, size_t offset, size_t bytes) The main motivation was to make it clear that length and offset are in _bytes_, not in iov elements: it was very confusing before, because all standard functions which deals with iovecs expects number of iovs, not bytes, even the fact that struct iovec has iov_len and iov_ prefix does not help. With "bytes" and "offset", especially since they're now size_t, it is much more explicit. Also change the return type to be ssize_t instead of int. This also changes it to match other iov-related functons, but not _quite_: there's still no argument indicating where iovec ends, ie, no iov_cnt parameter as used in iov_size() and friends. If will be added in subsequent patch/rewrite. All callers of qemu_sendv() and qemu_recvv() and related, like qemu_co_sendv() and qemu_co_recvv(), were checked to verify that it is safe to use unsigned datatype instead of int. Note that the order of arguments is changed to: offset and bytes (len and iov_offset) are swapped with each other. This is to make them consistent with very similar functions from qemu_iovec family, where offset always follows qiov, to mean the place in it to start from. Signed-off-by: Michael Tokarev <[email protected]>
3e80bf9351f8fec9085c46df6da075efd5e71003
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/3e80bf9351f8fec9085c46df6da075efd5e71003
2012-06-11 23:12:11+04:00
qemu-timer: Fix limits for w32 mmtimer timeSetEvent only accepts delays in the range which is returned by timeGetDevCaps. The lower limit is typically 1 (= 1 ms), so the constant value of 1 in the old code usually worked. The upper limit can be as low as 10000 ms, so the latest changes in QEMU's timer handling which introduced timeout values above that limit could result in failures of timeSetEvent when the timer was re-armed. Signed-off-by: Stefan Weil <[email protected]>
40f08e87f613273f9dcc8df7d6a0f574b7d28d05
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/40f08e87f613273f9dcc8df7d6a0f574b7d28d05
2012-05-03 07:04:48+02:00
nbd: consistently use ssize_t GCC (pedantically, but correctly) considers that a negative ssize_t may become positive when casted to int. This may cause uninitialized variable warnings when a function returns such a negative ssize_t and is inlined. Propagate ssize_t return types to avoid this. Signed-off-by: Paolo Bonzini <[email protected]>
94e7340b5db8bce7866e44e700ffa8fd26585c7e
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/94e7340b5db8bce7866e44e700ffa8fd26585c7e
2012-04-19 16:36:43+02:00
usb-ehci: Drop cached qhs when the doorbell gets rung The purpose of the IAAD bit / the doorbell is to make the ehci controller forget about cached qhs, this is mainly used when cancelling transactions, the qh is unlinked from the async schedule and then the doorbell gets rung, once the doorbell is acked by the controller the hcd knows that the qh is no longer in use and that it can do something else with the memory, such as re-use it for a new qh! But we keep our struct representing this qh around for circa 250 ms. This allows for a (mightily large) race window where the following could happen: -hcd submits a qh at address 0xdeadbeef -our ehci code sees the qh, sends a request to a usb-device, gets a result of USB_RET_ASYNC, sets the async_state of the qh to EHCI_ASYNC_INFLIGHT -hcd unlinks the qh at address 0xdeadbeef -hcd rings the doorbell, wait for us to ack it -hcd re-uses the qh at address 0xdeadbeef -our ehci code sees the qh, looks in the async_queue, sees there already is a qh at address 0xdeadbeef there with async_state of EHCI_ASYNC_INFLIGHT, does nothing -the *original* (which the hcd thinks it has cancelled) transaction finishes -our ehci code sees the qh on yet another pass through the async list, looks in the async_queue, sees there already is a qh at address 0xdeadbeef there with async_state of EHCI_ASYNC_COMPLETED, and finished the transaction with the results of the *original* transaction. Not good (tm), this patch fixes this race by removing all qhs which have not been seen during the last cycle through the async list immidiately when the doorbell is rung. Note this patch does not fix any actually observed problem, but upon reading of the EHCI spec it became apparent to me that the above race could happen and the usb-ehci behavior from before this patch is not good. Signed-off-by: Hans de Goede <[email protected]> Signed-off-by: Gerd Hoffmann <[email protected]>
4be23939ab0d7019c7e59a37485b416fbbf0f073
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/4be23939ab0d7019c7e59a37485b416fbbf0f073
2012-03-07 12:28:03+01:00
sdl: remove NULL check, g_malloc0 can't fail Signed-off-by: Alon Levy <[email protected]> Signed-off-by: Gerd Hoffmann <[email protected]>
63ea491d4efc1e02cda3d335db3a46c81adf14ee
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/63ea491d4efc1e02cda3d335db3a46c81adf14ee
2012-02-27 09:46:51+01:00
usb-ehci: sanity-check iso xfers This patch adds a sanity check to itd processing to make sure the endpoint addressed by the guest is actually an iso endpoint. Also verify that usb drivers don't return USB_RET_ASYNC which is illegal for iso xfers. Signed-off-by: Gerd Hoffmann <[email protected]>
aa0568ff2559d7717f4684af6a83d0bd1a125f56
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/aa0568ff2559d7717f4684af6a83d0bd1a125f56
2012-02-27 13:37:36+01:00
g_thread_init users: don't call it if glib >= 2.31 since commit f9b29ca03 included in release 2.31 (docs below say 2.32 but that is not correct) and onwards g_thread_init is deprecated and calling it is not required: http://developer.gnome.org/glib/unstable/glib-Deprecated-Thread-APIs.html#g-thread-init g_thread_init has been deprecated since version 2.32 and should not be used in newly-written code. This function is no longer necessary. The GLib threading system is automatically initialized at the start of your program. Fixes bulid failure when warnings are treated as errors on fedora 17. I only tested the change to vl.c, and copy pasted to the two other locations (couldn't decide if a wrapper for calling g_thread_init is uglier). Signed-off-by: Alon Levy <[email protected]> Signed-off-by: Anthony Liguori <[email protected]>
42ed3727536ccf80c87942b3f04e7378fe90f107
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/42ed3727536ccf80c87942b3f04e7378fe90f107
2011-12-20 15:44:31-06:00
cow: convert to .bdrv_co_is_allocated() The cow block driver does not keep internal state for cluster lookups. This means it is safe to perform cluster lookups in coroutine context without risk of race conditions that corrupt internal state. Signed-off-by: Stefan Hajnoczi <[email protected]> Signed-off-by: Kevin Wolf <[email protected]>
81145834d39897c6f153ac26a4077f90f269c5fc
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/81145834d39897c6f153ac26a4077f90f269c5fc
2011-12-05 14:51:37+01:00
x86/cpuid: Tighten parsing of tsc_freq=FREQ cpu_x86_find_by_name() uses strtosz_suffix_unit(), but screws up the error checking. It detects some failures, but not all. Undetected failures result in a zero tsc_khz value (error value -1 divided by 1000), which means "no tsc_freq set". To reproduce, try "-cpu qemu64,tsc_freq=9999999T". strtosz_suffix_unit() fails, because the value overflows int64_t, Signed-off-by: Markus Armbruster <[email protected]> Signed-off-by: Anthony Liguori <[email protected]>
45009a3087b4acd8b1c91fcd0b1ee723ac3b0aec
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/45009a3087b4acd8b1c91fcd0b1ee723ac3b0aec
2011-11-28 16:20:52-06:00
qemu-img: Tighten parsing of size arguments strtosz_suffix() fails unless the size is followed by 0, whitespace or ','. Useless here, because we need to fail for any junk following the size, even if it starts with whitespace or ','. Check manually. Things like "qemu-img create xxx 1024," and "qemu-img convert -S '1024 junk'" are now caught. Signed-off-by: Markus Armbruster <[email protected]> Signed-off-by: Anthony Liguori <[email protected]>
e36b369577784ac59a7d74725368eec66f23ad52
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/e36b369577784ac59a7d74725368eec66f23ad52
2011-11-28 16:20:52-06:00
hw/pc.c: Fix use-while-uninitialized of fd_type[] Fix a use-while-uninitialized of the fd_type[] array (introduced in commit 34d4260e1, noticed by Coverity). This is more theoretical than practical, since it's quite hard to get here with floppy==NULL (the qdev_try_create() of the isa-fdc device has to fail). Signed-off-by: Peter Maydell <[email protected]> Signed-off-by: Kevin Wolf <[email protected]>
980bda8ba2322f665934913fbe6c4c202d61a9f9
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/980bda8ba2322f665934913fbe6c4c202d61a9f9
2011-11-11 14:02:59+01:00
hw/lan9118.c: Add missing 'break' to fix buffer overrun Add a missing 'break' statement to fix a buffer overrun when executing the EEPROM write-all command. Spotted by Coverity (see bug 887883). Signed-off-by: Peter Maydell <[email protected]> Signed-off-by: Stefan Hajnoczi <[email protected]>
0e3b800e71cb7759d099eabbd8ad4c4fe848e381
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/0e3b800e71cb7759d099eabbd8ad4c4fe848e381
2011-11-10 12:29:50+00:00
pseries: Update SLOF firmware image This patch updates the SLOF submodule and precompiled image. The new SLOF versions contains two changes of note: * The previous SLOF has a bug in SCSI condition handling that was exposed by recent updates to qemu's SCSI emulation. This update fixes the bug. * The previous SLOF has a bug in its addressing of SCSI devices, which can be exposed under certain conditions. The new SLOF also fixes this. Signed-off-by: David Gibson <[email protected]> Signed-off-by: Alexander Graf <[email protected]>
bdcf9d6cd4ff987e58ba4f311ba7b1a33cf3ce5e
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/bdcf9d6cd4ff987e58ba4f311ba7b1a33cf3ce5e
2011-10-30 17:11:53+01:00
Add support for net bridge The most common use of -net tap is to connect a tap device to a bridge. This requires the use of a script and running qemu as root in order to allocate a tap device to pass to the script. This model is great for portability and flexibility but it's incredibly difficult to eliminate the need to run qemu as root. The only really viable mechanism is to use tunctl to create a tap device, attach it to a bridge as root, and then hand that tap device to qemu. The problem with this mechanism is that it requires administrator intervention whenever a user wants to create a guest. By essentially writing a helper that implements the most common qemu-ifup script that can be safely given cap_net_admin, we can dramatically simplify things for non-privileged users. We still support existing -net tap options as a mechanism for advanced users and backwards compatibility. Currently, this is very Linux centric but there's really no reason why it couldn't be extended for other Unixes. A typical invocation would be similar to one of the following: qemu linux.img -net bridge -net nic,model=virtio qemu linux.img -net tap,helper="/usr/local/libexec/qemu-bridge-helper" -net nic,model=virtio qemu linux.img -netdev bridge,id=hn0 -device virtio-net-pci,netdev=hn0,id=nic1 qemu linux.img -netdev tap,helper="/usr/local/libexec/qemu-bridge-helper",id=hn0 -device virtio-net-pci,netdev=hn0,id=nic1 The default bridge that we attach to is br0. The thinking is that a distro could preconfigure such an interface to allow out-of-the-box bridged networking. Alternatively, if a user wants to use a different bridge, a typical invocation would be simliar to one of the following: qemu linux.img -net bridge,br=qemubr0 -net nic,model=virtio qemu linux.img -net tap,helper="/usr/local/libexec/qemu-bridge-helper --br=qemubr0" -net nic,model=virtio qemu linux.img -netdev bridge,br=qemubr0,id=hn0 -device virtio-net-pci,netdev=hn0,id=nic1 qemu linux.img -netdev tap,helper="/usr/local/libexec/qemu-bridge-helper --br=qemubr0",id=hn0 -device virtio-net-pci,netdev=hn0,id=nic1 Signed-off-by: Anthony Liguori <[email protected]> Signed-off-by: Richa Marwaha <[email protected]> Signed-off-by: Corey Bryant <[email protected]> Signed-off-by: Anthony Liguori <[email protected]>
a7c36ee4920ea3acc227a0248dd161693f207357
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/a7c36ee4920ea3acc227a0248dd161693f207357
2012-02-01 16:24:40-06:00
kvm_init didn't set return value after create vm failed And kvm_ioctl(s, KVM_CREATE_VM, 0)'s return value can be < -1, so change the check of vmfd at label 'err'. Signed-off-by: Xu He Jie <[email protected]> Signed-off-by: Anthony Liguori <[email protected]>
db9eae1c49fe2766a7709d7b2c4cdfcd91b9c25b
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/db9eae1c49fe2766a7709d7b2c4cdfcd91b9c25b
2011-11-01 16:52:05-05:00
target-xtensa: mark reserved and TBD opcodes Reserved opcodes must generate illegal instruction exception. Usually they signal emulation quality problems. Not implemented opcodes are good to see. Signed-off-by: Max Filippov <[email protected]> Signed-off-by: Blue Swirl <[email protected]>
91a5bb76d47e1b06f0b7b67cae8497d8efc6ab87
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/91a5bb76d47e1b06f0b7b67cae8497d8efc6ab87
2011-09-10 16:57:38+00:00
fw_cfg: fix crash if FW_CFG_WRITE_CHANNEL is used incorrectly Avoid a crash if the guest combines FW_CFG_WRITE_CHANNEL with a wrong value. Signed-off-by: Blue Swirl <[email protected]>
962d4b2834e6a3b37784391a906b5fe2a7e96b74
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/962d4b2834e6a3b37784391a906b5fe2a7e96b74
2011-09-04 06:38:24+00:00
Don't use g_thread_get_initialized. Initialize glib threads unconditionally in main() instead of using g_thread_get_initialized in the 9p code. Fixes a build failure on RHEL-5, which ships glib 2.12. g_thread_get_initialized was added in 2.20. Signed-off-by: Gerd Hoffmann <[email protected]> Signed-off-by: Anthony Liguori <[email protected]>
ad8b818686623ea4ad300a7a144fcfb2bce77050
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/ad8b818686623ea4ad300a7a144fcfb2bce77050
2011-09-09 12:58:16-05:00
tcg/mips: Fix regression caused by typo (copy + paste bug) cppcheck reports an error: qemu/tcg/mips/tcg-target.c:1487: error: Invalid number of character (() The unpatched code won't compile on mips hosts starting with commit cea5f9a28faa528b6b1b117c9ab2d8828f473fef. Cc: Blue Swirl <[email protected]> Signed-off-by: Stefan Weil <[email protected]> Signed-off-by: Blue Swirl <[email protected]>
ea15fb067212bb79291f9b76c5c76d45b62f58e1
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/ea15fb067212bb79291f9b76c5c76d45b62f58e1
2011-07-20 21:03:37+00:00
exec-all.h: Make MAX_OP_PER_INSTR large enough for target-arm's uses The target-arm frontend's worst-case TCG ops per instr is 194 (and in general many of the "load multiple registers" ARM instructions generate more than 100 TCG ops). Raise MAX_OP_PER_INSTR accordingly to avoid possible buffer overruns. Since it doesn't make any sense for the "64 bit guest on 32 bit host" case to have a smaller limit than the normal case, we collapse the two cases back into each other again. (This increase costs us about 14K in extra static buffer space and 21K of extra margin at the end of a 32MB codegen buffer.) Signed-off-by: Peter Maydell <[email protected]> Signed-off-by: Blue Swirl <[email protected]>
5b620fb698e69a5386f2f02c7c455bdbdd59a52b
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/5b620fb698e69a5386f2f02c7c455bdbdd59a52b
2011-07-12 20:29:46+00:00
spice: drop obsolete iothread locking We don't use qemu internals from spice server context any more. Thus we don't also need to grab the iothread mutex from spice server context. And we don't have to temporarely release the lock to avoid deadlocks. Drop all the calls. Signed-off-by: Gerd Hoffmann <[email protected]>
196a778428989217b82de042725dc8eb29c8f8d8
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/196a778428989217b82de042725dc8eb29c8f8d8
2011-05-03 15:35:48+02:00
enable vm_clock to "warp" in the iothread+icount case The previous patch however is not enough, because if the virtual CPU goes to sleep waiting for a future timer interrupt to wake it up, qemu deadlocks. The timer interrupt never comes because time is driven by icount, but the vCPU doesn't run any insns. You could say that VCPUs should never go to sleep in icount mode if there is a pending vm_clock timer; rather time should just warp to the next vm_clock event with no sleep ever taking place. Even better, you can sleep for some time related to the time left until the next event, to avoid that the warps are too visible externally; for example, you could be sending network packets continously instead of every 100ms. This is what this patch implements. qemu_clock_warp is called: 1) whenever a vm_clock timer is adjusted, to ensure the warp_timer is synchronized; 2) at strategic points in the CPU thread, to make sure the insn counter is synchronized before the CPU starts running. In any case, the warp_timer is disabled while the CPU is running, because the insn counter will then be making progress on its own. Signed-off-by: Paolo Bonzini <[email protected]> Tested-by: Edgar E. Iglesias <[email protected]> Signed-off-by: Edgar E. Iglesias <[email protected]>
ab33fcda9f96b9195dfb3fcf5bd9bb5383caeaea
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/ab33fcda9f96b9195dfb3fcf5bd9bb5383caeaea
2011-04-15 09:27:56+02:00
ccid: add ccid-card-emulated device This devices uses libcacard (internal) to emulate a smartcard conforming to the CAC standard. It attaches to the usb-ccid bus. Usage instructions (example command lines) are in the following patch in docs/ccid.txt. It uses libcacard which uses nss, so it can work with both hw cards and certificates (files). Signed-off-by: Alon Levy <[email protected]> --- changes from v20->v21: (Jes Sorenson review) * cosmetics * use qemu-thread and qemu_malloc/qemu_free changes from v19->v20: * checkpatch.pl changes from v18->v19: * add qdev.desc * backend: drop the enumeration property, back to using a string one. changes from v16->v17: * use PROP_TYPE_ENUM for backend changes from v15->v16: * fix error reporting in initfn * bump copyright year * update copyright license changes from v1: * remove stale comments, use only c-style comments * bugfix, forgot to set recv_len * change reader name to 'Virtual Reader'
585738a6e62eb586f24782dee34306e7c375f9ba
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/585738a6e62eb586f24782dee34306e7c375f9ba
2011-04-01 19:07:49-05:00
rtl8139: use TARGET_FMT_plx in debug messages Prevents a compilation failure when DEBUG_RTL8139 is defined: CC libhw32/rtl8139.o cc1: warnings being treated as errors hw/rtl8139.c: In function ‘rtl8139_cplus_transmit_one’: hw/rtl8139.c:1960: error: format ‘%8lx’ expects type ‘long unsigned int’, but argument 5 has type ‘target_phys_addr_t’ make[1]: *** [rtl8139.o] Error 1 Signed-off-by: Benjamin Poirier <[email protected]> Cc: Igor V. Kovalenko <[email protected]> Reviewed-by: Stefan Hajnoczi <[email protected]> Signed-off-by: Aurelien Jarno <[email protected]>
afcd9c0dcd1d6ab14a72db6abde76142c6a0ac12
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/afcd9c0dcd1d6ab14a72db6abde76142c6a0ac12
2011-04-25 22:17:47+02:00
vl.c: Fix compilation failure if CONFIG_SDL isn't defined Fix a compilation failure if CONFIG_SDL isn't defined (gcc complained that the label 'invalid_display' wasn't used). Signed-off-by: Peter Maydell <[email protected]> Signed-off-by: Anthony Liguori <[email protected]>
05175535a3b6c78186ec3538bcd1b01f30ba571e
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/05175535a3b6c78186ec3538bcd1b01f30ba571e
2011-03-25 07:28:09-05:00
target-arm: Use TCG temporary leak debugging facilities Use the new TCG temporary leak debugging facilities to check that each ARM instruction does not leak temporaries. Signed-off-by: Peter Maydell <[email protected]> Signed-off-by: Aurelien Jarno <[email protected]>
3849902cd852d7de0783abc41cb0c57949d567fd
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/3849902cd852d7de0783abc41cb0c57949d567fd
2011-03-07 09:26:18+01:00
simpletrace: Thread-safe tracing Trace events outside the global mutex cannot be used with the simple trace backend since it is not thread-safe. There is no check to prevent them being enabled so people sometimes learn this the hard way. This patch restructures the simple trace backend with a ring buffer suitable for multiple concurrent writers. A writeout thread empties the trace buffer when threshold fill levels are reached. Should the writeout thread be unable to keep up with trace generation, records will simply be dropped. Each time events are dropped a special record is written to the trace file indicating how many events were dropped. The event ID is 0xfffffffffffffffe and its signature is dropped(uint32_t count). Signed-off-by: Stefan Hajnoczi <[email protected]>
0b5538c300a56c3cfb33022840fe0b4968147e7a
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/0b5538c300a56c3cfb33022840fe0b4968147e7a
2011-03-07 15:34:17+00:00
vnc: fix a memory leak in threaded vnc server VncJobQueue's buffer is intended to be used for as the output buffer for all operations in this queue, but unfortunatly. vnc_async_encoding_start() is in charge of setting this buffer as the current output buffer, but vnc_async_encoding_end() was not writting the changes back to VncJobQueue, resulting in a big and ugly memleak. Signed-off-by: Corentin Chary <[email protected]> Signed-off-by: Anthony Liguori <[email protected]>
c53af37f375ce9c4999ff451c51173bdc1167e67
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/c53af37f375ce9c4999ff451c51173bdc1167e67
2011-02-25 16:04:43-06:00
qemu-char: Check for missing backend name Check if the backend option is missing before searching the backend table. This fixes a NULL pointer dereference when QEMU is invoked with the following invalid command-line: $ qemu -chardev id=foo,path=/tmp/socket Previously QEMU would segfault, now it produces this error message: chardev: "foo" missing backend Signed-off-by: Stefan Hajnoczi <[email protected]> Signed-off-by: Aurelien Jarno <[email protected]>
1bbd185fa826a2da7c6089b968f9f7d08438c2c8
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/1bbd185fa826a2da7c6089b968f9f7d08438c2c8
2011-02-20 18:26:28+01:00
fix QemuOpts leak Now that no backend's open function saves the passed QemuOpts, fix a leak in the qemu_chr_open backwards-compatible parser. Signed-off-by: Paolo Bonzini <[email protected]> Signed-off-by: Anthony Liguori <[email protected]>
363f8cb9bcd308bd03d28e04ea5f5557dea5d5e8
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/363f8cb9bcd308bd03d28e04ea5f5557dea5d5e8
2011-02-01 16:50:44-06:00
Avoid divide by zero when there is no block device to migrate When block migration is requested and no read-write block device is present, a divide by zero exception is triggered because total_sector_sum equals zero. Signed-off-by: Pierre Riteau <[email protected]> Signed-off-by: Kevin Wolf <[email protected]>
8b6b2afcf85dd5ff33075e93a2e30fbea34c5a55
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/8b6b2afcf85dd5ff33075e93a2e30fbea34c5a55
2011-01-24 11:08:50+01:00
Stop current VCPU on synchronous reset requests If some I/O operation ends up calling qemu_system_reset_request in VCPU context, we record this and inform the io-thread, but we do not terminate the VCPU loop. This can lead to fairly unexpected behavior if the triggering reset operation is supposed to work synchronously. Fix this for TCG (when run in deterministic I/O mode) by setting the VCPU on stop and issuing a cpu_exit. KVM requires some more work on its VCPU loop. [ ported from qemu-kvm ] Signed-off-by: Jan Kiszka <[email protected]> Signed-off-by: Marcelo Tosatti <[email protected]>
b4a3d965dee06d52281496bb5fd0a5cb5534b545
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/b4a3d965dee06d52281496bb5fd0a5cb5534b545
2011-02-14 12:39:44-02:00
cirrus_vga: fix division by 0 for color expansion rop Commit d85d0d3883f5a567fa2969a0396e42e0a662b3fa introduces a regression with Windows ME that leads to a division by 0 and a crash. It uses the color expansion rop with the source pitch set to 0. This is something allowed, as the manual explicitely says "When the source of color-expand data is display memory, the source pitch is ignored.". This patch fixes this regression by computing sx, sy and others variables only if they are going to be used later, that is for a plain copy ROP. It basically consists in moving code. Signed-off-by: Aurelien Jarno <[email protected]>
92d675d1c1f23f3617e24b63c825074a1d1da44b
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/92d675d1c1f23f3617e24b63c825074a1d1da44b
2011-01-04 21:58:24+01:00
target-sparc: fix udiv(cc) and sdiv(cc) Since commit 5a4bb580cdb10b066f9fd67658b31cac4a4ea5e5, Xorg crashes on a Debian Etch image. The commit itself is fine, but it triggers a bug due to wrong computation of flags for udiv(cc) and sdiv(cc). This patch only compute cc_src2 for the cc version of udiv/sdiv. It also moves the update of cc_dst and cc_op to the helper, as it is faster doing it here when there is already an helper. Signed-off-by: Aurelien Jarno <[email protected]> Signed-off-by: Blue Swirl <[email protected]>
0fcec41eec0432c77645b4a407d3a3e030c4abc4
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/0fcec41eec0432c77645b4a407d3a3e030c4abc4
2010-12-28 18:44:51+00:00
target-arm: Set privileged bit in TB flags correctly for M profile M profile ARM cores don't have a CPSR mode field. Set the bit in the TB flags that indicates non-user mode correctly for these cores. Signed-off-by: Peter Maydell <[email protected]> Reviewed-by: Aurelien Jarno <[email protected]> Signed-off-by: Aurelien Jarno <[email protected]>
05ed9a991987fd2f117914f9b0f7157553837d1b
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/05ed9a991987fd2f117914f9b0f7157553837d1b
2011-01-14 20:39:19+01:00
[virto-9p] Implement TLOCK Synopsis size[4] TLock tag[2] fid[4] flock[n] size[4] RLock tag[2] status[1] Description Tlock is used to acquire/release byte range posix locks on a file identified by given fid. The reply contains status of the lock request flock structure: type[1] - Type of lock: F_RDLCK, F_WRLCK, F_UNLCK flags[4] - Flags could be either of P9_LOCK_FLAGS_BLOCK(1) - Blocked lock request, if there is a conflicting lock exists, wait for that lock to be released. P9_LOCK_FLAGS_RECLAIM(2) - Reclaim lock request, used when client is trying to reclaim a lock after a server restrart (due to crash) start[8] - Starting offset for lock length[8] - Number of bytes to lock If length is 0, lock all bytes starting at the location 'start' through to the end of file pid[4] - PID of the process that wants to take lock client_id[4] - Unique client id status[1] - Status of the lock request, can be P9_LOCK_SUCCESS(0), P9_LOCK_BLOCKED(1), P9_LOCK_ERROR(2) or P9_LOCK_GRACE(3) P9_LOCK_SUCCESS - Request was successful P9_LOCK_BLOCKED - A conflicting lock is held by another process P9_LOCK_ERROR - Error while processing the lock request P9_LOCK_GRACE - Server is in grace period, it can't accept new lock requests in this period (except locks with P9_LOCK_FLAGS_RECLAIM flag set) Signed-off-by: M. Mohan Kumar <[email protected]> Signed-off-by: Aneesh Kumar K.V <[email protected]> Signed-off-by: Venkateswararao Jujjuri <[email protected]>
82cc3ee88ba238ec3ba96f4673d8a184588b82a4
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/82cc3ee88ba238ec3ba96f4673d8a184588b82a4
2010-10-20 12:10:58-05:00
virtio-pci: Check for virtio_blk_init() failure It can't actually fail now, but the next commit will change that. s390_virtio_blk_init() already checks for failure, but virtio_blk_init_pci() doesn't. Fix that. Signed-off-by: Markus Armbruster <[email protected]> Signed-off-by: Kevin Wolf <[email protected]>
ac0c14d71b68ac18f03a876028e332534e1e6a3e
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/ac0c14d71b68ac18f03a876028e332534e1e6a3e
2010-07-13 17:48:17+02:00
qdev-properties: Fix (u)intXX parsers scanf calls must not use PRI constants, they have probably the wrong size and corrupt memory. We could replace them by SCN ones, but strtol is simpler than scanf here anyway. While at it, also fix the parsers to reject garbage after the number ("4096xyz" was accepted before). Signed-off-by: Kevin Wolf <[email protected]> Richard Henderson <[email protected]> Signed-off-by: Aurelien Jarno <[email protected]>
449041d4db1f82f281fe097e832f07cd9ee1e864
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/449041d4db1f82f281fe097e832f07cd9ee1e864
2010-06-30 22:58:55+02:00
block: fix sector comparism in multiwrite_req_compare The difference between the start sectors of two requests can be larger than the size of the "int" type, which can lead to a not correctly sorted multiwrite array and thus spurious I/O errors and filesystem corruption due to incorrect request merges. So instead of doing the cute sector arithmetics trick spell out the exact comparisms. Spotted by Kevin Wolf based on a testcase from Michael Tokarev. Signed-off-by: Christoph Hellwig <[email protected]> Signed-off-by: Kevin Wolf <[email protected]>
77be4366baface6613cfc312ba281f8e5860997c
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/77be4366baface6613cfc312ba281f8e5860997c
2010-05-21 11:49:19+02:00
target-i386: fix crash on x86 32bit linux host with hw breakpoint exceptions If you make use of hw breakpoints on a 32bit x86 linux host, qemu will segmentation fault when processing the exception. The problem is that the value of env is stored in $ebp in the op_helper raise_exception() function, and it can have the wrong value when calling it from non generated code. It is possible to work around the problem by restoring the value of env before calling raise_exception() using a new helper function that takes (CPUState *) as one of the arguments. Signed-off-by: Jason Wessel <[email protected]> Signed-off-by: Aurelien Jarno <[email protected]>
63a54736f31f9e11da6fb52319bba26e7d24f571
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/63a54736f31f9e11da6fb52319bba26e7d24f571
2010-02-28 19:20:02+01:00
virtio-net: fix network stall under load Fix a race condition where qemu finds that there are not enough virtio ring buffers available and the guest make more buffers available before qemu can enable notifications. Signed-off-by: Tom Lendacky <[email protected]> Signed-off-by: Anthony Liguori <[email protected]>
06b1297017415ae6a07a0e97ad7d8e90b2d95823
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/06b1297017415ae6a07a0e97ad7d8e90b2d95823
2010-02-10 12:48:48-06:00
block/raw-posix: Abort on pread beyond end of non-growable file This shouldn't happen under any normal circumstances. However, it looks like it's possible to achieve this with corrupted images. Without this patch raw_pread is hanging in an endless loop in such cases. The patch is not affecting growable files, for which such reads happen in normal use cases. raw_pread_aligned already handles these cases and won't return zero in the first place. Signed-off-by: Kevin Wolf <[email protected]> Signed-off-by: Anthony Liguori <[email protected]>
053965c7ff5b260672719884e644ce4117d01995
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/053965c7ff5b260672719884e644ce4117d01995
2010-01-26 16:41:07-06:00
vmware_vga: Check cursor dimensions passed from guest to avoid buffer overflow Check that the cursor dimensions passed from the guest for the DEFINE_CURSOR command don't overflow the available space in the cursor.image[] or cursor.mask[] arrays before copying data from the guest into those arrays. Signed-off-by: Roland Dreier <[email protected]> Signed-off-by: Anthony Liguori <[email protected]>
f2d928d44ebc918750c94f3605c1417f1f653ec9
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/f2d928d44ebc918750c94f3605c1417f1f653ec9
2010-01-11 09:56:30-06:00
block: Introduce BDRV_O_NO_BACKING If an image references a backing file that doesn't exist, qemu-img info fails to open this image. Exactly in this case the info would be valuable, though: the user might want to find out which file is missing. This patch introduces a BDRV_O_NO_BACKING flag to ignore the backing file when opening the image. qemu-img info is the first user and provides info now even if the backing file is invalid. Signed-off-by: Kevin Wolf <[email protected]> Signed-off-by: Anthony Liguori <[email protected]>
b783e409bf17b92f4af8dc5d6bd040d0092f33e0
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/b783e409bf17b92f4af8dc5d6bd040d0092f33e0
2010-01-13 17:14:15-06:00
qemu-io: Fix memory leak Signed-off-by: Kevin Wolf <[email protected]> Signed-off-by: Anthony Liguori <[email protected]>
40a0d7c395f4d18a8061ba075d8f9aab2fa0ec2a
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/40a0d7c395f4d18a8061ba075d8f9aab2fa0ec2a
2009-12-18 11:26:26-06:00
osdep: Fix runtime failure on older Linux kernels If QEMU finds newer kernel header files on compilation time, it will use advertised features like pipe2 or SOCK_CLOEXEC by just doing a compile test. If later the executables are executed on an older kernel (<2.6.27, like Xen Dom0 2.6.18), then QEMU will fail on opening sockets and creating pipes and returns the rather unspecific "qemu_init_main_loop failed". This patch fixes this by checking the return values of these calls for EINVAL and ENOSYS and falling back to the older versions automatically. Signed-off-by: Andre Przywara <[email protected]> Signed-off-by: Aurelien Jarno <[email protected]>
3a03bfa5a219fe06779706315f2555622b51193c
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/3a03bfa5a219fe06779706315f2555622b51193c
2009-12-18 16:29:38+01:00
qemu-img: Fix memory leak Signed-off-by: Kevin Wolf <[email protected]> Signed-off-by: Anthony Liguori <[email protected]>
7078dead94a24bc4e5819e4a6448bd5738a2d088
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/7078dead94a24bc4e5819e4a6448bd5738a2d088
2009-12-03 15:26:00-06:00
virtio: verify features on load migrating between hosts which have different features might break silently, if the migration destination does not support some features supported by source. Prevent this from happening by comparing acked feature bits with the mask supported by the device. Signed-off-by: Michael S. Tsirkin <[email protected]> Signed-off-by: Anthony Liguori <[email protected]>
6d74ca5aa83b83fb52332f7735c61ecb7a5328c1
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/6d74ca5aa83b83fb52332f7735c61ecb7a5328c1
2009-12-12 07:59:38-06:00
net: use qemu_send_packet_raw() in qemu_announce_self() Use qemu_send_packet_raw to send gratuitous arp. This will ensure that vnet header is handled properly. Also, avoid sending the gratuitous packet to the guest. There doesn't appear to be any reason for doing that and the code will currently just crash if the NIC is not associated with a vlan. Signed-off-by: Gleb Natapov <[email protected]> Signed-off-by: Mark McLoughlin <[email protected]> Signed-off-by: Anthony Liguori <[email protected]>
b04c4134d6de28c249277de19e523bfbe4aebbd6
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/b04c4134d6de28c249277de19e523bfbe4aebbd6
2009-10-27 12:29:01-05:00
hotplug: more fixes for scsi disk hotplug. Changes: - create common scsi_hot_add function for adding a scsi disk to a adapter. - Add sanity checks. You can't drive_add disks to the VGA any more. - Ignore the unit value calculated by drive_init, add a comment explaining why. Review the patch to find the details ;) Signed-off-by: Gerd Hoffmann <[email protected]> Signed-off-by: Anthony Liguori <[email protected]>
30d335d68d93705eb346387c03bb6aca0f52454a
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/30d335d68d93705eb346387c03bb6aca0f52454a
2009-10-27 12:28:42-05:00
qemu/pci: clarify pci config load routine PCI load routine has to be called with size equal to 256 (otherwise it will crash in weird ways). So assert this, making code clearer. Also avoid dynamically sized array on stack - good for portability. Signed-off-by: Michael S. Tsirkin <[email protected]> Cc: Juan Quintela <[email protected]> Signed-off-by: Anthony Liguori <[email protected]>
05fcfada5e45b900c32ca6bccf0ce52cb5422509
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/05fcfada5e45b900c32ca6bccf0ce52cb5422509
2009-10-06 14:36:13-05:00