7f5acfcb66
* reduced memory footprint for IPI virtualization on Intel processors * asynchronous teardown support (Linux only) -----BEGIN PGP SIGNATURE----- iQFIBAABCAAyFiEE8TM4V0tmI4mGbHaCv/vSX3jHroMFAmNiVykUHHBib256aW5p QHJlZGhhdC5jb20ACgkQv/vSX3jHroN0Swf/YxjphCtFgYYSO14WP+7jAnfRZLhm 0xWChWP8rco5I352OBFeFU64Av5XoLGNn6SZLl8lcg86lQ/G0D27jxu6wOcDDHgw 0yTDO1gevj51UKsbxoC66OWSZwKTEo398/BHPDcI2W41yOFycSdtrPgspOrFRVvf 7M3nNjuNPsQorZeuu8NGr3jakqbt99ZDXcyDEWbrEAcmy2JBRMbGgT0Kdnc6aZfW CvL+1ljxzldNwGeNBbQW2QgODbfHx5cFZcy4Daze35l5Ra7K/FrgAzr6o/HXptya 9fEs5LJQ1JWI6JtpaWwFy7fcIIOsJ0YW/hWWQZSDt9JdAJFE5/+vF+Kz5Q== =CgrO -----END PGP SIGNATURE----- Merge tag 'for-upstream' of https://gitlab.com/bonzini/qemu into staging * bug fixes * reduced memory footprint for IPI virtualization on Intel processors * asynchronous teardown support (Linux only) # -----BEGIN PGP SIGNATURE----- # # iQFIBAABCAAyFiEE8TM4V0tmI4mGbHaCv/vSX3jHroMFAmNiVykUHHBib256aW5p # QHJlZGhhdC5jb20ACgkQv/vSX3jHroN0Swf/YxjphCtFgYYSO14WP+7jAnfRZLhm # 0xWChWP8rco5I352OBFeFU64Av5XoLGNn6SZLl8lcg86lQ/G0D27jxu6wOcDDHgw # 0yTDO1gevj51UKsbxoC66OWSZwKTEo398/BHPDcI2W41yOFycSdtrPgspOrFRVvf # 7M3nNjuNPsQorZeuu8NGr3jakqbt99ZDXcyDEWbrEAcmy2JBRMbGgT0Kdnc6aZfW # CvL+1ljxzldNwGeNBbQW2QgODbfHx5cFZcy4Daze35l5Ra7K/FrgAzr6o/HXptya # 9fEs5LJQ1JWI6JtpaWwFy7fcIIOsJ0YW/hWWQZSDt9JdAJFE5/+vF+Kz5Q== # =CgrO # -----END PGP SIGNATURE----- # gpg: Signature made Wed 02 Nov 2022 07:40:25 EDT # gpg: using RSA key F13338574B662389866C7682BFFBD25F78C7AE83 # gpg: issuer "pbonzini@redhat.com" # gpg: Good signature from "Paolo Bonzini <bonzini@gnu.org>" [full] # gpg: aka "Paolo Bonzini <pbonzini@redhat.com>" [full] # Primary key fingerprint: 46F5 9FBD 57D6 12E7 BFD4 E2F7 7E15 100C CD36 69B1 # Subkey fingerprint: F133 3857 4B66 2389 866C 7682 BFFB D25F 78C7 AE83 * tag 'for-upstream' of https://gitlab.com/bonzini/qemu: target/i386: Fix test for paging enabled util/log: Close per-thread log file on thread termination target/i386: Set maximum APIC ID to KVM prior to vCPU creation os-posix: asynchronous teardown for shutdown on Linux target/i386: Fix calculation of LOCK NEG eflags Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
103 lines
3.9 KiB
Meson
103 lines
3.9 KiB
Meson
util_ss.add(files('osdep.c', 'cutils.c', 'unicode.c', 'qemu-timer-common.c'))
|
|
util_ss.add(files('thread-context.c'), numa)
|
|
if not config_host_data.get('CONFIG_ATOMIC64')
|
|
util_ss.add(files('atomic64.c'))
|
|
endif
|
|
util_ss.add(when: 'CONFIG_LINUX', if_true: files('async-teardown.c'))
|
|
util_ss.add(when: 'CONFIG_POSIX', if_true: files('aio-posix.c'))
|
|
util_ss.add(when: 'CONFIG_POSIX', if_true: files('fdmon-poll.c'))
|
|
if config_host_data.get('CONFIG_EPOLL_CREATE1')
|
|
util_ss.add(files('fdmon-epoll.c'))
|
|
endif
|
|
util_ss.add(when: linux_io_uring, if_true: files('fdmon-io_uring.c'))
|
|
util_ss.add(when: 'CONFIG_POSIX', if_true: files('compatfd.c'))
|
|
util_ss.add(when: 'CONFIG_POSIX', if_true: files('event_notifier-posix.c'))
|
|
util_ss.add(when: 'CONFIG_POSIX', if_true: files('mmap-alloc.c'))
|
|
freebsd_dep = []
|
|
if targetos == 'freebsd'
|
|
freebsd_dep = util
|
|
endif
|
|
util_ss.add(when: 'CONFIG_POSIX', if_true: [files('oslib-posix.c'), freebsd_dep])
|
|
util_ss.add(when: 'CONFIG_POSIX', if_true: files('qemu-thread-posix.c'))
|
|
util_ss.add(when: 'CONFIG_POSIX', if_true: files('memfd.c'))
|
|
util_ss.add(when: 'CONFIG_WIN32', if_true: files('aio-win32.c'))
|
|
util_ss.add(when: 'CONFIG_WIN32', if_true: files('event_notifier-win32.c'))
|
|
util_ss.add(when: 'CONFIG_WIN32', if_true: files('oslib-win32.c'))
|
|
util_ss.add(when: 'CONFIG_WIN32', if_true: files('qemu-thread-win32.c'))
|
|
util_ss.add(when: 'CONFIG_WIN32', if_true: winmm)
|
|
util_ss.add(when: 'CONFIG_WIN32', if_true: pathcch)
|
|
util_ss.add(files('envlist.c', 'path.c', 'module.c'))
|
|
util_ss.add(files('host-utils.c'))
|
|
util_ss.add(files('bitmap.c', 'bitops.c'))
|
|
util_ss.add(files('fifo8.c'))
|
|
util_ss.add(files('cacheflush.c'))
|
|
util_ss.add(files('error.c', 'error-report.c'))
|
|
util_ss.add(files('qemu-print.c'))
|
|
util_ss.add(files('id.c'))
|
|
util_ss.add(files('qemu-config.c', 'notify.c'))
|
|
util_ss.add(files('qemu-option.c', 'qemu-progress.c'))
|
|
util_ss.add(files('keyval.c'))
|
|
util_ss.add(files('crc32c.c'))
|
|
util_ss.add(files('uuid.c'))
|
|
util_ss.add(files('getauxval.c'))
|
|
util_ss.add(files('rcu.c'))
|
|
if have_membarrier
|
|
util_ss.add(files('sys_membarrier.c'))
|
|
endif
|
|
util_ss.add(files('log.c'))
|
|
util_ss.add(files('qdist.c'))
|
|
util_ss.add(files('qht.c'))
|
|
util_ss.add(files('qsp.c'))
|
|
util_ss.add(files('range.c'))
|
|
util_ss.add(files('stats64.c'))
|
|
util_ss.add(files('systemd.c'))
|
|
util_ss.add(files('transactions.c'))
|
|
util_ss.add(when: 'CONFIG_POSIX', if_true: files('drm.c'))
|
|
util_ss.add(files('guest-random.c'))
|
|
util_ss.add(files('yank.c'))
|
|
util_ss.add(files('int128.c'))
|
|
util_ss.add(files('memalign.c'))
|
|
|
|
if have_user
|
|
util_ss.add(files('selfmap.c'))
|
|
endif
|
|
|
|
if have_system
|
|
util_ss.add(files('crc-ccitt.c'))
|
|
util_ss.add(when: gio, if_true: files('dbus.c'))
|
|
util_ss.add(when: 'CONFIG_LINUX', if_true: files('userfaultfd.c'))
|
|
endif
|
|
|
|
if have_block
|
|
util_ss.add(files('aiocb.c', 'async.c', 'aio-wait.c'))
|
|
util_ss.add(files('base64.c'))
|
|
util_ss.add(files('buffer.c'))
|
|
util_ss.add(files('bufferiszero.c'))
|
|
util_ss.add(files('coroutine-@0@.c'.format(config_host['CONFIG_COROUTINE_BACKEND'])))
|
|
util_ss.add(files('hbitmap.c'))
|
|
util_ss.add(files('hexdump.c'))
|
|
util_ss.add(files('iova-tree.c'))
|
|
util_ss.add(files('iov.c', 'qemu-sockets.c', 'uri.c'))
|
|
util_ss.add(files('lockcnt.c'))
|
|
util_ss.add(files('main-loop.c'))
|
|
util_ss.add(files('nvdimm-utils.c'))
|
|
util_ss.add(files('qemu-coroutine.c', 'qemu-coroutine-lock.c', 'qemu-coroutine-io.c'))
|
|
util_ss.add(when: 'CONFIG_LINUX', if_true: [
|
|
files('vhost-user-server.c'), vhost_user
|
|
])
|
|
util_ss.add(files('block-helpers.c'))
|
|
util_ss.add(files('qemu-coroutine-sleep.c'))
|
|
util_ss.add(files('qemu-co-shared-resource.c'))
|
|
util_ss.add(files('qemu-co-timeout.c'))
|
|
util_ss.add(files('thread-pool.c', 'qemu-timer.c'))
|
|
util_ss.add(files('readline.c'))
|
|
util_ss.add(files('throttle.c'))
|
|
util_ss.add(files('timed-average.c'))
|
|
if config_host_data.get('CONFIG_INOTIFY1')
|
|
util_ss.add(files('filemonitor-inotify.c'))
|
|
else
|
|
util_ss.add(files('filemonitor-stub.c'))
|
|
endif
|
|
util_ss.add(when: 'CONFIG_LINUX', if_true: files('vfio-helpers.c'))
|
|
endif
|