[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 1/5] dump: Rename qmp_dump_guest_memory() parameter to match
|
From: |
Marc-André Lureau |
|
Subject: |
Re: [PATCH 1/5] dump: Rename qmp_dump_guest_memory() parameter to match QAPI schema |
|
Date: |
Tue, 31 Oct 2023 10:54:31 +0400 |
On Mon, Oct 30, 2023 at 5:37 PM Markus Armbruster <armbru@redhat.com> wrote:
>
> The name of the second parameter differs between QAPI schema and C
> implementation: it's @protocol in the former and @file in the latter.
> Potentially confusing. Change the C implementation to match the QAPI
> schema.
>
> Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
> ---
> dump/dump.c | 13 +++++++------
> 1 file changed, 7 insertions(+), 6 deletions(-)
>
> diff --git a/dump/dump.c b/dump/dump.c
> index d355ada62e..a1fad17f9c 100644
> --- a/dump/dump.c
> +++ b/dump/dump.c
> @@ -2061,11 +2061,12 @@ DumpQueryResult *qmp_query_dump(Error **errp)
> return result;
> }
>
> -void qmp_dump_guest_memory(bool paging, const char *file,
> +void qmp_dump_guest_memory(bool paging, const char *protocol,
> bool has_detach, bool detach,
> - bool has_begin, int64_t begin, bool has_length,
> - int64_t length, bool has_format,
> - DumpGuestMemoryFormat format, Error **errp)
> + bool has_begin, int64_t begin,
> + bool has_length, int64_t length,
> + bool has_format, DumpGuestMemoryFormat format,
> + Error **errp)
> {
> ERRP_GUARD();
> const char *p;
> @@ -2128,7 +2129,7 @@ void qmp_dump_guest_memory(bool paging, const char
> *file,
> }
>
> #if !defined(WIN32)
> - if (strstart(file, "fd:", &p)) {
> + if (strstart(protocol, "fd:", &p)) {
> fd = monitor_get_fd(monitor_cur(), p, errp);
> if (fd == -1) {
> return;
> @@ -2136,7 +2137,7 @@ void qmp_dump_guest_memory(bool paging, const char
> *file,
> }
> #endif
>
> - if (strstart(file, "file:", &p)) {
> + if (strstart(protocol, "file:", &p)) {
> fd = qemu_open_old(p, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY,
> S_IRUSR);
> if (fd < 0) {
> error_setg_file_open(errp, errno, p);
> --
> 2.41.0
>
- [PATCH 0/5] dump: Minor fixes & improvements, Markus Armbruster, 2023/10/30
- [PATCH 5/5] dump: Drop redundant check for empty dump, Markus Armbruster, 2023/10/30
- [PATCH 3/5] dump: Recognize "fd:" protocols on Windows hosts, Markus Armbruster, 2023/10/30
- [PATCH 1/5] dump: Rename qmp_dump_guest_memory() parameter to match QAPI schema, Markus Armbruster, 2023/10/30
- Re: [PATCH 1/5] dump: Rename qmp_dump_guest_memory() parameter to match QAPI schema,
Marc-André Lureau <=
- [PATCH 4/5] dump: Improve some dump-guest-memory error messages, Markus Armbruster, 2023/10/30
- [PATCH 2/5] dump: Fix g_array_unref(NULL) in dump-guest-memory, Markus Armbruster, 2023/10/30