Signed-off-by: Jan Beulich <jbeulich@suse.com>
Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com>
Acked-by: George Dunlap <george.dunlap@citrix.com>
{
struct domain *d = v->domain;
- HAP_ERROR("Intercepted a guest #PF (%u:%u) with HAP enabled.\n",
- d->domain_id, v->vcpu_id);
+ HAP_ERROR("Intercepted a guest #PF (%pv) with HAP enabled\n", v);
domain_crash(d);
return 0;
}
return 1;
}
- HAP_ERROR("Intercepted a guest INVLPG (%u:%u) with HAP enabled.\n",
- v->domain->domain_id, v->vcpu_id);
+ HAP_ERROR("Intercepted a guest INVLPG (%pv) with HAP enabled\n", v);
domain_crash(v->domain);
return 0;
}