mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-10-30 09:53:10 +00:00
util, resctrl: using 64bit interface instead of 32bit for counters
The underlying resctrl monitoring is actually using 64 bit counters, not the 32bit one. Correct this by using 64bit data type for reading hardware value. To keep the interface consistent, the result of CPU last level cache that occupied by vcpu processors of specific restrl monitor group is still reported with a truncated 32bit data type. because, in silicon world, CPU cache size will never exceed 4GB. Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Signed-off-by: Wang Huaqiang <huaqiang.wang@intel.com>
This commit is contained in:
parent
76592c596a
commit
5d876f25bd
@ -2027,6 +2027,7 @@ virFileReadValueInt;
|
|||||||
virFileReadValueScaledInt;
|
virFileReadValueScaledInt;
|
||||||
virFileReadValueString;
|
virFileReadValueString;
|
||||||
virFileReadValueUint;
|
virFileReadValueUint;
|
||||||
|
virFileReadValueUllong;
|
||||||
virFileRelLinkPointsTo;
|
virFileRelLinkPointsTo;
|
||||||
virFileRemove;
|
virFileRemove;
|
||||||
virFileRemoveLastComponent;
|
virFileRemoveLastComponent;
|
||||||
|
@ -20767,8 +20767,19 @@ qemuDomainGetStatsCpuCache(virQEMUDriverPtr driver,
|
|||||||
"cpu.cache.monitor.%zu.bank.%zu.id", i, j) < 0)
|
"cpu.cache.monitor.%zu.bank.%zu.id", i, j) < 0)
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
|
|
||||||
if (virTypedParamListAddUInt(params, resdata[i]->stats[j]->vals[0],
|
/* 'resdata[i]->stats[j]->vals[0]' keeps the value of how many last
|
||||||
"cpu.cache.monitor.%zu.bank.%zu.bytes", i, j) < 0)
|
* level cache in bank j currently occupied by the vcpus listed in
|
||||||
|
* resource monitor i, in bytes. This value is reported through a
|
||||||
|
* 64 bit hardware counter, so it is better to be arranged with
|
||||||
|
* data type in 64 bit width, but considering the fact that
|
||||||
|
* physical cache on a CPU could never be designed to be bigger
|
||||||
|
* than 4G bytes in size, to keep the 'domstats' interface
|
||||||
|
* historically consistent, it is safe to report the value with a
|
||||||
|
* truncated 'UInt' data type here. */
|
||||||
|
if (virTypedParamListAddUInt(params,
|
||||||
|
(unsigned int)resdata[i]->stats[j]->vals[0],
|
||||||
|
"cpu.cache.monitor.%zu.bank.%zu.bytes",
|
||||||
|
i, j) < 0)
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4123,6 +4123,46 @@ virFileReadValueUint(unsigned int *value, const char *format, ...)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* virFileReadValueUllong:
|
||||||
|
* @value: pointer to unsigned long long to be filled in with the value
|
||||||
|
* @format, ...: file to read from
|
||||||
|
*
|
||||||
|
* Read unsigned int from @format and put it into @value.
|
||||||
|
*
|
||||||
|
* Return -2 for non-existing file, -1 on other errors and 0 if everything went
|
||||||
|
* fine.
|
||||||
|
*/
|
||||||
|
int
|
||||||
|
virFileReadValueUllong(unsigned long long *value, const char *format, ...)
|
||||||
|
{
|
||||||
|
g_autofree char *str = NULL;
|
||||||
|
g_autofree char *path = NULL;
|
||||||
|
va_list ap;
|
||||||
|
|
||||||
|
va_start(ap, format);
|
||||||
|
path = g_strdup_vprintf(format, ap);
|
||||||
|
va_end(ap);
|
||||||
|
|
||||||
|
if (!virFileExists(path))
|
||||||
|
return -2;
|
||||||
|
|
||||||
|
if (virFileReadAll(path, INT_BUFSIZE_BOUND(*value), &str) < 0)
|
||||||
|
return -1;
|
||||||
|
|
||||||
|
virStringTrimOptionalNewline(str);
|
||||||
|
|
||||||
|
if (virStrToLong_ullp(str, NULL, 10, value) < 0) {
|
||||||
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
||||||
|
_("Invalid unsigned long long value '%s' in file '%s'"),
|
||||||
|
str, path);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* virFileReadValueScaledInt:
|
* virFileReadValueScaledInt:
|
||||||
* @value: pointer to unsigned long long int to be filled in with the value
|
* @value: pointer to unsigned long long int to be filled in with the value
|
||||||
|
@ -338,6 +338,8 @@ int virFileReadValueInt(int *value, const char *format, ...)
|
|||||||
G_GNUC_PRINTF(2, 3);
|
G_GNUC_PRINTF(2, 3);
|
||||||
int virFileReadValueUint(unsigned int *value, const char *format, ...)
|
int virFileReadValueUint(unsigned int *value, const char *format, ...)
|
||||||
G_GNUC_PRINTF(2, 3);
|
G_GNUC_PRINTF(2, 3);
|
||||||
|
int virFileReadValueUllong(unsigned long long *value, const char *format, ...)
|
||||||
|
G_GNUC_PRINTF(2, 3);
|
||||||
int virFileReadValueBitmap(virBitmapPtr *value, const char *format, ...)
|
int virFileReadValueBitmap(virBitmapPtr *value, const char *format, ...)
|
||||||
G_GNUC_PRINTF(2, 3);
|
G_GNUC_PRINTF(2, 3);
|
||||||
int virFileReadValueScaledInt(unsigned long long *value, const char *format, ...)
|
int virFileReadValueScaledInt(unsigned long long *value, const char *format, ...)
|
||||||
|
@ -2678,7 +2678,7 @@ virResctrlMonitorGetStats(virResctrlMonitorPtr monitor,
|
|||||||
int rv = -1;
|
int rv = -1;
|
||||||
int ret = -1;
|
int ret = -1;
|
||||||
size_t i = 0;
|
size_t i = 0;
|
||||||
unsigned int val = 0;
|
unsigned long long val = 0;
|
||||||
DIR *dirp = NULL;
|
DIR *dirp = NULL;
|
||||||
char *datapath = NULL;
|
char *datapath = NULL;
|
||||||
char *filepath = NULL;
|
char *filepath = NULL;
|
||||||
@ -2734,7 +2734,7 @@ virResctrlMonitorGetStats(virResctrlMonitorPtr monitor,
|
|||||||
goto cleanup;
|
goto cleanup;
|
||||||
|
|
||||||
for (i = 0; resources[i]; i++) {
|
for (i = 0; resources[i]; i++) {
|
||||||
rv = virFileReadValueUint(&val, "%s/%s/%s", datapath,
|
rv = virFileReadValueUllong(&val, "%s/%s/%s", datapath,
|
||||||
ent->d_name, resources[i]);
|
ent->d_name, resources[i]);
|
||||||
if (rv == -2) {
|
if (rv == -2) {
|
||||||
virReportError(VIR_ERR_INTERNAL_ERROR,
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
||||||
|
@ -204,7 +204,7 @@ struct _virResctrlMonitorStats {
|
|||||||
char **features;
|
char **features;
|
||||||
/* @vals store the statistical record values and @val[0] is the value for
|
/* @vals store the statistical record values and @val[0] is the value for
|
||||||
* @features[0], @val[1] for@features[1] ... respectively */
|
* @features[0], @val[1] for@features[1] ... respectively */
|
||||||
unsigned int *vals;
|
unsigned long long *vals;
|
||||||
/* The length of @vals array */
|
/* The length of @vals array */
|
||||||
size_t nvals;
|
size_t nvals;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user