[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH] mm: don't use domain_shutdown() when re-offlining a page
It goes all silent, leaving open what has actually caused the crash. Use domain_crash() instead, which leaves a log message before calling domain_shutdown(..., SHUTDOWN_crash). Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> --- a/xen/common/page_alloc.c +++ b/xen/common/page_alloc.c @@ -1546,7 +1546,7 @@ int offline_page(unsigned long mfn, int if ( (pg->count_info & PGC_broken) && (owner = page_get_owner(pg)) ) { *status = PG_OFFLINE_AGAIN; - domain_shutdown(owner, SHUTDOWN_crash); + domain_crash(owner); return 0; } _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |