mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 17:23:56 -06:00
Block layer patches:
- qcow2: Fix data corruption bug that is triggered in partial cluster allocation with default options - qapi: add support for blkreplay driver - doc: Describe missing generic -blockdev options - iotests: Fix 118 when run as root - Minor code cleanups -----BEGIN PGP SIGNATURE----- iQIcBAABAgAGBQJdsvZIAAoJEH8JsnLIjy/W14oP/1vcfFbet4tOzFU8Wx1rOwR6 1sCWN41Wwj60wNIS4npDTj1iKVXFXShkOOZyufQ/1AE5yEnP+Qod03rURqQTZKeS UT11Cwqx6hyqCJRgNMFBmdlQiGXW3rJWlSM0E5zV10hPwDGEK3c9rjox0b7MdTjD h7oOXk26hILV4ig6OFXsUghNP6jAuRLsWWeMd2/0xl6PcniU4XHLuMvmdwxMHoDU q3CEAxJe0xG2M6Fu7oEnJss+C/18lk7vlQ/3g93jUe54NVlme6r9FNErdBBDr/MF Jo8u4GTS2lp3uNaNmKL+yECkiigRxIBGoPeRGHQRk0rMl2KR3/NwbMXYFFer8jsi aRzVziNC0L+LWyU0I1Taf9IlyyHVhZkhoU6NU5c0fqs9mOBy1E/5LxoP7zUWqbUC 7ZZg8Hhv+9gZJdk62/vqm4y/tEQmYmUxA6/GSb3Yn5aogCiGBsMsTsq9zge3Fkrq wl/CwmtcngZzENUreGTMv/MbPbRx+A8QWA/TRVdg0AGcvosQfqR1a1i421X4AGuB 9bx0wSfnrnRS43BPTkY2Wqhq4GMfHWxf80S9a0xlZxnZZLt2vef+vDhgV/d2yd56 RRTUC5jqBPtxPT98frgjGRdr74DqEInSrtOf/9DpJ79SgoLFNylp31kqJRQ/qNJN iSKyGWA7nn+8VQi+1ufh =JZpU -----END PGP SIGNATURE----- Merge remote-tracking branch 'remotes/kevin/tags/for-upstream' into staging Block layer patches: - qcow2: Fix data corruption bug that is triggered in partial cluster allocation with default options - qapi: add support for blkreplay driver - doc: Describe missing generic -blockdev options - iotests: Fix 118 when run as root - Minor code cleanups # gpg: Signature made Fri 25 Oct 2019 14:19:04 BST # gpg: using RSA key 7F09B272C88F2FD6 # gpg: Good signature from "Kevin Wolf <kwolf@redhat.com>" [full] # Primary key fingerprint: DC3D EB15 9A9A F95D 3D74 56FE 7F09 B272 C88F 2FD6 * remotes/kevin/tags/for-upstream: qcow2: Fix corruption bug in qcow2_detect_metadata_preallocation() coroutine: Add qemu_co_mutex_assert_locked() doc: Describe missing generic -blockdev options block/backup: drop dead code from backup_job_create blockdev: Use error_report() in hmp_commit() iotests: Skip read-only cases in 118 when run as root qapi: add support for blkreplay driver Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
commit
03bf012e52
9 changed files with 73 additions and 12 deletions
|
@ -864,7 +864,8 @@ ETEXI
|
|||
DEF("blockdev", HAS_ARG, QEMU_OPTION_blockdev,
|
||||
"-blockdev [driver=]driver[,node-name=N][,discard=ignore|unmap]\n"
|
||||
" [,cache.direct=on|off][,cache.no-flush=on|off]\n"
|
||||
" [,read-only=on|off][,detect-zeroes=on|off|unmap]\n"
|
||||
" [,read-only=on|off][,auto-read-only=on|off]\n"
|
||||
" [,force-share=on|off][,detect-zeroes=on|off|unmap]\n"
|
||||
" [,driver specific parameters...]\n"
|
||||
" configure a block backend\n", QEMU_ARCH_ALL)
|
||||
STEXI
|
||||
|
@ -900,6 +901,25 @@ name is not intended to be predictable and changes between QEMU invocations.
|
|||
For the top level, an explicit node name must be specified.
|
||||
@item read-only
|
||||
Open the node read-only. Guest write attempts will fail.
|
||||
|
||||
Note that some block drivers support only read-only access, either generally or
|
||||
in certain configurations. In this case, the default value
|
||||
@option{read-only=off} does not work and the option must be specified
|
||||
explicitly.
|
||||
@item auto-read-only
|
||||
If @option{auto-read-only=on} is set, QEMU may fall back to read-only usage
|
||||
even when @option{read-only=off} is requested, or even switch between modes as
|
||||
needed, e.g. depending on whether the image file is writable or whether a
|
||||
writing user is attached to the node.
|
||||
@item force-share
|
||||
Override the image locking system of QEMU by forcing the node to utilize
|
||||
weaker shared access for permissions where it would normally request exclusive
|
||||
access. When there is the potential for multiple instances to have the same
|
||||
file open (whether this invocation of QEMU is the first or the second
|
||||
instance), both instances must permit shared access for the second instance to
|
||||
succeed at opening the file.
|
||||
|
||||
Enabling @option{force-share=on} requires @option{read-only=on}.
|
||||
@item cache.direct
|
||||
The host page cache can be avoided with @option{cache.direct=on}. This will
|
||||
attempt to do disk IO directly to the guest's memory. QEMU may still perform an
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue