From 6cbb322bd055d4869ccf7aa6c1fd559adc60a083 Mon Sep 17 00:00:00 2001 From: Tamas K Lengyel Date: Wed, 18 Oct 2023 14:57:45 +0000 Subject: [PATCH] Silence too verbose debug log on HVM save/restore --- xen/arch/x86/hvm/save.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/xen/arch/x86/hvm/save.c b/xen/arch/x86/hvm/save.c index 86c82cbd74..5dfd6c07f9 100644 --- a/xen/arch/x86/hvm/save.c +++ b/xen/arch/x86/hvm/save.c @@ -247,8 +247,8 @@ int hvm_save(struct domain *d, hvm_domain_context_t *h) for_each_vcpu ( d, v ) { - printk(XENLOG_G_INFO "HVM %pv save: %s\n", - v, hvm_sr_handlers[i].name); + //printk(XENLOG_G_INFO "HVM %pv save: %s\n", + // v, hvm_sr_handlers[i].name); if ( handler(v, h) != 0 ) { printk(XENLOG_G_ERR @@ -261,8 +261,8 @@ int hvm_save(struct domain *d, hvm_domain_context_t *h) } else { - printk(XENLOG_G_INFO "HVM d%d save: %s\n", - d->domain_id, hvm_sr_handlers[i].name); + //printk(XENLOG_G_INFO "HVM d%d save: %s\n", + // d->domain_id, hvm_sr_handlers[i].name); if ( handler(d->vcpu[0], h) != 0 ) { printk(XENLOG_G_ERR @@ -338,8 +338,8 @@ int hvm_load(struct domain *d, hvm_domain_context_t *h) } /* Load the entry */ - printk(XENLOG_G_INFO "HVM%d restore: %s %"PRIu16"\n", d->domain_id, - hvm_sr_handlers[desc->typecode].name, desc->instance); + //printk(XENLOG_G_INFO "HVM%d restore: %s %"PRIu16"\n", d->domain_id, + // hvm_sr_handlers[desc->typecode].name, desc->instance); rc = handler(d, h); if ( rc ) { -- 2.39.5