]> xenbits.xensource.com Git - xen.git/commitdiff
libxl/libxl_psr.c: used LOG*D functions
authorCedric Bosdonnat <cbosdonnat@suse.com>
Fri, 2 Dec 2016 15:08:32 +0000 (16:08 +0100)
committerWei Liu <wei.liu2@citrix.com>
Sat, 3 Dec 2016 15:57:34 +0000 (15:57 +0000)
Use LOG*D logging functions where possible instead of the LOG* ones.

Signed-off-by: Cédric Bosdonnat <cbosdonnat@suse.com>
Acked-by: Wei Liu <wei.liu2@citrix.com>
tools/libxl/libxl_psr.c

index 786183cf74973bad701a998b61ebaa6d7c3a5246..ec5c79db4e8f4e8df96878abd054a8b608684766 100644 (file)
@@ -241,15 +241,15 @@ int libxl_psr_cmt_get_sample(libxl_ctx *ctx,
 
     rc = xc_psr_cmt_get_domain_rmid(ctx->xch, domid, &rmid);
     if (rc < 0 || rmid == 0) {
-        LOGE(ERROR, "fail to get the domain rmid, "
-            "or domain is not attached with platform QoS monitoring service");
+        LOGED(ERROR, domid, "fail to get the domain rmid, "
+              "or domain is not attached with platform QoS monitoring service");
         rc = ERROR_FAIL;
         goto out;
     }
 
     cpu = libxl__pick_socket_cpu(gc, scope);
     if (cpu < 0) {
-        LOGE(ERROR, "failed to get socket cpu");
+        LOGED(ERROR, domid, "failed to get socket cpu");
         rc = ERROR_FAIL;
         goto out;
     }
@@ -257,14 +257,14 @@ int libxl_psr_cmt_get_sample(libxl_ctx *ctx,
     rc = xc_psr_cmt_get_data(ctx->xch, rmid, cpu, type - 1,
                              &monitor_data, tsc_r);
     if (rc < 0) {
-        LOGE(ERROR, "failed to get monitoring data");
+        LOGED(ERROR, domid, "failed to get monitoring data");
         rc = ERROR_FAIL;
         goto out;
     }
 
     rc = xc_psr_cmt_get_l3_upscaling_factor(ctx->xch, &upscaling_factor);
     if (rc < 0) {
-        LOGE(ERROR, "failed to get L3 upscaling factor");
+        LOGED(ERROR, domid, "failed to get L3 upscaling factor");
         rc = ERROR_FAIL;
         goto out;
     }
@@ -311,7 +311,7 @@ int libxl_psr_cat_set_cbm(libxl_ctx *ctx, uint32_t domid,
 
     rc = libxl__count_physical_sockets(gc, &nr_sockets);
     if (rc) {
-        LOGE(ERROR, "failed to get system socket count");
+        LOGED(ERROR, domid, "failed to get system socket count");
         goto out;
     }