[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen stable-4.4] kexec: identify which cpu the kexec image is being executed on
commit f81f1c6c45c3a7b3b99ee56e71d5374186fe6c37 Author: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> AuthorDate: Fri Mar 14 17:29:03 2014 +0100 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Fri Mar 14 17:29:03 2014 +0100 kexec: identify which cpu the kexec image is being executed on A patch to this effect has been in XenServer for a little while, and has proved to be a useful debugging point for servers which have different behaviours depending when crashing on the non-bootstrap processor. Moving the printk() from kexec_panic() to one_cpu_only() means that it will only be printed for the cpu which wins the race along the kexec path. Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Acked-by: David Vrabel <david.vrabel@xxxxxxxxxx> master commit: 4509ada6ba1f09cc8f4fa23e009e7e5a963b6086 master date: 2014-03-10 11:11:28 +0100 --- xen/common/kexec.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/xen/common/kexec.c b/xen/common/kexec.c index 481b0c2..23d964e 100644 --- a/xen/common/kexec.c +++ b/xen/common/kexec.c @@ -265,6 +265,8 @@ static int noinline one_cpu_only(void) } set_bit(KEXEC_FLAG_IN_PROGRESS, &kexec_flags); + printk("Executing kexec image on cpu%u\n", cpu); + return 0; } @@ -340,8 +342,6 @@ void kexec_crash(void) if ( !test_bit(KEXEC_IMAGE_CRASH_BASE + pos, &kexec_flags) ) return; - printk("Executing crash image\n"); - kexecing = TRUE; if ( kexec_common_shutdown() != 0 ) -- generated by git-patchbot for /home/xen/git/xen.git#stable-4.4 _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |