Activity

From 07/26/2010 to 08/24/2010

08/24/2010

06:22 pm Revision 2446333c: Rearrange block headers
Changing block.h or blockdev.h resulted in recompiling most objects.
Move DriveInfo typedef and BlockInterfaceType e...
Blue Swirl

08/23/2010

11:10 pm Revision e945fb76: Merge remote branch 'qemu-kvm/uq/master' into staging
Anthony Liguori
01:11 am Revision 916452df: VGA: Don't register deprecated VBE range
Old versions of the BOCHs VGA BIOS (cira 2003) made use of VBE
registers at 0xff80/81. In VBE API version 0xb0c2 the...
Alex Williamson
01:11 am Revision 05705ce2: QMP doc: Add 'Stability Considerations' section
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Luiz Capitulino
01:11 am Revision d29f3196: QMP: Update README file
A number of changes I prefer to do in one shot:
- Fix example
- Small clarifications
- Add multiple monitors example...
Luiz Capitulino
01:11 am Revision 0ec0291d: QMP/monitor: update do_info_version() to output broken down version string
This code was originally developed by Daniel P. Berrange <berrange@redhat.com>
Signed-off-by: Miguel Di Ciurcio Filh...
Miguel Di Ciurcio Filho
01:11 am Revision dfe795e7: QemuOpts: allow new option groups be registered at runtime.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Gerd Hoffmann
01:11 am Revision 3329f07b: QemuOpts: make most qemu_*_opts static
Switch tree to lookup-by-name using qemu_find_opts().
Also hook up virtfs options so qemu_find_opts works for them to...
Gerd Hoffmann
01:11 am Revision 03b0ba70: compile -fsdev and -virtfs cmd line options unconditionally.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Gerd Hoffmann
01:11 am Revision 6597e1a6: QMP: update 'query-version' documentation
Update the documentation of 'query-version' to output the string version broken
down.
Signed-off-by: Miguel Di Ciurc...
Miguel Di Ciurcio Filho
12:48 am Revision ac71103d: vnc: check fd before calling qemu_set_fd_handler2() in vnc_client_write()
Setting fd = -1 to qemu_set_fd_handler2() causes bus error at FD_SET
in main_loop_wait().
Signed-off-by: Yoshiaki Ta...
Yoshiaki Tamura
12:19 am Revision 9742bf26: exec: replace tabs by spaces.
Signed-off-by: Yoshiaki Tamura <tamura.yoshiaki@lab.ntt.co.jp>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Yoshiaki Tamura
12:19 am Revision d20878d2: arch_init: replace tabs by spaces.
Signed-off-by: Yoshiaki Tamura <tamura.yoshiaki@lab.ntt.co.jp>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Yoshiaki Tamura
12:19 am Revision 5ccaa4ce: pckbd: support for commands 0xf0-0xff: Pulse output bit
I have a guest OS which sends the command 0xfd to the keyboard
controller during initialization. To get rid of the me...
Bernhard Kohl
12:19 am Revision 6977dfe6: exec: remove code duplication in qemu_ram_alloc() and qemu_ram_alloc_from_ptr()
Since most of the code in qemu_ram_alloc() and
qemu_ram_alloc_from_ptr() are duplicated, let
qemu_ram_alloc_from_ptr(...
Yoshiaki Tamura
12:19 am Revision 583cd3cb: target-i386: svm: Fix MSRPM check
Correct the calculation of the offset in the msrpm
for the MSR range 0 - 0x1fff.
Signed-off-by: Adam Lackorzynski <a...
Adam Lackorzynski
12:19 am Revision 8b53a865: virtio-serial: Cleanup on device hot-unplug
Free malloc'ed memory, unregister from savevm and clean up virtio-common
bits on device hot-unplug.
This was found p...
Amit Shah

08/21/2010

12:04 am Revision cc597832: Replace qemu_malloc + memset with qemu_mallocz
Replace a qemu_malloc call, followed by a memset, with qemu_mallocz.
Found with this Coccinelle semantic patch, adap...
Blue Swirl
12:03 am Revision 66fe09ee: Use ARRAY_SIZE macro
Replace array size calculations with ARRAY_SIZE macro.
Implemented with this Coccinelle semantic patch, adapted from...
Blue Swirl

08/19/2010

11:24 pm Revision f143efa6: Remove useless NULL check for qemu_strdup return value
Found with this Coccinelle semantic patch:
@@
expression E;
identifier ptr;
identifier fn ~= "qemu_strn?dup";
@@
-pt...
Blue Swirl
11:24 pm Revision 8e00128d: Remove useless NULL checks for qemu_malloc return value
Found with this Coccinelle semantic patch:
@@
expression E;
identifier ptr;
identifier fn ~= "qemu_mallocz*";
@@
-pt...
Blue Swirl
04:44 pm Revision 027c9e21: rtc: Remove TARGET_I386 from qemu-config.c, enables driftfix
qemu-config.c doesn't contain any target-specific code, and the
TARGET_I386 conditional code didn't get compiled as a...
Amit Shah
04:44 pm Revision 5e77aaa0: QEMUFileBuffered: indicate that we're ready when the underlying file is ready
QEMUFileBuffered stops writing when the underlying QEMUFile is not ready,
and tells its producer so. However, when t...
Avi Kivity
04:44 pm Revision e447b1a6: set proper migration status on ->write error (v5)
If ->write fails, declare migration status as MIG_STATE_ERROR.
Also, in buffered_file.c, ->close the object in case ...
Marcelo Tosatti
04:44 pm Revision 760e77ea: savevm: Reset last block info at beginning of each save
If we save more than once we need to reset the last block info or else
only the first save has the actual block info ...
Alex Williamson

08/15/2010

08:56 pm Revision 9fc391f8: sparc escc IUS improvements (SunOS 4.1.4 fix)
According to scc_escc_um.pdf:
- Reset Highest IUS must update irq status to allow processing
of the next priority...
Artyom Tarasenko
12:46 pm Revision 68c18d1c: Fix mingw32 build
Don't define qemu_chr_open_eventfd() on Windows.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Blue Swirl
12:46 pm Revision cdfb017e: win32: Avoid compiler warning (WIN32_LEAN_AND_MEAN redefined)
configure adds the macro WIN32_LEAN_AND_MEAN to
QEMU_CFLAGS, and SDL_syswm.h defines it, too.
This results in a comp...
Stefan Weil
12:45 pm Revision 0a1574bb: win32: Add missing function setenv
Mingw32 does not provide a declaration and implementation of function
setenv (which is used in sdl.c), so this patch ...
Stefan Weil
12:44 pm Revision 3dcbf8f9: Disable build of ivshmem on non-KVM systems
Signed-off-by: Cam Macdonell <cam@cs.ualberta.ca>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Cam Macdonell
12:44 pm Revision 1fd74012: Add kvm_set_ioeventfd_mmio_long definition for non-KVM systems
Signed-off-by: Cam Macdonell <cam@cs.ualberta.ca>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Cam Macdonell

08/14/2010

11:57 pm Revision b1d6d51d: TCG: Revert ppc64 tcg_out_movi32 change
3b6dac34161bc0a342336072643c2f6d17e0ec45 apparently broke the ppc64 TCG target
compilation in the code path without g...
Andreas Färber
11:40 pm Revision e9119cd8: TCG: Fix Darwin/ppc calling convention recognition
5da79c86a3744e3a901c7986c109dd06951befd2 broke compilation on Mac OS X v10.5 ppc.
Apple's GCC 4.0.1 does not define _...
Andreas Färber

08/11/2010

12:25 am Revision 6cbf4c8c: RESEND: Inter-VM shared memory PCI device
resend for bug fix related to removal of irqfd
Support an inter-vm shared memory device that maps a shared-memory ob...
Cam Macdonell
12:25 am Revision b6828931: Device specification for shared memory PCI device
Signed-off-by: Cam Macdonell <cam@cs.ualberta.ca>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Cam Macdonell
12:25 am Revision 84b89d78: Add qemu_ram_alloc_from_ptr function
Provide a function to add an allocated region of memory to the qemu RAM.
This patch is copied from Marcelo's qemu_ra...
Cam Macdonell
12:25 am Revision 44f1a3d8: Add function to assign ioeventfd to MMIO.
Signed-off-by: Cam Macdonell <cam@cs.ualberta.ca>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Cam Macdonell
12:25 am Revision 24312968: Support marking a device as non-migratable
A non-migratable device should be removed before migration and re-added after.
Signed-off-by: Cam Macdonell <cam@cs....
Cam Macdonell

08/09/2010

04:25 pm Revision f040236c: Merge remote branch 'kwolf/for-anthony' into staging
Anthony Liguori
11:13 am Revision a523eb06: microblaze: Fix the target version of stat64 struct
MicroBlaze needs TARGET_STAT64_HAS_BROKEN_ST_INO.
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@petalogix.com>
Edgar E. Iglesias

08/07/2010

07:04 pm Revision 60592edd: audio/sdl: return on error
Signed-off-by: malc <av1474@comtv.ru> malc

08/06/2010

01:21 pm Revision 138afb02: mips: Add support for VInt and VEIC irq modes
Signed-off-by: Edgar E. Iglesias <edgar@axis.com> Edgar E. Iglesias
12:15 pm Revision d087bb3e: audio/sdl: be more anal about errors
Signed-off-by: malc <av1474@comtv.ru> malc
12:15 pm Revision 4b7c0418: audio: make audio_pt_init block all signals
Signed-off-by: malc <av1474@comtv.ru> malc

08/05/2010

03:57 pm Revision 14542fea: kvm: remove guest triggerable abort()
This abort() condition is easily triggerable by a guest if it configures
pci bar with unaligned address that overlaps...
Gleb Natapov
03:57 pm Revision 70fedd76: kvm: Don't walk memory_size == 0 slots in kvm_client_migration_log
If we've unregistered a memory area, we should avoid calling
qemu_get_ram_ptr() on the left over phys_offset cruft in...
Alex Williamson

08/04/2010

12:00 am Revision 748a4ee3: sparc32: use FW_CFG_CMDLINE_SIZE
Add support for getting kernel command line size with
FW_CFG_CMDLINE_SIZE.
Signed-off-by: Blue Swirl <blauwirbel@gma...
Blue Swirl

08/03/2010

04:57 pm Revision 8a426614: block: Change bdrv_commit to handle multiple sectors at once
bdrv_commit copies the image to its backing file sector by sector, which
is (surprise!) relatively slow. Let's take a...
Kevin Wolf
04:57 pm Revision f0aa7a8b: loadvm: improve tests before bdrv_snapshot_goto()
This patch improves the resilience of the load_vmstate() function, doing
further and better ordered tests.
In load_v...
Miguel Di Ciurcio Filho
04:57 pm Revision bd0858bb: block migration: replace tabs by spaces.
Signed-off-by: Yoshiaki Tamura <tamura.yoshiaki@lab.ntt.co.jp>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Yoshiaki Tamura
04:57 pm Revision 336c1c12: block: Fix bdrv_has_zero_init
Assuming that any image on a block device is not properly zero-initialized is
actually wrong: Only raw images have th...
Kevin Wolf
04:57 pm Revision 4be9762a: block: Change bdrv_eject() not to drop the image
bdrv_eject() gets called when a device model opens or closes the tray.
If the block driver implements method bdrv_ej...
Markus Armbruster
04:57 pm Revision 953844d1: ide: Avoid canceling IDE DMA
The reason for not actually canceling the I/O is because with
virtualization and lots of VM running, a guest fs may m...
Andrea Arcangeli

08/02/2010

09:49 pm Revision 5933e8a9: fix last cpu timer initialization
The timer #0 is the system timer, so the timer #num_cpu is the
timer of the last CPU, and it must be initialized in s...
Artyom Tarasenko

07/31/2010

10:43 pm Revision ad7ee4ad: Initialize a variable in all cases
Commit d167f9bc06a577d6c85b8ed6991c1efe175aae7d missed this one:
/src/qemu/ui/vnc-enc-tight.c:1483: warning: 'ret' ma...
Blue Swirl
10:40 pm Revision aee474eb: Fix uint8_t comparison with negative value
Commit 7bccf57383cca60a778d5c543ac80c9f62d89ef2 missed this one:
/src/qemu/ui/vnc-enc-tight.c: In function 'send_sub_...
Blue Swirl
10:40 pm Revision 3690cec8: Fix a warning on OpenSolaris
Add a missing #include statement to avoid a warning:
/src/qemu/net/tap-solaris.c: In function 'tap_open':
/src/qemu/n...
Blue Swirl
06:14 pm Revision 671b0f36: Correctly identify multiple cpus in SMP systems
Signed-off-by: Hervé Poussineau <hpoussin@reactos.org>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Hervé Poussineau
06:14 pm Revision cf7c00d5: Remove unused constant
Remove unused constant MIPS_FCR0
Signed-off-by: Hervé Poussineau <hpoussin@reactos.org>
Signed-off-by: Aurelien Jarn...
Hervé Poussineau
06:14 pm Revision 14414da4: jazz led: Fix debug prints
Add a macro to easily enable/disable debug prints
Also fix wrong printf formatters
Signed-off-by: Hervé Poussineau <...
Hervé Poussineau
01:50 am Revision 872a91b4: xilinx-s3adsp: Add support for loading u-boot images.
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com> Edgar E. Iglesias
01:42 am Revision 811976dc: xilinx-s3adsp: Fix loading of raw binaries.
Set high to a word aligned address beyond loaded image.
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
Edgar E. Iglesias
12:25 am Revision 708f2ada: Remove unused eventfd.h
This header is not present on my system and causes a build
failure, but is also not used in these files, so remove it...
Mike McCormack
12:14 am Revision 8e84865e: migration: Accept 'cont' only after successful incoming migration
When a 'cont' is issued on a VM that's just waiting for an incoming
migration, the VM reboots and boots into the gues...
Amit Shah
12:09 am Revision 7899f799: mips64el: fulong: PCI_DEVFN() clean up.
Use PCI_DEVFN() where appropriate.
The resulted stripped binary remains same
with/without thie patch.
Cc: Huacai Che...
Isaku Yamahata
12:05 am Revision dca98169: remove pointless if from vl.c
We already set sockets to nonzero in the code above.
So this if statement always evaluates true. Remove it.
Signed-...
Joel Schopp
12:05 am Revision 61bca294: remove dead code from hw/loader.c
Removing dead code. Above we already continued when
rom->addr + valuegreaterthan0 < addr so this condition is always...
Joel Schopp
12:05 am Revision ca1d6ac6: fix variable type in qemu-io.c
The variable len can get a negative return value from cvtnum,
which we check for, but which is impossible with the cu...
Joel Schopp
12:00 am Revision 69e58af9: savevm: Fix memory leak of compat struct
Forgot to check for and free these.
Found-by: Zachary Amsden <zamsden@redhat.com>
Signed-off-by: Alex Williamson <al...
Alex Williamson

07/30/2010

11:59 pm Revision 5ab4bb59: virtio-serial: Check if more max_ports specified than we can handle
Currently virtio-serial supports a maximum of 31 ports. Specifying the
'max_ports' parameter to be > 31 on the cmd li...
Amit Shah
10:12 pm Revision cdc6f542: Merge branch 'for-anthony' of git://repo.or.cz/qemu/kevin
* 'for-anthony' of git://repo.or.cz/qemu/kevin:
Fix -snapshot deleting images on disk change
block: Use error cod...
Aurelien Jarno
10:09 pm Revision 18e9ea8a: linux-user: fix build on hosts not using guest base
Commit 68a1c816868b3e35a1da698af412b29e61b1948a broke qemu on hosts not
using guest base. It uses reserved_va uncondi...
Aurelien Jarno

07/29/2010

07:54 pm Revision 5d5c9930: linux-user: Protect against allocation failure in load_symbols.
Cc: malc <av1474@comtv.ru>
Signed-off-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: malc <av1474@comtv.ru>
Richard Henderson
06:15 pm Revision 58f5c1eb: cris: Correct settls1 testcase.
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com> Edgar E. Iglesias
04:42 pm Revision 61eb865a: cris: Correct ADDO and ADDOQ testcases.
Verified on real HW.
Signed-off-by: Edgar E. Iglesias <edgar@axis.com>
Edgar E. Iglesias
09:32 am Revision 991f8f0c: linux-user: Clean up byte-swapping in elfload.c.
Remove ifdefs from code by defining empty inline functions
when byte swapping isn't needed. Push loops over swapping...
Richard Henderson
09:32 am Revision 28490231: linux-user: Define ELF_DATA generically.
The only consideration on this value is the target endianness.
The existing defines were incorrect for alpha and sh4e...
Richard Henderson
09:32 am Revision 9955ffac: linux-user: Reduce lseek+reads while loading elf files.
Define BPRM_BUF_SIZE to 1k and read that amount initially. If the
data we want from the binary is in this buffer, us...
Richard Henderson
09:32 am Revision 682674b8: linux-user: Load symbols from the interpreter.
First, adjust load_symbols to accept a load_bias parameter. At the same
time, read the entire section header table i...
Richard Henderson
09:32 am Revision bf858897: linux-user: Re-use load_elf_image for the main binary.
This requires moving the PT_INTERP extraction and GUEST_BASE
handling into load_elf_image. Key this off a non-null p...
Richard Henderson
09:32 am Revision 60dcbcb5: linux-user: Put the stack guard page at the top.
There are no supported stack-grows-up targets. We were putting
the guard page at the highest address, i.e. the botto...
Richard Henderson
09:32 am Revision b9329d4b: linux-user: Remove partial support for a.out interpreters.
At the bottom of the a.out support was the unimplemented load_aout_interp
function. There were other portions of the...
Richard Henderson
09:32 am Revision 8e62a717: linux-user: Extract load_elf_image from load_elf_interp.
Moving toward a single copy of the elf binary loading code.
Fill in the details of the loaded image into a struct ima...
Richard Henderson
09:32 am Revision 9058abdd: linux-user: Improve consistency checking in elf headers.
Validate more fields of the elf header. Extract those checks
into two common functions to be used in both load_elf_i...
Richard Henderson
09:32 am Revision cf129f3a: linux-user: Handle filesz < memsz for any PT_LOAD segment.
I caught padzero not properly initializing the .bss segment
on a statically linked Alpha program. Rather than a mini...
Richard Henderson
09:32 am Revision e167d46c: Add more DT_* and AT_* constants to qemu's copy of elf.h.
Moving some PPC AT_* constants from elfload.c at the same time.
Signed-off-by: Richard Henderson <rth@twiddle.net>
S...
Richard Henderson
09:32 am Revision d97ef72e: linux-user: Reindent elfload.c.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
Richard Henderson

07/28/2010

03:58 pm Revision 36500de6: Update version for 0.13.x
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> Anthony Liguori

07/27/2010

08:26 pm Revision 249cdb42: Fix mingw32 build
Fix mingw32 build errors like
/src/qemu/ui/vnc-enc-tight.c: In function 'tight_detect_smooth_image24':
/src/qemu/ui/v...
Blue Swirl
06:34 pm Revision d167f9bc: Initialize a variable in all cases
Fix a warning with some GCCs:
/src/qemu/ui/vnc-enc-tight.c: In function `send_sub_rect_nojpeg':
/src/qemu/ui/vnc-enc-...
Blue Swirl
06:32 pm Revision 7bccf573: Fix uint8_t comparisons with negative values
Fix the following warnings:
/src/qemu/hw/ide/core.c: In function `ide_drive_pio_post_load':
/src/qemu/hw/ide/core.c:2...
Blue Swirl
03:39 pm Revision fd2f659e: Update version for 0.13.0-rc0
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> Anthony Liguori
01:36 am Revision 5136a052: vnc: tight: stop using qdict for palette stuff
Profiling with callgrind seems to show that a lot of time is spent
in the palette code (mostly due to memory allocati...
Corentin Chary
01:36 am Revision d9c18c24: vnc: tight: remove a memleak in send_jpeg_rect()
buf was never freed.
Signed-off-by: Corentin Chary <corentincj@iksaif.net>
Signed-off-by: Anthony Liguori <aliguori@...
Corentin Chary
01:36 am Revision efe556ad: vnc: tight add PNG encoding
Introduce a new encoding: VNC_ENCODING_TIGHT_PNG [1] (-269) with a new
tight filter VNC_TIGHT_PNG (0x0A). When the cl...
Corentin Chary
01:36 am Revision 3941bf6f: vnc: tight: specific zlib level and filters for each compression level
Disable png filters for lower compression levels. This should lower
the CPU consumption and reduce encoding time.
Th...
Corentin Chary
01:36 am Revision 5d8efe39: vnc: tight: don't forget do at the last color
While using indexed colors, the last color was never added to the palette.
Triggered with ubuntu livecd.
Signed-off-...
Corentin Chary
01:36 am Revision d1af0e05: vnc: encapsulate encoding members
This will allow to implement the threaded VNC server in a
more cleaner way.
Signed-off-by: Corentin Chary <corentinc...
Corentin Chary
01:36 am Revision b5469b11: vnc: fix tight png memory leak
The tight.png buffer was never released.
Signed-off-by: Corentin Chary <corentincj@iksaif.net>
Signed-off-by: Anthon...
Corentin Chary
01:36 am Revision 313b1d69: qemu-thread: add qemu_mutex/cond_destroy and qemu_mutex_exit
Add some missing functions in qemu-thread. Currently qemu-thread
is only used for io-thread but it will used by the v...
Corentin Chary
01:36 am Revision bd023f95: vnc: threaded VNC server
Implement a threaded VNC server using the producer-consumer model.
The main thread will push encoding jobs (a list a ...
Corentin Chary
01:36 am Revision d01f9595: vnc: add missing lock for vnc_cursor_define()
All vnc_write() calls must be locked (except the ones present before
the protocol initialization).
Signed-off-by: Co...
Corentin Chary
01:36 am Revision 96763cf9: vnc: better default values for VNC options
vnc_jpeg and vnc_png are now "auto" by default, this means that
if the dependencies are installed (libjpeg or libpng)...
Corentin Chary
01:36 am Revision 03817eb8: vnc: tight: split send_sub_rect
Split send_sub_rect in send_sub_rect_jpeg and send_sub_rect_nojpeg to
remove all these #ifdef CONFIG_JPEG.
Signed-of...
Corentin Chary
01:36 am Revision 4043a013: vnc: tight: fix rgb_prepare_row
rgb_prepare_row bpp depends on the server display surface, not
the client.
Signed-off-by: Corentin Chary <corentincj...
Corentin Chary
01:36 am Revision 245f7b51: vnc: rename vnc-encoding-* vnc-enc-*
For the same reason that we don't use vnc-authentication-sasl.c but
vnc-auth-sals.c. Because it's tooooo long.
Signe...
Corentin Chary
01:35 am Revision 3e230dd2: ui: move all ui components in ui/
Move sdl, vnc, curses and cocoa UI into ui/ to cleanup
the root directory. Also remove some unnecessary explicit
targ...
Corentin Chary
01:23 am Revision 2f6f5c7a: vnc: tight: add JPEG and gradient subencoding with smooth image detection
Add gradient filter and JPEG compression with an heuristic to detect how
lossy the comppression will be. This code ha...
Corentin Chary
01:23 am Revision 2f24e2ed: vnc: JPEG should be disabled if the client don't set tight quality
Disable JPEG compression by default and only enable it if the
VNC client has sent the requested quality.
Signed-off-...
Corentin Chary
01:23 am Revision 6f9c78c1: vnc: add lossy option
The lossy option can be used to enable lossy compression
methods like gradient or jpeg. This patch disable them by
de...
Corentin Chary
12:19 am Revision f58ae59c: Initial documentation for migration
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Juan Quintela
12:19 am Revision 811814bd: vmstate: add subsections code
This commit adds subsections for each device section.
Subsections is the way to handle information that don't need to...
Juan Quintela
12:19 am Revision 50641c5c: ide: fix migration in the middle of pio operation
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Juan Quintela
12:19 am Revision 5ee84c33: ide: fix migration in the middle of a bmdma transfer
It reintroduces
Revert "ide save/restore pio/atapi cmd transfer fields and io buffer"
but using subsections. Ad...
Juan Quintela
12:19 am Revision 57338424: Revert "ide save/restore current transfer fields"
This reverts commit 42ee76fe82093ba914f0dc83d2decbcf68866144.
Signed-off-by: Juan Quintela <quintela@redhat.com>
Sig...
Juan Quintela
12:19 am Revision 3abb6260: Revert "ide save/restore pio/atapi cmd transfer fields and io buffer"
This reverts commit ed487bb1d69040b9dac64a4fc076d8dd82b131d6.
The conflicts are due to commit 4fc8d6711aff7a9c11e402...
Juan Quintela

07/26/2010

04:05 pm Revision 7ed6184b: Merge remote branch 'mst/for_anthony' into staging
Anthony Liguori
02:39 pm Revision c98ac35d: block: Use error codes from lower levels for error message
"No such file or directory" is a misleading error message
when a user tries to open a file with wrong permissions.
C...
Stefan Weil
02:39 pm Revision 199630b6: Fix -snapshot deleting images on disk change
Block device change command did not copy BDRV_O_SNAPSHOT flag. Thus
the new image did not have this flag and the file...
Blue Swirl
02:39 pm Revision b02bea3a: block migration: propagate return value when bdrv_write() returns < 0
Currently block_load() doesn't check return value of bdrv_write(), and
even the destination weren't prepared to execu...
Yoshiaki Tamura
02:39 pm Revision 253cb7b9: ide/atapi: add support for GET EVENT STATUS NOTIFICATION
The GET EVENT STATUS NOTIFICATION is a mandatory command according
to MMC-3, even if event status notification is not...
Aurelien Jarno
02:39 pm Revision 9d0d3138: virtio-blk: Create exit function to unregister savevm
Otherwise we can't migrate after we've removed a virtio block device.
Signed-off-by: Alex Williamson <alex.williamso...
Alex Williamson
02:39 pm Revision 6c6b6ba2: move 'unsafe' to end of caching modes in help
Libvirt parses qemu help output to determine qemu features. In particular
it probes for the following: "cache=writeth...
Bruce Rogers
02:39 pm Revision 55459498: block: default to 0 minimal / optiomal I/O size
Currently we set them to 512 bytes unless manually specified. Unforuntaly
some brain-dead partitioning tools create ...
Christoph Hellwig
« Previous
Next »
 

Also available in: Atom