virt plugin: Move `get_pcpu_stats()' down to avoid forward declaration of `submit_der...
authorPavel Rochnyack <pavel2000@ngs.ru>
Thu, 25 Oct 2018 08:44:38 +0000 (15:44 +0700)
committerPavel Rochnyack <pavel2000@ngs.ru>
Thu, 25 Oct 2018 08:47:22 +0000 (15:47 +0700)
src/virt.c

index e7f11fc..8a44c26 100644 (file)
@@ -240,9 +240,6 @@ const char *domain_reasons[][DOMAIN_STATE_REASON_MAX_SIZE] = {
       ERROR(PLUGIN_NAME ": Failed to get " _name);                             \
   } while (0)
 
-static void submit_derive2(const char *type, derive_t v0, derive_t v1,
-                           virDomainPtr dom, const char *devname);
-
 /* Connection. */
 static virConnectPtr conn = 0;
 static char *conn_string = NULL;
@@ -479,49 +476,6 @@ static int get_block_info(struct lv_block_info *binfo,
       ERROR(PLUGIN_NAME " plugin: %s failed: %s", (s), err->message);          \
   } while (0)
 
-#ifdef HAVE_CPU_STATS
-static int get_pcpu_stats(virDomainPtr dom) {
-  int nparams = virDomainGetCPUStats(dom, NULL, 0, -1, 1, 0);
-  if (nparams < 0) {
-    VIRT_ERROR(conn, "getting the CPU params count");
-    return -1;
-  }
-
-  virTypedParameterPtr param = calloc(nparams, sizeof(virTypedParameter));
-  if (param == NULL) {
-    ERROR(PLUGIN_NAME " plugin: alloc(%i) for cpu parameters failed.", nparams);
-    return -1;
-  }
-
-  int ret = virDomainGetCPUStats(dom, param, nparams, -1, 1, 0); // total stats.
-  if (ret < 0) {
-    virTypedParamsClear(param, nparams);
-    sfree(param);
-    VIRT_ERROR(conn, "getting the CPU params values");
-    return -1;
-  }
-
-  unsigned long long total_user_cpu_time = 0;
-  unsigned long long total_syst_cpu_time = 0;
-
-  for (int i = 0; i < nparams; ++i) {
-    if (!strcmp(param[i].field, "user_time"))
-      total_user_cpu_time = param[i].value.ul;
-    else if (!strcmp(param[i].field, "system_time"))
-      total_syst_cpu_time = param[i].value.ul;
-  }
-
-  if (total_user_cpu_time > 0 || total_syst_cpu_time > 0)
-    submit_derive2("ps_cputime", total_user_cpu_time, total_syst_cpu_time, dom,
-                   NULL);
-
-  virTypedParamsClear(param, nparams);
-  sfree(param);
-
-  return 0;
-}
-#endif /* HAVE_CPU_STATS */
-
 static void init_value_list(value_list_t *vl, virDomainPtr dom) {
   int n;
   const char *name;
@@ -1203,6 +1157,49 @@ static int get_vcpu_stats(virDomainPtr domain, unsigned short nr_virt_cpu) {
   return 0;
 }
 
+#ifdef HAVE_CPU_STATS
+static int get_pcpu_stats(virDomainPtr dom) {
+  int nparams = virDomainGetCPUStats(dom, NULL, 0, -1, 1, 0);
+  if (nparams < 0) {
+    VIRT_ERROR(conn, "getting the CPU params count");
+    return -1;
+  }
+
+  virTypedParameterPtr param = calloc(nparams, sizeof(virTypedParameter));
+  if (param == NULL) {
+    ERROR(PLUGIN_NAME " plugin: alloc(%i) for cpu parameters failed.", nparams);
+    return -1;
+  }
+
+  int ret = virDomainGetCPUStats(dom, param, nparams, -1, 1, 0); // total stats.
+  if (ret < 0) {
+    virTypedParamsClear(param, nparams);
+    sfree(param);
+    VIRT_ERROR(conn, "getting the CPU params values");
+    return -1;
+  }
+
+  unsigned long long total_user_cpu_time = 0;
+  unsigned long long total_syst_cpu_time = 0;
+
+  for (int i = 0; i < nparams; ++i) {
+    if (!strcmp(param[i].field, "user_time"))
+      total_user_cpu_time = param[i].value.ul;
+    else if (!strcmp(param[i].field, "system_time"))
+      total_syst_cpu_time = param[i].value.ul;
+  }
+
+  if (total_user_cpu_time > 0 || total_syst_cpu_time > 0)
+    submit_derive2("ps_cputime", total_user_cpu_time, total_syst_cpu_time, dom,
+                   NULL);
+
+  virTypedParamsClear(param, nparams);
+  sfree(param);
+
+  return 0;
+}
+#endif /* HAVE_CPU_STATS */
+
 #ifdef HAVE_DOM_REASON
 static int get_domain_state(virDomainPtr domain) {
   int domain_state = 0;