From: "Wang, Lei" <lei4.wang@intel.com>
To: qemu-devel@nongnu.org
Cc: Gerd Hoffmann <kraxel@redhat.com>, Kevin Wolf <kwolf@redhat.com>,
Markus Armbruster <armbru@redhat.com>
Subject: Re: [PATCH] qemu-config: extract same logic in *_add_opts() to fill_config_groups()
Date: Mon, 17 Oct 2022 10:15:10 +0800 [thread overview]
Message-ID: <0294749d-629f-6ab5-64a4-026a4c5ea013@intel.com> (raw)
In-Reply-To: <87edwuxl6y.fsf@pond.sub.org>
Kindly ping for any comments.
BR,
Lei
On 9/2/2022 3:57 PM, Markus Armbruster wrote:
> 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 */
>
prev parent reply other threads:[~2022-10-17 2:17 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
2022-10-17 2:15 ` Wang, Lei [this message]
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=0294749d-629f-6ab5-64a4-026a4c5ea013@intel.com \
--to=lei4.wang@intel.com \
--cc=armbru@redhat.com \
--cc=kraxel@redhat.com \
--cc=kwolf@redhat.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).