[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v3 04/10] scripts/qapi: document the tool that generated the
|
From: |
Markus Armbruster |
|
Subject: |
Re: [PATCH v3 04/10] scripts/qapi: document the tool that generated the file |
|
Date: |
Sat, 06 May 2023 09:34:08 +0200 |
|
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) |
Alex Bennée <alex.bennee@linaro.org> writes:
> This makes it a little easier for developers to find where things
> where being generated.
>
> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
> Message-Id: <20230503091756.1453057-5-alex.bennee@linaro.org>
> ---
> scripts/qapi/gen.py | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/scripts/qapi/gen.py b/scripts/qapi/gen.py
> index 8f8f784f4a..e724507e1a 100644
> --- a/scripts/qapi/gen.py
> +++ b/scripts/qapi/gen.py
> @@ -162,7 +162,7 @@ def __init__(self, fname: str, blurb: str, pydoc: str):
>
> def _top(self) -> str:
> return mcgen('''
> -/* AUTOMATICALLY GENERATED, DO NOT MODIFY */
> +/* AUTOMATICALLY GENERATED by QAPIGenC, DO NOT MODIFY */
>
> /*
> %(blurb)s
> @@ -195,7 +195,7 @@ def _bottom(self) -> str:
>
> class QAPIGenTrace(QAPIGen):
> def _top(self) -> str:
> - return super()._top() + '# AUTOMATICALLY GENERATED, DO NOT
> MODIFY\n\n'
> + return super()._top() + '# AUTOMATICALLY GENERATED by QAPIGenTrace,
> DO NOT MODIFY\n\n'
>
>
> @contextmanager
Nitpicking... would "GENERATED BY {os.path.basename(sys.argv[0])}" be
more useful? The people who know what QAPIGenC and QAPIGenTrace mean
are probably the ones that need this warning the least :)
- [PATCH v3 00/10] tracing: remove dynamic vcpu state, Alex Bennée, 2023/05/05
- [PATCH v3 01/10] *-user: remove the guest_user_syscall tracepoints, Alex Bennée, 2023/05/05
- [PATCH v3 02/10] trace-events: remove the remaining vcpu trace events, Alex Bennée, 2023/05/05
- [PATCH v3 04/10] scripts/qapi: document the tool that generated the file, Alex Bennée, 2023/05/05
- Re: [PATCH v3 04/10] scripts/qapi: document the tool that generated the file,
Markus Armbruster <=
- [PATCH v3 03/10] trace: remove vcpu_id from the TraceEvent structure, Alex Bennée, 2023/05/05
- [PATCH v3 05/10] qapi: make the vcpu parameters deprecated for 8.1, Alex Bennée, 2023/05/05
- [PATCH v3 09/10] hw/9pfs: use qemu_xxhash4, Alex Bennée, 2023/05/05
- [PATCH v3 08/10] tcg: remove the final vestiges of dstate, Alex Bennée, 2023/05/05
- [PATCH v3 07/10] trace: remove control-vcpu.h, Alex Bennée, 2023/05/05
- [PATCH v3 10/10] accel/tcg: include cs_base in our hash calculations, Alex Bennée, 2023/05/05
- [PATCH v3 06/10] trace: remove code that depends on setting vcpu, Alex Bennée, 2023/05/05