]> rtime.felk.cvut.cz Git - lisovros/qemu_apohw.git/commitdiff
move 'unsafe' to end of caching modes in help
authorBruce Rogers <brogers@novell.com>
Wed, 21 Jul 2010 20:32:28 +0000 (14:32 -0600)
committerAnthony Liguori <aliguori@us.ibm.com>
Wed, 28 Jul 2010 19:04:24 +0000 (14:04 -0500)
Libvirt parses qemu help output to determine qemu features. In particular
it probes for the following: "cache=writethrough|writeback|none". The
addition of the unsafe cache mode was inserted within this string, as
opposed to being added to the end, which impacted libvirt's probe.
Unbreak libvirt by keeping the existing cache modes intact and add
unsafe to the end.

This problem only manifests itself if a caching mode is explicitly
specified in the libvirt xml, in which case older syntax for caching is
passed to qemu, which it  no longer understands.

Signed-off-by: Bruce Rogers <brogers@novell.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
(cherry picked from commit 6c6b6ba20a167a89f85606125ee1e10eafef5b33)

Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
qemu-options.hx

index 40cee704eab6d4fe395be3793f56e8bf43b05e62..db86feb09b8a2b7cb641a31282ecde7485f59dad 100644 (file)
@@ -118,7 +118,7 @@ ETEXI
 DEF("drive", HAS_ARG, QEMU_OPTION_drive,
     "-drive [file=file][,if=type][,bus=n][,unit=m][,media=d][,index=i]\n"
     "       [,cyls=c,heads=h,secs=s[,trans=t]][,snapshot=on|off]\n"
-    "       [,cache=writethrough|writeback|unsafe|none][,format=f]\n"
+    "       [,cache=writethrough|writeback|none|unsafe][,format=f]\n"
     "       [,serial=s][,addr=A][,id=name][,aio=threads|native]\n"
     "       [,readonly=on|off]\n"
     "                use 'file' as a drive image\n", QEMU_ARCH_ALL)