* [PATCH v4 0/2] qga: add command 'guest-get-cpustats'
@ 2022-07-07 0:56 zhenwei pi
2022-07-07 0:56 ` [PATCH v4 1/2] qapi: Avoid generating C identifier 'linux' zhenwei pi
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: zhenwei pi @ 2022-07-07 0:56 UTC (permalink / raw)
To: michael.roth, kkostiuk, marcandre.lureau, armbru; +Cc: qemu-devel, zhenwei pi
v3 -> v4:
- Separate qapi script change from qga.
v2 -> v3:
- Rename 'GuestOsType' to 'GuestCpuStatsType'.
- Add 'linux' into polluted_words, rename 'linuxos' to 'linux'. Remove
'windows' from 'GuestCpuStatsType', because currently we don't use it.
v1 -> v2:
- Konstantin & Marc-André pointed out that the structure 'GuestCpuStats'
is too *linux style*, so re-define it to 'GuestLinuxCpuStats', and use
an union type of 'GuestCpuStats'.
- Modify comment info from 'man proc', also add linux version infomation.
- Test sscanf return value by '(i == EOF)' (To Marc-André: name is declared
as 'char name[64];', so we can't test '!name').
- Suggested by Marc-André, use 'int clk_tck = sysconf(_SC_CLK_TCK);'
instead of hard code.
v1:
- Implement guest agent command 'guest-get-cpustats'
Zhenwei Pi (2):
qapi: Avoid generating C identifier 'linux'
qga: add command 'guest-get-cpustats'
qga/commands-posix.c | 89 ++++++++++++++++++++++++++++++++++++++++++
qga/commands-win32.c | 6 +++
qga/qapi-schema.json | 81 ++++++++++++++++++++++++++++++++++++++
scripts/qapi/common.py | 2 +-
4 files changed, 177 insertions(+), 1 deletion(-)
--
2.20.1
^ permalink raw reply [flat|nested] 7+ messages in thread* [PATCH v4 1/2] qapi: Avoid generating C identifier 'linux' 2022-07-07 0:56 [PATCH v4 0/2] qga: add command 'guest-get-cpustats' zhenwei pi @ 2022-07-07 0:56 ` zhenwei pi 2022-07-07 6:26 ` Markus Armbruster 2022-07-07 0:56 ` [PATCH v4 2/2] qga: add command 'guest-get-cpustats' zhenwei pi 2022-07-12 9:30 ` [PATCH v4 0/2] " Konstantin Kostiuk 2 siblings, 1 reply; 7+ messages in thread From: zhenwei pi @ 2022-07-07 0:56 UTC (permalink / raw) To: michael.roth, kkostiuk, marcandre.lureau, armbru; +Cc: qemu-devel, zhenwei pi 'linux' is not usable as identifier, because C compilers targeting Linux predefine it as a macro expanding to 1. Add it to @polluted_words. 'unix' is already there. Suggested-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: zhenwei pi <pizhenwei@bytedance.com> --- scripts/qapi/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/qapi/common.py b/scripts/qapi/common.py index 489273574a..737b059e62 100644 --- a/scripts/qapi/common.py +++ b/scripts/qapi/common.py @@ -114,7 +114,7 @@ def c_name(name: str, protect: bool = True) -> str: 'and', 'and_eq', 'bitand', 'bitor', 'compl', 'not', 'not_eq', 'or', 'or_eq', 'xor', 'xor_eq']) # namespace pollution: - polluted_words = set(['unix', 'errno', 'mips', 'sparc', 'i386']) + polluted_words = set(['unix', 'errno', 'mips', 'sparc', 'i386', 'linux']) name = re.sub(r'[^A-Za-z0-9_]', '_', name) if protect and (name in (c89_words | c99_words | c11_words | gcc_words | cpp_words | polluted_words) -- 2.20.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH v4 1/2] qapi: Avoid generating C identifier 'linux' 2022-07-07 0:56 ` [PATCH v4 1/2] qapi: Avoid generating C identifier 'linux' zhenwei pi @ 2022-07-07 6:26 ` Markus Armbruster 2022-07-07 6:28 ` zhenwei pi 0 siblings, 1 reply; 7+ messages in thread From: Markus Armbruster @ 2022-07-07 6:26 UTC (permalink / raw) To: zhenwei pi; +Cc: michael.roth, kkostiuk, marcandre.lureau, qemu-devel zhenwei pi <pizhenwei@bytedance.com> writes: > 'linux' is not usable as identifier, because C compilers targeting > Linux predefine it as a macro expanding to 1. Add it to > @polluted_words. 'unix' is already there. > > Suggested-by: Markus Armbruster <armbru@redhat.com> > Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> > Signed-off-by: zhenwei pi <pizhenwei@bytedance.com> > --- > scripts/qapi/common.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/scripts/qapi/common.py b/scripts/qapi/common.py > index 489273574a..737b059e62 100644 > --- a/scripts/qapi/common.py > +++ b/scripts/qapi/common.py > @@ -114,7 +114,7 @@ def c_name(name: str, protect: bool = True) -> str: > 'and', 'and_eq', 'bitand', 'bitor', 'compl', 'not', > 'not_eq', 'or', 'or_eq', 'xor', 'xor_eq']) > # namespace pollution: > - polluted_words = set(['unix', 'errno', 'mips', 'sparc', 'i386']) > + polluted_words = set(['unix', 'errno', 'mips', 'sparc', 'i386', 'linux']) If this list gets any longer, we better keep it in alphabetical order. > name = re.sub(r'[^A-Za-z0-9_]', '_', name) > if protect and (name in (c89_words | c99_words | c11_words | gcc_words > | cpp_words | polluted_words) Reviewed-by: Markus Armbruster <armbru@redhat.com> ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Re: [PATCH v4 1/2] qapi: Avoid generating C identifier 'linux' 2022-07-07 6:26 ` Markus Armbruster @ 2022-07-07 6:28 ` zhenwei pi 0 siblings, 0 replies; 7+ messages in thread From: zhenwei pi @ 2022-07-07 6:28 UTC (permalink / raw) To: Markus Armbruster; +Cc: michael.roth, kkostiuk, marcandre.lureau, qemu-devel On 7/7/22 14:26, Markus Armbruster wrote: > zhenwei pi <pizhenwei@bytedance.com> writes: > >> 'linux' is not usable as identifier, because C compilers targeting >> Linux predefine it as a macro expanding to 1. Add it to >> @polluted_words. 'unix' is already there. >> >> Suggested-by: Markus Armbruster <armbru@redhat.com> >> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> >> Signed-off-by: zhenwei pi <pizhenwei@bytedance.com> >> --- >> scripts/qapi/common.py | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/scripts/qapi/common.py b/scripts/qapi/common.py >> index 489273574a..737b059e62 100644 >> --- a/scripts/qapi/common.py >> +++ b/scripts/qapi/common.py >> @@ -114,7 +114,7 @@ def c_name(name: str, protect: bool = True) -> str: >> 'and', 'and_eq', 'bitand', 'bitor', 'compl', 'not', >> 'not_eq', 'or', 'or_eq', 'xor', 'xor_eq']) >> # namespace pollution: >> - polluted_words = set(['unix', 'errno', 'mips', 'sparc', 'i386']) >> + polluted_words = set(['unix', 'errno', 'mips', 'sparc', 'i386', 'linux']) > > If this list gets any longer, we better keep it in alphabetical order. > OK! >> name = re.sub(r'[^A-Za-z0-9_]', '_', name) >> if protect and (name in (c89_words | c99_words | c11_words | gcc_words >> | cpp_words | polluted_words) > > Reviewed-by: Markus Armbruster <armbru@redhat.com> > -- zhenwei pi ^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH v4 2/2] qga: add command 'guest-get-cpustats' 2022-07-07 0:56 [PATCH v4 0/2] qga: add command 'guest-get-cpustats' zhenwei pi 2022-07-07 0:56 ` [PATCH v4 1/2] qapi: Avoid generating C identifier 'linux' zhenwei pi @ 2022-07-07 0:56 ` zhenwei pi 2022-07-07 8:00 ` Konstantin Kostiuk 2022-07-12 9:30 ` [PATCH v4 0/2] " Konstantin Kostiuk 2 siblings, 1 reply; 7+ messages in thread From: zhenwei pi @ 2022-07-07 0:56 UTC (permalink / raw) To: michael.roth, kkostiuk, marcandre.lureau, armbru; +Cc: qemu-devel, zhenwei pi A vCPU thread always reaches 100% utilization when: - guest uses idle=poll - disable HLT vm-exit - enable MWAIT Add new guest agent command 'guest-get-cpustats' to get guest CPU statistics, we can know the guest workload and how busy the CPU is. Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: zhenwei pi <pizhenwei@bytedance.com> --- qga/commands-posix.c | 89 ++++++++++++++++++++++++++++++++++++++++++++ qga/commands-win32.c | 6 +++ qga/qapi-schema.json | 81 ++++++++++++++++++++++++++++++++++++++++ 3 files changed, 176 insertions(+) diff --git a/qga/commands-posix.c b/qga/commands-posix.c index 0469dc409d..f18530d85f 100644 --- a/qga/commands-posix.c +++ b/qga/commands-posix.c @@ -2893,6 +2893,90 @@ GuestDiskStatsInfoList *qmp_guest_get_diskstats(Error **errp) return guest_get_diskstats(errp); } +GuestCpuStatsList *qmp_guest_get_cpustats(Error **errp) +{ + GuestCpuStatsList *head = NULL, **tail = &head; + const char *cpustats = "/proc/stat"; + int clk_tck = sysconf(_SC_CLK_TCK); + FILE *fp; + size_t n; + char *line = NULL; + + fp = fopen(cpustats, "r"); + if (fp == NULL) { + error_setg_errno(errp, errno, "open(\"%s\")", cpustats); + return NULL; + } + + while (getline(&line, &n, fp) != -1) { + GuestCpuStats *cpustat = NULL; + GuestLinuxCpuStats *linuxcpustat; + int i; + unsigned long user, system, idle, iowait, irq, softirq, steal, guest; + unsigned long nice, guest_nice; + char name[64]; + + i = sscanf(line, "%s %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu", + name, &user, &nice, &system, &idle, &iowait, &irq, &softirq, + &steal, &guest, &guest_nice); + + /* drop "cpu 1 2 3 ...", get "cpuX 1 2 3 ..." only */ + if ((i == EOF) || strncmp(name, "cpu", 3) || (name[3] == '\0')) { + continue; + } + + if (i < 5) { + slog("Parsing cpu stat from %s failed, see \"man proc\"", cpustats); + break; + } + + cpustat = g_new0(GuestCpuStats, 1); + cpustat->type = GUEST_CPU_STATS_TYPE_LINUX; + + linuxcpustat = &cpustat->u.q_linux; + linuxcpustat->cpu = atoi(&name[3]); + linuxcpustat->user = user * 1000 / clk_tck; + linuxcpustat->nice = nice * 1000 / clk_tck; + linuxcpustat->system = system * 1000 / clk_tck; + linuxcpustat->idle = idle * 1000 / clk_tck; + + if (i > 5) { + linuxcpustat->has_iowait = true; + linuxcpustat->iowait = iowait * 1000 / clk_tck; + } + + if (i > 6) { + linuxcpustat->has_irq = true; + linuxcpustat->irq = irq * 1000 / clk_tck; + linuxcpustat->has_softirq = true; + linuxcpustat->softirq = softirq * 1000 / clk_tck; + } + + if (i > 8) { + linuxcpustat->has_steal = true; + linuxcpustat->steal = steal * 1000 / clk_tck; + } + + if (i > 9) { + linuxcpustat->has_guest = true; + linuxcpustat->guest = guest * 1000 / clk_tck; + } + + if (i > 10) { + linuxcpustat->has_guest = true; + linuxcpustat->guest = guest * 1000 / clk_tck; + linuxcpustat->has_guestnice = true; + linuxcpustat->guestnice = guest_nice * 1000 / clk_tck; + } + + QAPI_LIST_APPEND(tail, cpustat); + } + + free(line); + fclose(fp); + return head; +} + #else /* defined(__linux__) */ void qmp_guest_suspend_disk(Error **errp) @@ -3247,6 +3331,11 @@ GuestDiskStatsInfoList *qmp_guest_get_diskstats(Error **errp) return NULL; } +GuestCpuStatsList *qmp_guest_get_cpustats(Error **errp) +{ + error_setg(errp, QERR_UNSUPPORTED); + return NULL; +} #endif /* CONFIG_FSFREEZE */ diff --git a/qga/commands-win32.c b/qga/commands-win32.c index 36f94c0f9c..7ed7664715 100644 --- a/qga/commands-win32.c +++ b/qga/commands-win32.c @@ -2543,3 +2543,9 @@ GuestDiskStatsInfoList *qmp_guest_get_diskstats(Error **errp) error_setg(errp, QERR_UNSUPPORTED); return NULL; } + +GuestCpuStatsList *qmp_guest_get_cpustats(Error **errp) +{ + error_setg(errp, QERR_UNSUPPORTED); + return NULL; +} diff --git a/qga/qapi-schema.json b/qga/qapi-schema.json index 9fa20e791b..869399ea1a 100644 --- a/qga/qapi-schema.json +++ b/qga/qapi-schema.json @@ -1576,3 +1576,84 @@ { 'command': 'guest-get-diskstats', 'returns': ['GuestDiskStatsInfo'] } + +## +# @GuestCpuStatsType: +# +# An enumeration of OS type +# +# Since: 7.1 +## +{ 'enum': 'GuestCpuStatsType', + 'data': [ 'linux' ] } + + +## +# @GuestLinuxCpuStats: +# +# CPU statistics of Linux +# +# @cpu: CPU index in guest OS +# +# @user: Time spent in user mode +# +# @nice: Time spent in user mode with low priority (nice) +# +# @system: Time spent in system mode +# +# @idle: Time spent in the idle task +# +# @iowait: Time waiting for I/O to complete (since Linux 2.5.41) +# +# @irq: Time servicing interrupts (since Linux 2.6.0-test4) +# +# @softirq: Time servicing softirqs (since Linux 2.6.0-test4) +# +# @steal: Stolen time by host (since Linux 2.6.11) +# +# @guest: ime spent running a virtual CPU for guest operating systems under +# the control of the Linux kernel (since Linux 2.6.24) +# +# @guestnice: Time spent running a niced guest (since Linux 2.6.33) +# +# Since: 7.1 +## +{ 'struct': 'GuestLinuxCpuStats', + 'data': {'cpu': 'int', + 'user': 'uint64', + 'nice': 'uint64', + 'system': 'uint64', + 'idle': 'uint64', + '*iowait': 'uint64', + '*irq': 'uint64', + '*softirq': 'uint64', + '*steal': 'uint64', + '*guest': 'uint64', + '*guestnice': 'uint64' + } } + +## +# @GuestCpuStats: +# +# Get statistics of each CPU in millisecond. +# +# - @linux: Linux style CPU statistics +# +# Since: 7.1 +## +{ 'union': 'GuestCpuStats', + 'base': { 'type': 'GuestCpuStatsType' }, + 'discriminator': 'type', + 'data': { 'linux': 'GuestLinuxCpuStats' } } + +## +# @guest-get-cpustats: +# +# Retrieve information about CPU stats. +# Returns: List of CPU stats of guest. +# +# Since: 7.1 +## +{ 'command': 'guest-get-cpustats', + 'returns': ['GuestCpuStats'] +} -- 2.20.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH v4 2/2] qga: add command 'guest-get-cpustats' 2022-07-07 0:56 ` [PATCH v4 2/2] qga: add command 'guest-get-cpustats' zhenwei pi @ 2022-07-07 8:00 ` Konstantin Kostiuk 0 siblings, 0 replies; 7+ messages in thread From: Konstantin Kostiuk @ 2022-07-07 8:00 UTC (permalink / raw) To: zhenwei pi; +Cc: Michael Roth, Marc-André Lureau, Markus Armbruster, QEMU [-- Attachment #1: Type: text/plain, Size: 7139 bytes --] Reviewed-by: Konstantin Kostiuk <kkostiuk@redhat.com> On Thu, Jul 7, 2022 at 4:01 AM zhenwei pi <pizhenwei@bytedance.com> wrote: > A vCPU thread always reaches 100% utilization when: > - guest uses idle=poll > - disable HLT vm-exit > - enable MWAIT > > Add new guest agent command 'guest-get-cpustats' to get guest CPU > statistics, we can know the guest workload and how busy the CPU is. > > Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> > Signed-off-by: zhenwei pi <pizhenwei@bytedance.com> > --- > qga/commands-posix.c | 89 ++++++++++++++++++++++++++++++++++++++++++++ > qga/commands-win32.c | 6 +++ > qga/qapi-schema.json | 81 ++++++++++++++++++++++++++++++++++++++++ > 3 files changed, 176 insertions(+) > > diff --git a/qga/commands-posix.c b/qga/commands-posix.c > index 0469dc409d..f18530d85f 100644 > --- a/qga/commands-posix.c > +++ b/qga/commands-posix.c > @@ -2893,6 +2893,90 @@ GuestDiskStatsInfoList > *qmp_guest_get_diskstats(Error **errp) > return guest_get_diskstats(errp); > } > > +GuestCpuStatsList *qmp_guest_get_cpustats(Error **errp) > +{ > + GuestCpuStatsList *head = NULL, **tail = &head; > + const char *cpustats = "/proc/stat"; > + int clk_tck = sysconf(_SC_CLK_TCK); > + FILE *fp; > + size_t n; > + char *line = NULL; > + > + fp = fopen(cpustats, "r"); > + if (fp == NULL) { > + error_setg_errno(errp, errno, "open(\"%s\")", cpustats); > + return NULL; > + } > + > + while (getline(&line, &n, fp) != -1) { > + GuestCpuStats *cpustat = NULL; > + GuestLinuxCpuStats *linuxcpustat; > + int i; > + unsigned long user, system, idle, iowait, irq, softirq, steal, > guest; > + unsigned long nice, guest_nice; > + char name[64]; > + > + i = sscanf(line, "%s %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu", > + name, &user, &nice, &system, &idle, &iowait, &irq, > &softirq, > + &steal, &guest, &guest_nice); > + > + /* drop "cpu 1 2 3 ...", get "cpuX 1 2 3 ..." only */ > + if ((i == EOF) || strncmp(name, "cpu", 3) || (name[3] == '\0')) { > + continue; > + } > + > + if (i < 5) { > + slog("Parsing cpu stat from %s failed, see \"man proc\"", > cpustats); > + break; > + } > + > + cpustat = g_new0(GuestCpuStats, 1); > + cpustat->type = GUEST_CPU_STATS_TYPE_LINUX; > + > + linuxcpustat = &cpustat->u.q_linux; > + linuxcpustat->cpu = atoi(&name[3]); > + linuxcpustat->user = user * 1000 / clk_tck; > + linuxcpustat->nice = nice * 1000 / clk_tck; > + linuxcpustat->system = system * 1000 / clk_tck; > + linuxcpustat->idle = idle * 1000 / clk_tck; > + > + if (i > 5) { > + linuxcpustat->has_iowait = true; > + linuxcpustat->iowait = iowait * 1000 / clk_tck; > + } > + > + if (i > 6) { > + linuxcpustat->has_irq = true; > + linuxcpustat->irq = irq * 1000 / clk_tck; > + linuxcpustat->has_softirq = true; > + linuxcpustat->softirq = softirq * 1000 / clk_tck; > + } > + > + if (i > 8) { > + linuxcpustat->has_steal = true; > + linuxcpustat->steal = steal * 1000 / clk_tck; > + } > + > + if (i > 9) { > + linuxcpustat->has_guest = true; > + linuxcpustat->guest = guest * 1000 / clk_tck; > + } > + > + if (i > 10) { > + linuxcpustat->has_guest = true; > + linuxcpustat->guest = guest * 1000 / clk_tck; > + linuxcpustat->has_guestnice = true; > + linuxcpustat->guestnice = guest_nice * 1000 / clk_tck; > + } > + > + QAPI_LIST_APPEND(tail, cpustat); > + } > + > + free(line); > + fclose(fp); > + return head; > +} > + > #else /* defined(__linux__) */ > > void qmp_guest_suspend_disk(Error **errp) > @@ -3247,6 +3331,11 @@ GuestDiskStatsInfoList > *qmp_guest_get_diskstats(Error **errp) > return NULL; > } > > +GuestCpuStatsList *qmp_guest_get_cpustats(Error **errp) > +{ > + error_setg(errp, QERR_UNSUPPORTED); > + return NULL; > +} > > #endif /* CONFIG_FSFREEZE */ > > diff --git a/qga/commands-win32.c b/qga/commands-win32.c > index 36f94c0f9c..7ed7664715 100644 > --- a/qga/commands-win32.c > +++ b/qga/commands-win32.c > @@ -2543,3 +2543,9 @@ GuestDiskStatsInfoList > *qmp_guest_get_diskstats(Error **errp) > error_setg(errp, QERR_UNSUPPORTED); > return NULL; > } > + > +GuestCpuStatsList *qmp_guest_get_cpustats(Error **errp) > +{ > + error_setg(errp, QERR_UNSUPPORTED); > + return NULL; > +} > diff --git a/qga/qapi-schema.json b/qga/qapi-schema.json > index 9fa20e791b..869399ea1a 100644 > --- a/qga/qapi-schema.json > +++ b/qga/qapi-schema.json > @@ -1576,3 +1576,84 @@ > { 'command': 'guest-get-diskstats', > 'returns': ['GuestDiskStatsInfo'] > } > + > +## > +# @GuestCpuStatsType: > +# > +# An enumeration of OS type > +# > +# Since: 7.1 > +## > +{ 'enum': 'GuestCpuStatsType', > + 'data': [ 'linux' ] } > + > + > +## > +# @GuestLinuxCpuStats: > +# > +# CPU statistics of Linux > +# > +# @cpu: CPU index in guest OS > +# > +# @user: Time spent in user mode > +# > +# @nice: Time spent in user mode with low priority (nice) > +# > +# @system: Time spent in system mode > +# > +# @idle: Time spent in the idle task > +# > +# @iowait: Time waiting for I/O to complete (since Linux 2.5.41) > +# > +# @irq: Time servicing interrupts (since Linux 2.6.0-test4) > +# > +# @softirq: Time servicing softirqs (since Linux 2.6.0-test4) > +# > +# @steal: Stolen time by host (since Linux 2.6.11) > +# > +# @guest: ime spent running a virtual CPU for guest operating systems > under > +# the control of the Linux kernel (since Linux 2.6.24) > +# > +# @guestnice: Time spent running a niced guest (since Linux 2.6.33) > +# > +# Since: 7.1 > +## > +{ 'struct': 'GuestLinuxCpuStats', > + 'data': {'cpu': 'int', > + 'user': 'uint64', > + 'nice': 'uint64', > + 'system': 'uint64', > + 'idle': 'uint64', > + '*iowait': 'uint64', > + '*irq': 'uint64', > + '*softirq': 'uint64', > + '*steal': 'uint64', > + '*guest': 'uint64', > + '*guestnice': 'uint64' > + } } > + > +## > +# @GuestCpuStats: > +# > +# Get statistics of each CPU in millisecond. > +# > +# - @linux: Linux style CPU statistics > +# > +# Since: 7.1 > +## > +{ 'union': 'GuestCpuStats', > + 'base': { 'type': 'GuestCpuStatsType' }, > + 'discriminator': 'type', > + 'data': { 'linux': 'GuestLinuxCpuStats' } } > + > +## > +# @guest-get-cpustats: > +# > +# Retrieve information about CPU stats. > +# Returns: List of CPU stats of guest. > +# > +# Since: 7.1 > +## > +{ 'command': 'guest-get-cpustats', > + 'returns': ['GuestCpuStats'] > +} > -- > 2.20.1 > > [-- Attachment #2: Type: text/html, Size: 9113 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v4 0/2] qga: add command 'guest-get-cpustats' 2022-07-07 0:56 [PATCH v4 0/2] qga: add command 'guest-get-cpustats' zhenwei pi 2022-07-07 0:56 ` [PATCH v4 1/2] qapi: Avoid generating C identifier 'linux' zhenwei pi 2022-07-07 0:56 ` [PATCH v4 2/2] qga: add command 'guest-get-cpustats' zhenwei pi @ 2022-07-12 9:30 ` Konstantin Kostiuk 2 siblings, 0 replies; 7+ messages in thread From: Konstantin Kostiuk @ 2022-07-12 9:30 UTC (permalink / raw) To: zhenwei pi; +Cc: Michael Roth, Marc-André Lureau, Markus Armbruster, QEMU [-- Attachment #1: Type: text/plain, Size: 1375 bytes --] Queued, thanks. On Thu, Jul 7, 2022 at 4:01 AM zhenwei pi <pizhenwei@bytedance.com> wrote: > v3 -> v4: > - Separate qapi script change from qga. > > v2 -> v3: > - Rename 'GuestOsType' to 'GuestCpuStatsType'. > - Add 'linux' into polluted_words, rename 'linuxos' to 'linux'. Remove > 'windows' from 'GuestCpuStatsType', because currently we don't use it. > > v1 -> v2: > - Konstantin & Marc-André pointed out that the structure 'GuestCpuStats' > is too *linux style*, so re-define it to 'GuestLinuxCpuStats', and use > an union type of 'GuestCpuStats'. > > - Modify comment info from 'man proc', also add linux version infomation. > > - Test sscanf return value by '(i == EOF)' (To Marc-André: name is declared > as 'char name[64];', so we can't test '!name'). > > - Suggested by Marc-André, use 'int clk_tck = sysconf(_SC_CLK_TCK);' > instead of hard code. > > v1: > - Implement guest agent command 'guest-get-cpustats' > > Zhenwei Pi (2): > qapi: Avoid generating C identifier 'linux' > qga: add command 'guest-get-cpustats' > > qga/commands-posix.c | 89 ++++++++++++++++++++++++++++++++++++++++++ > qga/commands-win32.c | 6 +++ > qga/qapi-schema.json | 81 ++++++++++++++++++++++++++++++++++++++ > scripts/qapi/common.py | 2 +- > 4 files changed, 177 insertions(+), 1 deletion(-) > > -- > 2.20.1 > > [-- Attachment #2: Type: text/html, Size: 2053 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2022-07-12 9:33 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-07-07 0:56 [PATCH v4 0/2] qga: add command 'guest-get-cpustats' zhenwei pi 2022-07-07 0:56 ` [PATCH v4 1/2] qapi: Avoid generating C identifier 'linux' zhenwei pi 2022-07-07 6:26 ` Markus Armbruster 2022-07-07 6:28 ` zhenwei pi 2022-07-07 0:56 ` [PATCH v4 2/2] qga: add command 'guest-get-cpustats' zhenwei pi 2022-07-07 8:00 ` Konstantin Kostiuk 2022-07-12 9:30 ` [PATCH v4 0/2] " Konstantin Kostiuk
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).