Address late comments on
ecb913be4aaa ("x86/mem-paging: correct
p2m_mem_paging_prep()'s error handling"):
- insert a gprintk() ahead of domain_crash(),
- add a comment.
Requested-by: Andrew Cooper <andrew.cooper3@citrix.com>
Signed-off-by: Jan Beulich <jbeulich@suse.com>
Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com>
* The domain can't possibly know about this page yet, so failure
* here is a clear indication of something fishy going on.
*/
+ gprintk(XENLOG_ERR,
+ "%pd: fresh page for GFN %"PRI_gfn" in unexpected state\n",
+ d, gfn_x(gfn));
domain_crash(d);
page = NULL;
goto out;
if ( page )
{
+ /*
+ * Free the page on error. Drop our temporary reference in all
+ * cases.
+ */
if ( ret )
put_page_alloc_ref(page);
put_page(page);