From: Zhenyu Ye <yezhenyu2@huawei.com>
To: Eric Blake <eblake@redhat.com>
Cc: dgilbert@redhat.com, xiexiangyou@huawei.com,
qemu-devel@nongnu.org, jiangyiwen <jiangyiwen@huawei.com>,
stefanha@redhat.com, pbonzini@redhat.com
Subject: Re: [RFC PATCH] iothread: add set_iothread_poll_* commands
Date: Wed, 23 Oct 2019 10:28:37 +0800 [thread overview]
Message-ID: <5DAFBAD5.9040409@huawei.com> (raw)
In-Reply-To: <95fde68e-9730-ce22-b59d-c5e20f86d0c1@redhat.com>
On 2019/10/23 4:40, Eric Blake wrote:
> On 10/22/19 3:12 AM, yezhenyu (A) wrote:
>> Since qemu2.9, QEMU added three AioContext poll parameters to struct
>> IOThread: poll_max_ns, poll_grow and poll_shrink. These properties are
>> used to control iothread polling time.
>>
>> However, there isn't properly hmp commands to adjust them when the VM is
>> alive. It's useful to adjust them online when observing the impact of
>> different property value on performance.
>>
>> This patch add three hmp commands to adjust iothread poll-* properties
>> for special iothread:
>>
>> set_iothread_poll_max_ns: set the maximum polling time in ns;
>> set_iothread_poll_grow: set how many ns will be added to polling time;
>> set_iothread_poll_shrink: set how many ns will be removed from polling
>> time.
>>
>> Signed-off-by: Zhenyu Ye <yezhenyu2@huawei.com>
>> ---
>> hmp-commands.hx | 42 ++++++++++++++++++++
>> hmp.c | 30 +++++++++++++++
>> hmp.h | 3 ++
>> include/sysemu/iothread.h | 6 +++
>> iothread.c | 80 +++++++++++++++++++++++++++++++++++++++
>> qapi/misc.json | 23 +++++++++++
>> 6 files changed, 184 insertions(+)
>
> Looking at just the QMP...
>
Thanks for your review. I will split this patch to QMP and HMP.
>> +++ b/qapi/misc.json
>> @@ -675,6 +675,29 @@
>> { 'command': 'query-iothreads', 'returns': ['IOThreadInfo'],
>> 'allow-preconfig': true }
>>
>> +##
>> +# @set-iothread-poll-param:
>> +#
>> +# Set poll-* properties for a special iothread.
>> +# The poll-* name can be poll_max_ns/poll_grow/poll_shrink.
>
> This should be an enum.
I will change the name argument to ENUM, such as,
{ 'enum': 'IothreadPollProperty',
'data': [ 'max-ns', 'grow', 'shrink' ] }
>> +#
>> +# Notes: can not set the QEMU main loop thread, which is not declared
>> +# using the -object iothread command-line option. The poll_ns property can not
>> +# be set manually, which is auto-adjust.
>
> You failed to document the parameters (iothread_id, name, value).
>
I will add these documents.
>> +#
>> +# Example:
>> +#
>> +# -> { "execute": "set-iothread-poll-param",
>> +# "arguments": { "iothread_id": "1",
>> +# "name": "poll_max_ns",
>> +# "value": 1000 } }
>> +# <- { "return": {} }
>> +#
>> +# Since 3.0
>
> 4.2 is the earliest this can make it in.
>
OK, I will change this to 4.2.
>> +##
>> +{ 'command': 'set-iothread-poll-param',
>> + 'data': {'iothread_id': 'str', 'name': 'str', 'value': 'int'} }
>
> Our naming convention prefers 'iothread-id'.
>
ok, I will correct it, such as,
{ 'command': 'set-iothread-poll-param',
'data': {'iothread-id': 'str', 'name': 'IothreadPollProperty', 'value': 'int'} }
next prev parent reply other threads:[~2019-10-23 2:29 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-10-22 8:12 [RFC PATCH] iothread: add set_iothread_poll_* commands yezhenyu (A)
2019-10-22 8:51 ` Dr. David Alan Gilbert
2019-10-22 14:18 ` Zhenyu Ye
2019-10-22 14:27 ` Dr. David Alan Gilbert
2019-10-22 20:40 ` Eric Blake
2019-10-23 2:28 ` Zhenyu Ye [this message]
2019-10-23 2:40 ` Eric Blake
2019-10-23 15:19 ` Stefan Hajnoczi
2019-10-24 13:53 ` Zhenyu Ye
2019-10-24 13:56 ` Dr. David Alan Gilbert
2019-10-24 14:34 ` Zhenyu Ye
2019-10-24 14:38 ` Dr. David Alan Gilbert
2019-10-25 2:07 ` Zhenyu Ye
2019-10-25 11:51 ` Stefan Hajnoczi
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=5DAFBAD5.9040409@huawei.com \
--to=yezhenyu2@huawei.com \
--cc=dgilbert@redhat.com \
--cc=eblake@redhat.com \
--cc=jiangyiwen@huawei.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.com \
--cc=xiexiangyou@huawei.com \
/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).