adding Irix (and, to a lesser extent, Solaris) userland emulation to QEMU
Go to file
Eric Blake 15c2f669e3 qapi: Split visit_end_struct() into pieces
As mentioned in previous patches, we want to call visit_end_struct()
functions unconditionally, so that visitors can release resources
tied up since the matching visit_start_struct() without also having
to worry about error priority if more than one error occurs.

Even though error_propagate() can be safely used to ignore a second
error during cleanup caused by a first error, it is simpler if the
cleanup cannot set an error.  So, split out the error checking
portion (basically, input visitors checking for unvisited keys) into
a new function visit_check_struct(), which can be safely skipped if
any earlier errors are encountered, and leave the cleanup portion
(which never fails, but must be called unconditionally if
visit_start_struct() succeeded) in visit_end_struct().

Generated code in qapi-visit.c has diffs resembling:

|@@ -59,10 +59,12 @@ void visit_type_ACPIOSTInfo(Visitor *v,
|         goto out_obj;
|     }
|     visit_type_ACPIOSTInfo_members(v, obj, &err);
|-    error_propagate(errp, err);
|-    err = NULL;
|+    if (err) {
|+        goto out_obj;
|+    }
|+    visit_check_struct(v, &err);
| out_obj:
|-    visit_end_struct(v, &err);
|+    visit_end_struct(v);
| out:

and in qapi-event.c:

@@ -47,7 +47,10 @@ void qapi_event_send_acpi_device_ost(ACP
|         goto out;
|     }
|     visit_type_q_obj_ACPI_DEVICE_OST_arg_members(v, &param, &err);
|-    visit_end_struct(v, err ? NULL : &err);
|+    if (!err) {
|+        visit_check_struct(v, &err);
|+    }
|+    visit_end_struct(v);
|     if (err) {
|         goto out;

Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <1461879932-9020-20-git-send-email-eblake@redhat.com>
[Conflict with a doc fixup resolved]
Signed-off-by: Markus Armbruster <armbru@redhat.com>
2016-05-12 09:47:55 +02:00
audio
backends hostmem-file: plug a small leak 2016-04-15 17:56:06 +02:00
block qapi: Split visit_end_struct() into pieces 2016-05-12 09:47:55 +02:00
bsd-user bsd-user: Suppress gcc 4.x -Wpointer-sign (included in -Wall) warning 2016-04-05 17:49:41 +01:00
contrib
crypto crypto: do an explicit check for nettle pbkdf functions 2016-03-30 14:55:11 +01:00
default-configs
disas * Log filtering from Alex and Peter 2016-03-24 21:42:40 +00:00
docs qapi: Split visit_end_struct() into pieces 2016-05-12 09:47:55 +02:00
dtc@65cc4d2748
fpu
fsdev
gdb-xml
hw qapi: Split visit_end_struct() into pieces 2016-05-12 09:47:55 +02:00
include qapi: Split visit_end_struct() into pieces 2016-05-12 09:47:55 +02:00
io
libdecnumber
linux-headers
linux-user
migration
nbd nbd: Don't mishandle unaligned client requests 2016-04-22 11:55:35 +01:00
net filter-buffer: fix segfault when starting qemu with status=off property 2016-04-06 09:52:07 +08:00
pc-bios Update OpenBIOS images 2016-04-18 09:38:55 +01:00
pixman@87eea99e44
po Update language files for QEMU 2.6.0 2016-04-19 18:41:25 +01:00
qapi qapi: Split visit_end_struct() into pieces 2016-05-12 09:47:55 +02:00
qga qga: Workaround for console redirection from non-interactive qemu-ga service 2016-04-07 11:43:54 -05:00
qobject
qom qapi: Split visit_end_struct() into pieces 2016-05-12 09:47:55 +02:00
replay qapi: Use strict QMP input visitor in more places 2016-05-12 09:47:54 +02:00
roms Update OpenBIOS images 2016-04-18 09:38:55 +01:00
scripts qapi: Split visit_end_struct() into pieces 2016-05-12 09:47:55 +02:00
slirp slirp: fix guest network access with darwin host 2016-04-28 18:12:08 +01:00
stubs event-notifier: Add "is_external" parameter 2016-04-22 16:43:56 +02:00
target-alpha
target-arm target-arm: Make the 64-bit version of VTCR do the migration 2016-04-04 17:33:52 +01:00
target-cris
target-i386 event-notifier: Add "is_external" parameter 2016-04-22 16:43:56 +02:00
target-lm32
target-m68k
target-microblaze include/qemu/osdep.h: Don't include qapi/error.h 2016-03-22 22:20:15 +01:00
target-mips target-mips: Fix RDHWR exception host PC 2016-04-28 10:03:24 +01:00
target-moxie
target-openrisc
target-ppc ppc: Fix migration of the XER register 2016-04-18 15:14:38 +10:00
target-s390x
target-sh4 include/qemu/osdep.h: Don't include qapi/error.h 2016-03-22 22:20:15 +01:00
target-sparc target-sparc: fix Trap Based Address Register behavior for sparc64 2016-04-15 09:30:40 +01:00
target-tilegx
target-tricore
target-unicore32
target-xtensa
tcg tcg: check for CONFIG_DEBUG_TCG instead of NDEBUG 2016-04-21 15:43:20 +01:00
tests qapi: Split visit_end_struct() into pieces 2016-05-12 09:47:55 +02:00
trace
ui input-linux: refine mouse detection 2016-04-13 15:52:28 +02:00
util qapi: Use strict QMP input visitor in more places 2016-05-12 09:47:54 +02:00
.dir-locals.el
.exrc
.gitignore
.gitmodules
.mailmap
.travis.yml
CODING_STYLE
COPYING
COPYING.LIB
Changelog
HACKING
LICENSE
MAINTAINERS MAINTAINERS: Avoid using K: for NUMA section 2016-04-21 11:40:57 +01:00
Makefile
Makefile.objs
Makefile.target
README
VERSION Update version for v2.6.0 release 2016-05-11 16:44:26 +01:00
accel.c
aio-posix.c aio-posix: Skip external nodes in aio_dispatch 2016-04-22 16:43:59 +02:00
aio-win32.c
arch_init.c
async.c
balloon.c
block.c
blockdev-nbd.c
blockdev.c
blockjob.c
bootdevice.c
bt-host.c
bt-vhci.c
configure configure: Check if struct fsxattr is available from linux header 2016-05-02 13:04:26 +01:00
cpu-exec-common.c
cpu-exec.c
cpus.c cpus: don't use atomic_read for vm_clock_warp_start 2016-04-05 11:46:52 +02:00
cputlb.c
device-hotplug.c
device_tree.c
disas.c
dma-helpers.c
dump.c
exec.c
gdbstub.c
hmp-commands-info.hx
hmp-commands.hx
hmp.c
hmp.h
iohandler.c iohandler: Introduce iohandler_get_aio_context 2016-04-22 16:43:42 +02:00
ioport.c
iothread.c
kvm-all.c
kvm-stub.c
main-loop.c
memory.c
memory_mapping.c
module-common.c
monitor.c
numa.c
os-posix.c
os-win32.c
page_cache.c
qapi-schema.json
qdev-monitor.c
qdict-test-data.txt
qemu-bridge-helper.c
qemu-char.c char: ensure all clients are in non-blocking mode 2016-04-05 11:46:52 +02:00
qemu-doc.texi
qemu-ga.texi
qemu-img-cmds.hx
qemu-img.c qom: -object error messages lost location, restore it 2016-04-28 08:19:36 +02:00
qemu-img.texi
qemu-io-cmds.c qemu-io: Support 'aio_write -z' 2016-04-15 17:22:11 +02:00
qemu-io.c qom: -object error messages lost location, restore it 2016-04-28 08:19:36 +02:00
qemu-nbd.c qom: -object error messages lost location, restore it 2016-04-28 08:19:36 +02:00
qemu-nbd.texi
qemu-options-wrapper.h
qemu-options.h
qemu-options.hx fw_cfg: Adopt /opt/RFQDN convention 2016-04-19 16:09:50 +02:00
qemu-seccomp.c seccomp: adding sysinfo system call to whitelist 2016-04-16 20:27:44 +02:00
qemu-tech.texi
qemu-timer.c
qemu.nsi
qemu.sasl
qjson.c
qmp-commands.hx
qmp.c qapi: Use strict QMP input visitor in more places 2016-05-12 09:47:54 +02:00
qtest.c
rules.mak
softmmu_template.h
spice-qemu-char.c
tcg-runtime.c
tci.c tci: Fix build regression 2016-04-07 19:01:21 +02:00
thread-pool.c
thunk.c
tpm.c
trace-events ui/virtio-gpu: add and use qemu_create_displaysurface_pixman 2016-04-11 12:32:01 +02:00
translate-all.c translate-all: add missing fold of tb_ctx into tcg_ctx 2016-04-08 00:07:56 +02:00
translate-all.h
translate-common.c
user-exec.c
version.rc
vl.c qom: -object error messages lost location, restore it 2016-04-28 08:19:36 +02:00
xen-common-stub.c
xen-common.c
xen-hvm-stub.c
xen-hvm.c
xen-mapcache.c

README

         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.


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:

  mkdir build
  cd build
  ../configure
  make

Complete details of the process for building and configuring QEMU for
all supported host platforms can be found in the qemu-tech.html file.
Additional information can also be found online via the QEMU website:

  http://qemu-project.org/Hosts/Linux
  http://qemu-project.org/Hosts/W32


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

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

   git clone git://git.qemu-project.org/qemu.git

When submitting patches, the preferred 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 HACKING and CODING_STYLE files.

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

  http://qemu-project.org/Contribute/SubmitAPatch
  http://qemu-project.org/Contribute/TrivialPatches


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

The QEMU project uses Launchpad as its primary upstream bug tracker. Bugs
found when running code built from QEMU git or upstream released sources
should be reported via:

  https://bugs.launchpad.net/qemu/

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 launchpad.

For additional information on bug reporting consult:

  http://qemu-project.org/Contribute/ReportABug


Contact
=======

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

 - qemu-devel@nongnu.org
   http://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:

  http://qemu-project.org/Contribute/StartHere

-- End