Searched +full:- +full:- +full:disable +full:- +full:vhost +full:- +full:vdpa (Results 1 – 12 of 12) sorted by relevance
| /openbmc/qemu/qapi/ |
| H A D | net.json | 1 # -*- Mode: Python -*- 23 # - If @name is not a valid network device, DeviceNotFound 31 # .. qmp-example:: 33 # -> { "execute": "set_link", 35 # <- { "return": {} } 49 # - If @type is not a valid network backend, DeviceNotFound 51 # .. qmp-example:: 53 # -> { "execute": "netdev_add", 56 # <- { "return": {} } 59 'allow-preconfig': true } [all …]
|
| H A D | qom.json | 1 # -*- Mode: Python -*- 5 # See the COPYING file in the top-level directory. 8 { 'include': 'block-core.json' } 40 # @default-value: the default value, if any (since 5.0) 48 '*default-value': 'any' } } 79 # @qom-list: 83 # @path: the path within the object model. See `qom-get` for a 90 # .. qmp-example:: 92 # -> { "execute": "qom-list", 94 # <- { "return": [ { "name": "type", "type": "string" }, [all …]
|
| H A D | block-core.json | 1 # -*- Mode: Python -*- 21 # @vm-state-size: size of the VM state 23 # @date-sec: UTC date of the snapshot in seconds 25 # @date-nsec: fractional part in nano seconds to be used with date-sec 27 # @vm-clock-sec: VM clock relative to boot in seconds 29 # @vm-clock-nsec: fractional part in nano seconds to be used with 30 # vm-clock-sec 33 # record/replay is enabled. Used for "time-traveling" to match 35 # counter may be obtained through `query-replay` command 41 'data': { 'id': 'str', 'name': 'str', 'vm-state-size': 'int', [all …]
|
| /openbmc/qemu/scripts/ |
| H A D | meson-buildoptions.sh | 1 # This file is generated by meson-buildoptions.py, do not edit! 3 printf "%s\n" ' --audio-drv-list=CHOICES Set audio driver list [default] (choices: alsa/co' 6 printf "%s\n" ' --bindir=VALUE Executable directory [bin]' 7 printf "%s\n" ' --block-drv-ro-whitelist=VALUE' 8 printf "%s\n" ' set block driver read-only whitelist (by default' 9 printf "%s\n" ' affects only QEMU, not tools like qemu-img)' 10 printf "%s\n" ' --block-drv-rw-whitelist=VALUE' 11 printf "%s\n" ' set block driver read-write whitelist (by default' 12 printf "%s\n" ' affects only QEMU, not tools like qemu-img)' 13 printf "%s\n" ' --datadir=VALUE Data file directory [share]' [all …]
|
| /openbmc/qemu/hw/virtio/ |
| H A D | vhost-vdpa.c | 2 * vhost-vdpa 4 * Copyright(c) 2017-2018 Intel Corporation. 8 * See the COPYING file in the top-level directory. 13 #include <linux/vhost.h> 18 #include "hw/virtio/vhost.h" 19 #include "hw/virtio/vhost-backend.h" 20 #include "hw/virtio/virtio-net.h" 21 #include "hw/virtio/vhost-shadow-virtqueue.h" 22 #include "hw/virtio/vhost-vdpa.h" 23 #include "system/address-spaces.h" [all …]
|
| /openbmc/qemu/include/hw/virtio/ |
| H A D | vhost.h | 5 #include "hw/virtio/vhost-backend.h" 14 /* Generic structures common for any vhost based device. */ 67 /* Vhost device config space changed callback 75 * struct vhost_dev - common vhost_dev structure 90 /* the first virtqueue which would be used by this vhost dev */ 92 /* one past the last vq index for the virtio device (not vhost) */ 94 /* if non-zero, minimum required value for max_queues */ 97 * vhost feature handling requires matching the feature set 102 * @acked_features: final negotiated features with front-end driver 115 * @protocol_features: is the vhost-user only feature set by [all …]
|
| /openbmc/qemu/ |
| H A D | meson_options.txt | 1 # These options do not correspond to a --enable/--disable-* option 3 # scripts/meson-buildoptions.py's SKIP_OPTIONS constant too. 9 option('qemu_firmwarepath', type : 'array', value : ['share/qemu-firmware'], 12 description: 'use specified string as sub-version of the package') 25 …description: 'set block driver read-write whitelist (by default affects only QEMU, not tools like … 27 …description: 'set block driver read-only whitelist (by default affects only QEMU, not tools like q… 28 option('interp_prefix', type : 'string', value : '/usr/gnemul/qemu-%M', 33 description: 'fuzzing engine library for OSS-Fuzz') 40 # Everything else can be set via --enable/--disable-* option 42 # here make sure to run "make update-buildoptions". [all …]
|
| H A D | qemu-options.hx | 14 "-h or -help display this help and exit\n", QEMU_ARCH_ALL) 16 ``-h`` 21 "-version display version information and exit\n", QEMU_ARCH_ALL) 23 ``-version`` 28 "-machine [type=]name[,prop[=value][,...]]\n" 29 " selects emulated machine ('-machine help' for list)\n" 33 " dump-guest-core=on|off include guest memory in a core dump (default=on)\n" 34 " mem-merge=on|off controls memory merge support (default: on)\n" 35 " aes-key-wrap=on|off controls support for AES key wrapping (default=on)\n" 36 " dea-key-wrap=on|off controls support for DEA key wrapping (default=on)\n" [all …]
|
| H A D | meson.build | 15 meson.add_postconf_script(find_program('scripts/symlink-install-tree.py')) 28 config_host = keyval.load(meson.current_build_dir() / 'config-host.mak') 35 tmpdir = meson.current_build_dir() / 'meson-private/temp' 66 have_linux_user = have_linux_user or target.endswith('linux-user') 67 have_bsd_user = have_bsd_user or target.endswith('bsd-user') 68 have_system = have_system or target.endswith('-softmmu') 113 …dgen.version() + ' is unsupported. You can install a new version with "cargo install bindgen-cli"') 120 message('To use Rust you can install a new version with "cargo install bindgen-cli"') 128 '--rustc-version', rustc.version(), 129 '--workspace', meson.project_source_root() / 'rust'] [all …]
|
| /openbmc/qemu/hw/net/ |
| H A D | virtio-net.c | 10 * the COPYING file in the top-level directory. 18 #include "qemu/main-loop.h" 24 #include "qemu/error-report.h" 28 #include "qemu/config-file.h" 30 #include "hw/virtio/virtio-net.h" 33 #include "hw/virtio/virtio-bus.h" 35 #include "qapi/qapi-events-net.h" 36 #include "hw/qdev-properties.h" 37 #include "qapi/qapi-types-migration.h" 38 #include "qapi/qapi-events-migration.h" [all …]
|
| /openbmc/ |
| D | opengrok1.0.log | 1 2025-10-25 03:01:17.956-0500 FINE t1 Executor.registerErrorHandler: Installing default uncaught exception handler 2 2025-10-25 03:01:18.030-0500 INFO t1 Indexer.parseOptions: Indexer options: [-c, /usr/local/bin/ctags, -T, 12, -s, /opengrok/src, - [all...] |
| D | opengrok2.0.log | 1 2025-10-24 03:01:14.545-0500 FINE t1 Executor.registerErrorHandler: Installing default uncaught exception handler 2 2025-10-24 03:01:14.609-0500 INFO t1 Indexer.parseOptions: Indexer options: [-c, /usr/local/bin/ctags, -T, 12, -s, /opengrok/src, - [all...] |