提交 b2211a9e 编写于 作者: M Martin Kletzander

Rename virResctrlInfo to virResctrlInfoPerCache

Just to ease the review of following patches.
Signed-off-by: NMartin Kletzander <mkletzan@redhat.com>
上级 23594ccd
......@@ -904,7 +904,7 @@ virCapabilitiesFormatCaches(virBufferPtr buf,
virBufferSetChildIndent(&controlBuf, buf);
for (j = 0; j < bank->ncontrols; j++) {
const char *min_unit;
virResctrlInfoPtr controls = bank->controls[j];
virResctrlInfoPerCachePtr controls = bank->controls[j];
unsigned long long gran_short_size = controls->granularity;
unsigned long long min_short_size = controls->min;
......
......@@ -148,7 +148,7 @@ struct _virCapsHostCacheBank {
virCacheType type; /* Data, Instruction or Unified */
virBitmapPtr cpus; /* All CPUs that share this bank */
size_t ncontrols;
virResctrlInfoPtr *controls;
virResctrlInfoPerCachePtr *controls;
};
typedef struct _virCapsHost virCapsHost;
......
......@@ -59,7 +59,7 @@ int
virResctrlGetCacheInfo(unsigned int level,
unsigned long long size,
virCacheType scope,
virResctrlInfoPtr **controls,
virResctrlInfoPerCachePtr **controls,
size_t *ncontrols)
{
int ret = -1;
......@@ -69,7 +69,7 @@ virResctrlGetCacheInfo(unsigned int level,
char *type_upper = NULL;
unsigned int bits = 0;
unsigned int min_cbm_bits = 0;
virResctrlInfoPtr control;
virResctrlInfoPerCachePtr control;
if (VIR_ALLOC(control) < 0)
goto cleanup;
......
......@@ -36,9 +36,9 @@ typedef enum {
VIR_ENUM_DECL(virCache);
typedef struct _virResctrlInfo virResctrlInfo;
typedef virResctrlInfo *virResctrlInfoPtr;
struct _virResctrlInfo {
typedef struct _virResctrlInfoPerCache virResctrlInfoPerCache;
typedef virResctrlInfoPerCache *virResctrlInfoPerCachePtr;
struct _virResctrlInfoPerCache {
/* Smallest possible increase of the allocation size in bytes */
unsigned long long granularity;
/* Minimal allocatable size in bytes (if different from granularity) */
......@@ -54,7 +54,7 @@ int
virResctrlGetCacheInfo(unsigned int level,
unsigned long long size,
virCacheType scope,
virResctrlInfoPtr **controls,
virResctrlInfoPerCachePtr **controls,
size_t *ncontrols);
int
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册