QEMU With E2K User Support
Go to file
Hanna Reitz 0bc329fbb0 block: block-status cache for data regions
As we have attempted before
(https://lists.gnu.org/archive/html/qemu-devel/2019-01/msg06451.html,
"file-posix: Cache lseek result for data regions";
https://lists.nongnu.org/archive/html/qemu-block/2021-02/msg00934.html,
"file-posix: Cache next hole"), this patch seeks to reduce the number of
SEEK_DATA/HOLE operations the file-posix driver has to perform.  The
main difference is that this time it is implemented as part of the
general block layer code.

The problem we face is that on some filesystems or in some
circumstances, SEEK_DATA/HOLE is unreasonably slow.  Given the
implementation is outside of qemu, there is little we can do about its
performance.

We have already introduced the want_zero parameter to
bdrv_co_block_status() to reduce the number of SEEK_DATA/HOLE calls
unless we really want zero information; but sometimes we do want that
information, because for files that consist largely of zero areas,
special-casing those areas can give large performance boosts.  So the
real problem is with files that consist largely of data, so that
inquiring the block status does not gain us much performance, but where
such an inquiry itself takes a lot of time.

To address this, we want to cache data regions.  Most of the time, when
bad performance is reported, it is in places where the image is iterated
over from start to end (qemu-img convert or the mirror job), so a simple
yet effective solution is to cache only the current data region.

(Note that only caching data regions but not zero regions means that
returning false information from the cache is not catastrophic: Treating
zeroes as data is fine.  While we try to invalidate the cache on zero
writes and discards, such incongruences may still occur when there are
other processes writing to the image.)

We only use the cache for nodes without children (i.e. protocol nodes),
because that is where the problem is: Drivers that rely on block-status
implementations outside of qemu (e.g. SEEK_DATA/HOLE).

Resolves: https://gitlab.com/qemu-project/qemu/-/issues/307
Signed-off-by: Hanna Reitz <hreitz@redhat.com>
Message-Id: <20210812084148.14458-3-hreitz@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
[hreitz: Added `local_file == bs` assertion, as suggested by Vladimir]
Signed-off-by: Hanna Reitz <hreitz@redhat.com>
2021-09-15 15:54:06 +02:00
.github
.gitlab/issue_templates
.gitlab-ci.d gitlab-ci: Make more custom runner jobs manual, and don't allow failure 2021-09-14 17:03:03 +01:00
accel accel/tcg/user-exec: Fix read-modify-write of code on s390 hosts 2021-09-14 12:00:21 -07:00
audio
authz
backends
block block: block-status cache for data regions 2021-09-15 15:54:06 +02:00
bsd-user user: Remove cpu_get_pic_interrupt() stubs 2021-09-14 12:00:21 -07:00
capstone@f8b1b83301
chardev chardev: remove needless class method 2021-09-14 16:53:55 +04:00
configs hw/acpi: refactor acpi hp modules so that targets can just use what they need 2021-09-04 09:07:46 -04:00
contrib configure / meson: Move the GBM handling to meson.build 2021-09-06 10:00:14 +02:00
crypto
disas
docs docs: add supported host CPU architectures section 2021-09-14 16:51:58 +04:00
dtc@85e5d83984
dump
ebpf
fpu softfloat: Remove assertion preventing silencing of NaN in default-NaN mode 2021-09-01 11:08:17 +01:00
fsdev
gdb-xml
hw target-arm queue: 2021-09-13 21:06:15 +01:00
include block: block-status cache for data regions 2021-09-15 15:54:06 +02:00
io
libdecnumber
linux-headers
linux-user user: Remove cpu_get_pic_interrupt() stubs 2021-09-14 12:00:21 -07:00
meson@776acd2a80
migration
monitor arch_init.h: Don't include arch_init.h unnecessarily 2021-08-26 17:02:00 +01:00
nbd
net vhost-vdpa: remove the unncessary queue_index assignment 2021-09-04 17:34:05 -04:00
pc-bios meson: look up cp and dtrace with find_program() 2021-09-13 13:56:26 +02:00
plugins plugins/api: added a boolean parsing plugin api 2021-09-02 11:29:34 +01:00
po
python python:QEMUMachine: template typing for self returning methods 2021-09-01 14:03:47 +02:00
qapi qapi: Set boolean value correctly in examples 2021-09-03 17:03:05 +02:00
qga
qobject
qom
replay
roms Update OpenBIOS images to d657b653 built from submodule. 2021-09-08 10:30:10 +01:00
scripts qapi: Fix bogus error for 'if': { 'not': '' } 2021-09-08 15:30:30 +02:00
scsi
semihosting
slirp@a88d9ace23
softmmu qdev: Support marking individual buses as 'full' 2021-09-13 21:01:08 +01:00
storage-daemon
stubs hw/pci: remove all references to find_i440fx function 2021-09-04 17:34:05 -04:00
subprojects/libvhost-user
target user: Remove cpu_get_pic_interrupt() stubs 2021-09-14 12:00:21 -07:00
tcg tcg/arm: More use of the TCGReg enum 2021-09-14 12:00:21 -07:00
tests tests/data/acpi/virt: Update IORT files for ITS 2021-09-13 21:01:08 +01:00
tools
trace meson: look up cp and dtrace with find_program() 2021-09-13 13:56:26 +02:00
ui meson: remove dead variable 2021-09-13 13:56:26 +02:00
util util: Suppress -Wstringop-overflow in qemu_thread_start 2021-09-13 13:56:26 +02:00
.cirrus.yml
.dir-locals.el
.editorconfig
.exrc
.gdbinit
.gitattributes
.gitignore
.gitlab-ci.yml
.gitmodules
.gitpublish
.mailmap
.patchew.yml
.readthedocs.yml
.travis.yml
block.c block: block-status cache for data regions 2021-09-15 15:54:06 +02:00
blockdev-nbd.c
blockdev.c arch_init.h: Don't include arch_init.h unnecessarily 2021-08-26 17:02:00 +01:00
blockjob.c
configure bsd-user: start to move target CPU functions to target_arch* 2021-09-10 14:13:06 -06:00
COPYING
COPYING.LIB
cpu.c
cpus-common.c
disas.c
gdbstub.c gdbstub: Zero-initialize sockaddr structs 2021-08-26 17:02:00 +01:00
gitdm.config
hmp-commands-info.hx
hmp-commands.hx
iothread.c
job-qmp.c
job.c
Kconfig
Kconfig.host
LICENSE
MAINTAINERS MAINTAINERS: Added myself as a reviewer for acpi/smbios subsystem 2021-09-04 17:34:05 -04:00
Makefile
memory_ldst.c.inc
meson_options.txt
meson.build meson.build: fix comment typo 2021-09-14 16:52:02 +04:00
module-common.c
os-posix.c
os-win32.c
page-vary-common.c
page-vary.c
qemu-bridge-helper.c
qemu-edid.c
qemu-img-cmds.hx
qemu-img.c
qemu-io-cmds.c
qemu-io.c
qemu-keymap.c
qemu-nbd.c
qemu-options.hx softmmu/vl: Deprecate the old grab options 2021-09-06 10:00:14 +02:00
qemu.nsi
qemu.sasl
README.rst
replication.c
thunk.c
trace-events
VERSION
version.rc

===========
QEMU README
===========

QEMU is a generic and open source machine & userspace emulator and
virtualizer.

QEMU is capable of emulating a complete machine in software without any
need for hardware virtualization support. By using dynamic translation,
it achieves very good performance. QEMU can also integrate with the Xen
and KVM hypervisors to provide emulated hardware while allowing the
hypervisor to manage the CPU. With hypervisor support, QEMU can achieve
near native performance for CPUs. When QEMU emulates CPUs directly it is
capable of running operating systems made for one machine (e.g. an ARMv7
board) on a different machine (e.g. an x86_64 PC board).

QEMU is also capable of providing userspace API virtualization for Linux
and BSD kernel interfaces. This allows binaries compiled against one
architecture ABI (e.g. the Linux PPC64 ABI) to be run on a host using a
different architecture ABI (e.g. the Linux x86_64 ABI). This does not
involve any hardware emulation, simply CPU and syscall emulation.

QEMU aims to fit into a variety of use cases. It can be invoked directly
by users wishing to have full control over its behaviour and settings.
It also aims to facilitate integration into higher level management
layers, by providing a stable command line interface and monitor API.
It is commonly invoked indirectly via the libvirt library when using
open source applications such as oVirt, OpenStack and virt-manager.

QEMU as a whole is released under the GNU General Public License,
version 2. For full licensing details, consult the LICENSE file.


Documentation
=============

Documentation can be found hosted online at
`<https://www.qemu.org/documentation/>`_. The documentation for the
current development version that is available at
`<https://www.qemu.org/docs/master/>`_ is generated from the ``docs/``
folder in the source tree, and is built by `Sphinx
<https://www.sphinx-doc.org/en/master/>_`.


Building
========

QEMU is multi-platform software intended to be buildable on all modern
Linux platforms, OS-X, Win32 (via the Mingw64 toolchain) and a variety
of other UNIX targets. The simple steps to build QEMU are:


.. code-block:: shell

  mkdir build
  cd build
  ../configure
  make

Additional information can also be found online via the QEMU website:

* `<https://qemu.org/Hosts/Linux>`_
* `<https://qemu.org/Hosts/Mac>`_
* `<https://qemu.org/Hosts/W32>`_


Submitting patches
==================

The QEMU source code is maintained under the GIT version control system.

.. code-block:: shell

   git clone https://gitlab.com/qemu-project/qemu.git

When submitting patches, one common approach is to use 'git
format-patch' and/or 'git send-email' to format & send the mail to the
qemu-devel@nongnu.org mailing list. All patches submitted must contain
a 'Signed-off-by' line from the author. Patches should follow the
guidelines set out in the `style section
<https://www.qemu.org/docs/master/devel/style.html>` of
the Developers Guide.

Additional information on submitting patches can be found online via
the QEMU website

* `<https://qemu.org/Contribute/SubmitAPatch>`_
* `<https://qemu.org/Contribute/TrivialPatches>`_

The QEMU website is also maintained under source control.

.. code-block:: shell

  git clone https://gitlab.com/qemu-project/qemu-web.git

* `<https://www.qemu.org/2017/02/04/the-new-qemu-website-is-up/>`_

A 'git-publish' utility was created to make above process less
cumbersome, and is highly recommended for making regular contributions,
or even just for sending consecutive patch series revisions. It also
requires a working 'git send-email' setup, and by default doesn't
automate everything, so you may want to go through the above steps
manually for once.

For installation instructions, please go to

*  `<https://github.com/stefanha/git-publish>`_

The workflow with 'git-publish' is:

.. code-block:: shell

  $ git checkout master -b my-feature
  $ # work on new commits, add your 'Signed-off-by' lines to each
  $ git publish

Your patch series will be sent and tagged as my-feature-v1 if you need to refer
back to it in the future.

Sending v2:

.. code-block:: shell

  $ git checkout my-feature # same topic branch
  $ # making changes to the commits (using 'git rebase', for example)
  $ git publish

Your patch series will be sent with 'v2' tag in the subject and the git tip
will be tagged as my-feature-v2.

Bug reporting
=============

The QEMU project uses GitLab issues to track bugs. Bugs
found when running code built from QEMU git or upstream released sources
should be reported via:

* `<https://gitlab.com/qemu-project/qemu/-/issues>`_

If using QEMU via an operating system vendor pre-built binary package, it
is preferable to report bugs to the vendor's own bug tracker first. If
the bug is also known to affect latest upstream code, it can also be
reported via GitLab.

For additional information on bug reporting consult:

* `<https://qemu.org/Contribute/ReportABug>`_


ChangeLog
=========

For version history and release notes, please visit
`<https://wiki.qemu.org/ChangeLog/>`_ or look at the git history for
more detailed information.


Contact
=======

The QEMU community can be contacted in a number of ways, with the two
main methods being email and IRC

* `<mailto:qemu-devel@nongnu.org>`_
* `<https://lists.nongnu.org/mailman/listinfo/qemu-devel>`_
* #qemu on irc.oftc.net

Information on additional methods of contacting the community can be
found online via the QEMU website:

* `<https://qemu.org/Contribute/StartHere>`_