All of lore.kernel.org
 help / color / mirror / Atom feed
From: Markus Armbruster <armbru@redhat.com>
To: "Wang, Lei" <lei4.wang@intel.com>
Cc: qemu-devel@nongnu.org, Gerd Hoffmann <kraxel@redhat.com>,
	Kevin Wolf <kwolf@redhat.com>
Subject: Re: [PATCH] qemu-config: extract same logic in *_add_opts() to fill_config_groups()
Date: Fri, 02 Sep 2022 09:57:41 +0200	[thread overview]
Message-ID: <87edwuxl6y.fsf@pond.sub.org> (raw)
In-Reply-To: <20220902142028.1469716-1-lei4.wang@intel.com> (Lei Wang's message of "Fri, 2 Sep 2022 22:20:28 +0800")

Cc: Gerd & Kevin, because they were involved with the code that gets
refactored here, and no good deed shall go unpunished.

"Wang, Lei" <lei4.wang@intel.com> writes:

> QEMU use qemu_add_opts() and qemu_add_drive_opts() to add config options
> when initialization. Extract the same logic in both functions to a
> seperate function fill_config_groups() to reduce code redundency.
>
> Signed-off-by: Wang, Lei <lei4.wang@intel.com>
> ---
>  util/qemu-config.c | 39 ++++++++++++++++++++-------------------
>  1 file changed, 20 insertions(+), 19 deletions(-)
>
> diff --git a/util/qemu-config.c b/util/qemu-config.c
> index 433488aa56..3a1c85223a 100644
> --- a/util/qemu-config.c
> +++ b/util/qemu-config.c
> @@ -282,36 +282,37 @@ QemuOptsList *qemu_find_opts_err(const char *group, Error **errp)
>      return find_list(vm_config_groups, group, errp);
>  }
>  
> -void qemu_add_drive_opts(QemuOptsList *list)
> +static int fill_config_groups(QemuOptsList *groups[], int entries,
> +                              QemuOptsList *list)
>  {
> -    int entries, i;
> +    int i;
>  
> -    entries = ARRAY_SIZE(drive_config_groups);
>      entries--; /* keep list NULL terminated */
>      for (i = 0; i < entries; i++) {
> -        if (drive_config_groups[i] == NULL) {
> -            drive_config_groups[i] = list;
> -            return;
> +        if (groups[i] == NULL) {
> +            groups[i] = list;
> +            return 0;
>          }
>      }
> -    fprintf(stderr, "ran out of space in drive_config_groups");
> -    abort();
> +    return -1;
>  }
>  
> -void qemu_add_opts(QemuOptsList *list)
> +void qemu_add_drive_opts(QemuOptsList *list)
>  {
> -    int entries, i;
> +    if (fill_config_groups(drive_config_groups, ARRAY_SIZE(drive_config_groups),
> +                           list) < 0) {
> +        fprintf(stderr, "ran out of space in drive_config_groups");
> +        abort();
> +    }
> +}
>  
> -    entries = ARRAY_SIZE(vm_config_groups);
> -    entries--; /* keep list NULL terminated */
> -    for (i = 0; i < entries; i++) {
> -        if (vm_config_groups[i] == NULL) {
> -            vm_config_groups[i] = list;
> -            return;
> -        }
> +void qemu_add_opts(QemuOptsList *list)
> +{
> +    if (fill_config_groups(vm_config_groups, ARRAY_SIZE(vm_config_groups),
> +                           list) < 0) {
> +        fprintf(stderr, "ran out of space in vm_config_groups");
> +        abort();
>      }
> -    fprintf(stderr, "ran out of space in vm_config_groups");
> -    abort();
>  }
>  
>  /* Returns number of config groups on success, -errno on error */



  reply	other threads:[~2022-09-02  8:23 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-09-02 14:20 [PATCH] qemu-config: extract same logic in *_add_opts() to fill_config_groups() Wang, Lei
2022-09-02  7:57 ` Markus Armbruster [this message]
2022-10-17  2:15   ` Wang, Lei

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87edwuxl6y.fsf@pond.sub.org \
    --to=armbru@redhat.com \
    --cc=kraxel@redhat.com \
    --cc=kwolf@redhat.com \
    --cc=lei4.wang@intel.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.