From: Uma Sharma Date: Mon, 20 Oct 2014 21:42:11 +0000 (+0530) Subject: tools/xl: Call init function for libxl_domain_sched_params X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~3931 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=06a4ef1a4dfb844e83eda2cc439d6c5e340c7acb;p=xen.git tools/xl: Call init function for libxl_domain_sched_params This patch calls init function for libxl_domain_sched_params before passing it as reference to sched_domain_get() function in tools/libxl/xl_cmdimpl.c IDL generated libxl types should be used only after calling the init function even if the variable is simply being passed by reference as an output parameter to a libxl function Signed-off-by: Uma Sharma Acked-by: Wei Liu -- --- diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c index ed0d478f81..fb7573e39c 100644 --- a/tools/libxl/xl_cmdimpl.c +++ b/tools/libxl/xl_cmdimpl.c @@ -5387,6 +5387,8 @@ static int sched_credit_domain_output(int domid) printf("%-33s %4s %6s %4s\n", "Name", "ID", "Weight", "Cap"); return 0; } + + libxl_domain_sched_params_init(&scinfo); rc = sched_domain_get(LIBXL_SCHEDULER_CREDIT, domid, &scinfo); if (rc) return rc; @@ -5433,6 +5435,8 @@ static int sched_credit2_domain_output( printf("%-33s %4s %6s\n", "Name", "ID", "Weight"); return 0; } + + libxl_domain_sched_params_init(&scinfo); rc = sched_domain_get(LIBXL_SCHEDULER_CREDIT2, domid, &scinfo); if (rc) return rc; @@ -5458,6 +5462,8 @@ static int sched_sedf_domain_output( "Slice", "Latency", "Extra", "Weight"); return 0; } + + libxl_domain_sched_params_init(&scinfo); rc = sched_domain_get(LIBXL_SCHEDULER_SEDF, domid, &scinfo); if (rc) return rc;