From 240f26001382001974fff7d62367e58df3f7b1db Mon Sep 17 00:00:00 2001 From: Bill Hoffa Date: Mon, 10 Apr 2017 14:43:51 -0500 Subject: Include HUID of failed Proc in TI data for certain SBE errors - Include a generic error pipleline for other future error scenarios to leverage this functionality Change-Id: Icc1399ee93157c7106d394944a3355285a8cd830 RTC: 171865 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/39072 Reviewed-by: Martin Gloff Tested-by: Jenkins Server Tested-by: Jenkins OP Build CI Tested-by: FSP CI Jenkins Reviewed-by: Prachi Gupta Reviewed-by: Daniel M. Crowell --- src/kernel/syscall.C | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/kernel/syscall.C') diff --git a/src/kernel/syscall.C b/src/kernel/syscall.C index 44edff61a..adef18afe 100644 --- a/src/kernel/syscall.C +++ b/src/kernel/syscall.C @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2010,2016 */ +/* Contributors Listed Below - COPYRIGHT 2010,2017 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -690,7 +690,8 @@ namespace Systemcalls KernelMisc::g_payload_entry = static_cast(TASK_GETARG2(t)); KernelMisc::g_payload_data = static_cast(TASK_GETARG3(t)); KernelMisc::g_masterHBInstance= static_cast(TASK_GETARG4(t)); - CpuManager::requestShutdown(status); + KernelMisc::g_error_data= static_cast(TASK_GETARG5(t)); + CpuManager::requestShutdown(status, KernelMisc::g_error_data); TASK_SETRTN(t, 0); } -- cgit v1.2.1