@@ -1839,7 +1839,7 @@
#
# @id: Block graph node identifier. This @id is generated only for
# x-debug-query-block-graph and does not relate to any other identifiers in
-# Qemu.
+# QEMU.
#
# @type: Type of graph node. Can be one of block-backend, block-job or
# block-driver-state.
@@ -122,7 +122,7 @@ def __init__(self,
@param console_log: (optional) path to console log file
@param log_dir: where to create and keep log files
@param qmp_timer: (optional) default QMP socket timeout
- @note: Qemu process is not started until launch() is used.
+ @note: QEMU process is not started until launch() is used.
'''
# pylint: disable=too-many-arguments
@@ -2910,7 +2910,7 @@ sub process {
ERROR("use QEMU instead of Qemu or QEmu\n" . $herecurr);
}
-# Qemu error function tests
+# QEMU error function tests
# Find newlines in error messages
my $qemu_error_funcs = qr{error_setg|
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
#
-# Render Qemu Block Graph
+# Render QEMU Block Graph
#
# Copyright (c) 2018 Virtuozzo International GmbH. All rights reserved.
#
@@ -183,7 +183,7 @@ def __call__(self, parser, namespace, values, option_string=None):
mirror use mirror job instead of backup''',
formatter_class=argparse.RawTextHelpFormatter)
p.add_argument('--env', nargs='+', help='''\
-Qemu binaries with labels and options, see below
+QEMU binaries with labels and options, see below
"ENV format" section''',
action=ExtendAction)
p.add_argument('--dir', nargs='+', help='''\
@@ -209,7 +209,7 @@ def __call__(self, parser, namespace, values, option_string=None):
p.add_argument('--target-cache', help='''\
Setup cache for target nodes. Options:
direct: default, use O_DIRECT and aio=native
- cached: use system cache (Qemu default) and aio=threads (Qemu default)
+ cached: use system cache (QEMU default) and aio=threads (QEMU default)
both: generate two test cases for each src:dst pair''',
default='direct', choices=('direct', 'cached', 'both'))
@@ -36,7 +36,7 @@ def bench_block_job(cmd, cmd_args, qemu_args):
cmd -- qmp command to run block-job (like blockdev-backup)
cmd_args -- dict of qmp command arguments
- qemu_args -- list of Qemu command line arguments, including path to Qemu
+ qemu_args -- list of QEMU command line arguments, including path to QEMU
binary
Returns {'seconds': int} on success and {'error': str} on failure, dict may
@@ -48,7 +48,7 @@ header files in <BUILD_DIR>/target/hexagon
gen_tcg_func_table.py -> tcg_func_table_generated.c.inc
gen_helper_funcs.py -> helper_funcs_generated.c.inc
-Qemu helper functions have 3 parts
+QEMU helper functions have 3 parts
DEF_HELPER declaration indicates the signature of the helper
gen_helper_<NAME> will generate a TCG call to the helper function
The helper implementation
@@ -21,9 +21,9 @@
def get_args():
parser = argparse.ArgumentParser(description="A gdbstub test runner")
- parser.add_argument("--qemu", help="Qemu binary for test",
+ parser.add_argument("--qemu", help="QEMU binary for test",
required=True)
- parser.add_argument("--qargs", help="Qemu arguments for test")
+ parser.add_argument("--qargs", help="QEMU arguments for test")
parser.add_argument("--binary", help="Binary to debug",
required=True)
parser.add_argument("--test", help="GDB test script",
@@ -157,7 +157,7 @@ def root(*names: str) -> str:
progs = sorted(glob.iglob(pattern))
self.qemu_prog = next(p for p in progs if isxfile(p))
except StopIteration:
- sys.exit("Not found any Qemu executable binary by pattern "
+ sys.exit("Not found any QEMU executable binary by pattern "
f"'{pattern}'")
self.qemu_img_prog = os.getenv('QEMU_IMG_PROG', root('qemu-img'))
QEMU should be written all caps. Normally checkpatch.pl warns when it is not (see commit 9964d8f9422: "checkpatch: Add QEMU specific rule"). Replace Qemu -> QEMU. Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> --- qapi/block-core.json | 2 +- python/qemu/machine/machine.py | 2 +- scripts/checkpatch.pl | 2 +- scripts/render_block_graph.py | 2 +- scripts/simplebench/bench-backup.py | 4 ++-- scripts/simplebench/bench_block_job.py | 2 +- target/hexagon/README | 2 +- tests/guest-debug/run-test.py | 4 ++-- tests/qemu-iotests/testenv.py | 2 +- 9 files changed, 11 insertions(+), 11 deletions(-)