From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matthew Daley Subject: [PATCH] libxc: silence HVM domain creation messages Date: Thu, 15 Aug 2013 10:20:54 +1200 Message-ID: <1376518854-6212-1-git-send-email-mattjd@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: xen-devel@lists.xen.org Cc: fabio.fantoni@m2r.biz, Matthew Daley List-Id: xen-devel@lists.xenproject.org There's no need for xl to output these messages on HVM domain creation to stderr by default. Change their loglevels from XTL_INFO to XTL_DETAIL; then the messages output by xl are the same as those for PV domain creation. These now-silenced messages can still be seen using verbose (-v) mode. Signed-off-by: Matthew Daley --- tools/libxc/xc_hvm_build_x86.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/libxc/xc_hvm_build_x86.c b/tools/libxc/xc_hvm_build_x86.c index 8bb0178..77bd365 100644 --- a/tools/libxc/xc_hvm_build_x86.c +++ b/tools/libxc/xc_hvm_build_x86.c @@ -281,7 +281,7 @@ static int setup_guest(xc_interface *xch, goto error_out; } - IPRINTF("VIRTUAL MEMORY ARRANGEMENT:\n" + DPRINTF("VIRTUAL MEMORY ARRANGEMENT:\n" " Loader: %016"PRIx64"->%016"PRIx64"\n" " Modules: %016"PRIx64"->%016"PRIx64"\n" " TOTAL: %016"PRIx64"->%016"PRIx64"\n" @@ -443,7 +443,7 @@ static int setup_guest(xc_interface *xch, goto error_out; } - IPRINTF("PHYSICAL MEMORY ALLOCATION:\n" + DPRINTF("PHYSICAL MEMORY ALLOCATION:\n" " 4KB PAGES: 0x%016lx\n" " 2MB PAGES: 0x%016lx\n" " 1GB PAGES: 0x%016lx\n", -- 1.7.10.4