mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-22 03:12:22 +00:00
util: Rename some functions of virresctrl
Some functions in virresctrl are for CAT only, while some of other functions are for resource allocation, not just CAT. So change their names to reflect the reality. Signed-off-by: Bing Niu <bing.niu@intel.com> Reviewed-by: John Ferlan <jferlan@redhat.com>
This commit is contained in:
parent
1077b46de6
commit
f7c7f8ea65
@ -19141,7 +19141,7 @@ virDomainCachetuneDefParseCache(xmlXPathContextPtr ctxt,
|
||||
ULLONG_MAX, true) < 0)
|
||||
goto cleanup;
|
||||
|
||||
if (virResctrlAllocSetSize(alloc, level, type, cache, size) < 0)
|
||||
if (virResctrlAllocSetCacheSize(alloc, level, type, cache, size) < 0)
|
||||
goto cleanup;
|
||||
|
||||
ret = 0;
|
||||
@ -27097,9 +27097,9 @@ virDomainCachetuneDefFormat(virBufferPtr buf,
|
||||
int ret = -1;
|
||||
|
||||
virBufferSetChildIndent(&childrenBuf, buf);
|
||||
virResctrlAllocForeachSize(cachetune->alloc,
|
||||
virDomainCachetuneDefFormatHelper,
|
||||
&childrenBuf);
|
||||
virResctrlAllocForeachCache(cachetune->alloc,
|
||||
virDomainCachetuneDefFormatHelper,
|
||||
&childrenBuf);
|
||||
|
||||
|
||||
if (virBufferCheckError(&childrenBuf) < 0)
|
||||
|
@ -2647,14 +2647,14 @@ virCacheTypeToString;
|
||||
virResctrlAllocAddPID;
|
||||
virResctrlAllocCreate;
|
||||
virResctrlAllocDeterminePath;
|
||||
virResctrlAllocForeachSize;
|
||||
virResctrlAllocForeachCache;
|
||||
virResctrlAllocFormat;
|
||||
virResctrlAllocGetID;
|
||||
virResctrlAllocGetUnused;
|
||||
virResctrlAllocNew;
|
||||
virResctrlAllocRemove;
|
||||
virResctrlAllocSetCacheSize;
|
||||
virResctrlAllocSetID;
|
||||
virResctrlAllocSetSize;
|
||||
virResctrlInfoGetCache;
|
||||
virResctrlInfoNew;
|
||||
|
||||
|
@ -754,11 +754,11 @@ virResctrlAllocCheckCollision(virResctrlAllocPtr alloc,
|
||||
|
||||
|
||||
int
|
||||
virResctrlAllocSetSize(virResctrlAllocPtr alloc,
|
||||
unsigned int level,
|
||||
virCacheType type,
|
||||
unsigned int cache,
|
||||
unsigned long long size)
|
||||
virResctrlAllocSetCacheSize(virResctrlAllocPtr alloc,
|
||||
unsigned int level,
|
||||
virCacheType type,
|
||||
unsigned int cache,
|
||||
unsigned long long size)
|
||||
{
|
||||
if (virResctrlAllocCheckCollision(alloc, level, type, cache)) {
|
||||
virReportError(VIR_ERR_XML_ERROR,
|
||||
@ -773,9 +773,9 @@ virResctrlAllocSetSize(virResctrlAllocPtr alloc,
|
||||
|
||||
|
||||
int
|
||||
virResctrlAllocForeachSize(virResctrlAllocPtr alloc,
|
||||
virResctrlAllocForeachSizeCallback cb,
|
||||
void *opaque)
|
||||
virResctrlAllocForeachCache(virResctrlAllocPtr alloc,
|
||||
virResctrlAllocForeachCacheCallback cb,
|
||||
void *opaque)
|
||||
{
|
||||
int ret = 0;
|
||||
unsigned int level = 0;
|
||||
@ -939,9 +939,9 @@ virResctrlAllocParseProcessCache(virResctrlInfoPtr resctrl,
|
||||
|
||||
|
||||
static int
|
||||
virResctrlAllocParseProcessLine(virResctrlInfoPtr resctrl,
|
||||
virResctrlAllocPtr alloc,
|
||||
char *line)
|
||||
virResctrlAllocParseCacheLine(virResctrlInfoPtr resctrl,
|
||||
virResctrlAllocPtr alloc,
|
||||
char *line)
|
||||
{
|
||||
char **caches = NULL;
|
||||
char *tmp = NULL;
|
||||
@ -1009,7 +1009,7 @@ virResctrlAllocParse(virResctrlInfoPtr resctrl,
|
||||
|
||||
lines = virStringSplitCount(schemata, "\n", 0, &nlines);
|
||||
for (i = 0; i < nlines; i++) {
|
||||
if (virResctrlAllocParseProcessLine(resctrl, alloc, lines[i]) < 0)
|
||||
if (virResctrlAllocParseCacheLine(resctrl, alloc, lines[i]) < 0)
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
@ -1401,8 +1401,8 @@ virResctrlAllocCopyMasks(virResctrlAllocPtr dst,
|
||||
* transforming `sizes` into `masks`.
|
||||
*/
|
||||
static int
|
||||
virResctrlAllocMasksAssign(virResctrlInfoPtr resctrl,
|
||||
virResctrlAllocPtr alloc)
|
||||
virResctrlAllocAssign(virResctrlInfoPtr resctrl,
|
||||
virResctrlAllocPtr alloc)
|
||||
{
|
||||
int ret = -1;
|
||||
unsigned int level = 0;
|
||||
@ -1526,7 +1526,7 @@ virResctrlAllocCreate(virResctrlInfoPtr resctrl,
|
||||
if (lockfd < 0)
|
||||
goto cleanup;
|
||||
|
||||
if (virResctrlAllocMasksAssign(resctrl, alloc) < 0)
|
||||
if (virResctrlAllocAssign(resctrl, alloc) < 0)
|
||||
goto cleanup;
|
||||
|
||||
alloc_str = virResctrlAllocFormat(alloc);
|
||||
|
@ -67,11 +67,11 @@ virResctrlInfoGetCache(virResctrlInfoPtr resctrl,
|
||||
typedef struct _virResctrlAlloc virResctrlAlloc;
|
||||
typedef virResctrlAlloc *virResctrlAllocPtr;
|
||||
|
||||
typedef int virResctrlAllocForeachSizeCallback(unsigned int level,
|
||||
virCacheType type,
|
||||
unsigned int cache,
|
||||
unsigned long long size,
|
||||
void *opaque);
|
||||
typedef int virResctrlAllocForeachCacheCallback(unsigned int level,
|
||||
virCacheType type,
|
||||
unsigned int cache,
|
||||
unsigned long long size,
|
||||
void *opaque);
|
||||
|
||||
virResctrlAllocPtr
|
||||
virResctrlAllocNew(void);
|
||||
@ -80,16 +80,16 @@ bool
|
||||
virResctrlAllocIsEmpty(virResctrlAllocPtr alloc);
|
||||
|
||||
int
|
||||
virResctrlAllocSetSize(virResctrlAllocPtr alloc,
|
||||
unsigned int level,
|
||||
virCacheType type,
|
||||
unsigned int cache,
|
||||
unsigned long long size);
|
||||
virResctrlAllocSetCacheSize(virResctrlAllocPtr alloc,
|
||||
unsigned int level,
|
||||
virCacheType type,
|
||||
unsigned int cache,
|
||||
unsigned long long size);
|
||||
|
||||
int
|
||||
virResctrlAllocForeachSize(virResctrlAllocPtr alloc,
|
||||
virResctrlAllocForeachSizeCallback cb,
|
||||
void *opaque);
|
||||
virResctrlAllocForeachCache(virResctrlAllocPtr alloc,
|
||||
virResctrlAllocForeachCacheCallback cb,
|
||||
void *opaque);
|
||||
|
||||
int
|
||||
virResctrlAllocSetID(virResctrlAllocPtr alloc,
|
||||
|
Loading…
x
Reference in New Issue
Block a user