[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 20/20] tracing: install trace events file only if necessary
From: |
Stefan Hajnoczi |
Subject: |
[PULL 20/20] tracing: install trace events file only if necessary |
Date: |
Thu, 20 Apr 2023 08:09:48 -0400 |
From: Carlos Santos <casantos@redhat.com>
It is not useful when configuring with --enable-trace-backends=nop.
Signed-off-by: Carlos Santos <casantos@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Message-Id: <20230408010410.281263-1-casantos@redhat.com>
---
trace/meson.build | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/trace/meson.build b/trace/meson.build
index 8e80be895c..30b1d942eb 100644
--- a/trace/meson.build
+++ b/trace/meson.build
@@ -64,7 +64,7 @@ trace_events_all = custom_target('trace-events-all',
input: trace_events_files,
command: [ 'cat', '@INPUT@' ],
capture: true,
- install: true,
+ install: get_option('trace_backends') != [
'nop' ],
install_dir: qemu_datadir)
if 'ust' in get_option('trace_backends')
--
2.39.2
- [PULL 03/20] block/block-backend: add block layer APIs resembling Linux ZonedBlockDevice ioctls, (continued)
- [PULL 03/20] block/block-backend: add block layer APIs resembling Linux ZonedBlockDevice ioctls, Stefan Hajnoczi, 2023/04/20
- [PULL 04/20] block/raw-format: add zone operations to pass through requests, Stefan Hajnoczi, 2023/04/20
- [PULL 06/20] iotests: test new zone operations, Stefan Hajnoczi, 2023/04/20
- [PULL 07/20] block: add some trace events for new block layer APIs, Stefan Hajnoczi, 2023/04/20
- [PULL 05/20] block: add zoned BlockDriver check to block layer, Stefan Hajnoczi, 2023/04/20
- [PULL 09/20] block/dmg: Declare a type definition for DMG uncompress function, Stefan Hajnoczi, 2023/04/20
- [PULL 10/20] tracetool: use relative paths for '#line' preprocessor directives, Stefan Hajnoczi, 2023/04/20
- [PULL 12/20] block: introduce zone append write for zoned devices, Stefan Hajnoczi, 2023/04/20
- [PULL 14/20] block: add some trace events for zone append, Stefan Hajnoczi, 2023/04/20
- [PULL 15/20] include: update virtio_blk headers to v6.3-rc1, Stefan Hajnoczi, 2023/04/20
- [PULL 20/20] tracing: install trace events file only if necessary,
Stefan Hajnoczi <=
- [PULL 08/20] docs/zoned-storage: add zoned device documentation, Stefan Hajnoczi, 2023/04/20
- [PULL 18/20] virtio-blk: add some trace events for zoned emulation, Stefan Hajnoczi, 2023/04/20
- [PULL 11/20] file-posix: add tracking of the zone write pointers, Stefan Hajnoczi, 2023/04/20
- [PULL 13/20] qemu-iotests: test zone append operation, Stefan Hajnoczi, 2023/04/20
- [PULL 16/20] virtio-blk: add zoned storage emulation for zoned devices, Stefan Hajnoczi, 2023/04/20
- [PULL 17/20] block: add accounting for zone append operation, Stefan Hajnoczi, 2023/04/20
- [PULL 19/20] docs/zoned-storage:add zoned emulation use case, Stefan Hajnoczi, 2023/04/20
- Re: [PULL 00/20] Block patches, Richard Henderson, 2023/04/21