summaryrefslogtreecommitdiffstats
path: root/src/usr/initservice/istepdispatcher/istepdispatcher.C
diff options
context:
space:
mode:
authorMark Wenning <wenning@us.ibm.com>2011-07-11 15:43:13 -0500
committerMark W. Wenning <wenning@us.ibm.com>2011-07-25 16:50:09 -0500
commit9c0e69b8cdf3aabcd77c119c3b3425fda66706da (patch)
tree77a5b7f1c4f58da3a74048e54575a5b9a7785f34 /src/usr/initservice/istepdispatcher/istepdispatcher.C
parentb679a1729d7aea0870544e886ddb4b03e1ecf4c4 (diff)
downloadtalos-hostboot-9c0e69b8cdf3aabcd77c119c3b3425fda66706da.tar.gz
talos-hostboot-9c0e69b8cdf3aabcd77c119c3b3425fda66706da.zip
Cleanup from previous reviews, add barrier for CxxTest
- add IStep1 for demo - cleanup: remove inheritance, add errlog tags, etc. - inadvertently ran copyright script, this is OK. - more cleanup: indentation, etc. - add barrier for CxxTests - rename cxxtest_stub.C to cxxtest_data.C - merge problems on gerrit - fix review comments Change-Id: Iee988b8595d8c6dd521fd94d4d58cb403898d948 Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/207 Tested-by: Jenkins Server Reviewed-by: MIKE J. JONES <mjjones@us.ibm.com> Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr/initservice/istepdispatcher/istepdispatcher.C')
-rw-r--r--src/usr/initservice/istepdispatcher/istepdispatcher.C70
1 files changed, 55 insertions, 15 deletions
diff --git a/src/usr/initservice/istepdispatcher/istepdispatcher.C b/src/usr/initservice/istepdispatcher/istepdispatcher.C
index cb3634c9b..057cde2f9 100644
--- a/src/usr/initservice/istepdispatcher/istepdispatcher.C
+++ b/src/usr/initservice/istepdispatcher/istepdispatcher.C
@@ -1,3 +1,20 @@
+/****************************************************************************
+ * $IBMCopyrightBlock:
+ *
+ * IBM Confidential
+ *
+ * Licensed Internal Code Source Materials
+ *
+ * IBM HostBoot Licensed Internal Code
+ *
+ * (C) Copyright IBM Corp. 2011
+ *
+ * The source code for this program is not published or other-
+ * wise divested of its trade secrets, irrespective of what has
+ * been deposited with the U.S. Copyright Office.
+ * $
+****************************************************************************/
+
/**
* @file istepdispatcher.C
*
@@ -20,6 +37,7 @@
#include "istepdispatcher.H"
#include "isteplist.H"
+
namespace INITSERVICE
{
@@ -29,28 +47,26 @@ namespace INITSERVICE
extern trace_desc_t *g_trac_initsvc;
/**
- * @brief set up _start() task entry procedure
- *
+ * @brief set up _start() task entry procedure using the macro
*/
TASK_ENTRY_MACRO( IStepDispatcher::getTheInstance().init );
IStepDispatcher::IStepDispatcher()
-:
- iv_istepmodeflag(false),
- iv_nextistep( 0 ),
- iv_cancontinueflag(false)
+: iv_istepmodeflag(false),
+ iv_nextistep( 0 ),
+ iv_cancontinueflag(false)
{
}
+
IStepDispatcher::~IStepDispatcher()
{
}
-
IStepDispatcher& IStepDispatcher::getTheInstance()
{
return Singleton<IStepDispatcher>::instance();
@@ -72,7 +88,7 @@ void IStepDispatcher::init( void * ptr )
nextIStep<INITSERVICE::MAX_ISTEPS;
nextIStep++ )
{
- pistep = &(isteps[nextIStep]);
+ pistep = &(g_isteps[nextIStep]);
if ( pistep->taskflags.task_type == END_TASK_LIST )
{
TRACDCOMP( g_trac_initsvc,
@@ -81,16 +97,30 @@ void IStepDispatcher::init( void * ptr )
}
- errl = executeFn( pistep, &args );
+ args.clear(); // clear the args struct for the next istep
+ errl = InitService::getTheInstance().executeFn( pistep,
+ &args );
- // report an error
- reportError( errl );
+ // handle an errorlog from the parent, if it exists
+ InitService::getTheInstance().reportError( errl );
/**
* @todo call getCanContinueProcedure when we have some ISteps that
- * require them.
+ * require them.
*/
+ if ( args.getReturnCode() != TASKARGS_UNDEFINED64 )
+ {
+ TRACFCOMP( g_trac_initsvc,
+ ERR_MRK "IStep TaskArgs returned 0x%llx, errlog=%p",
+ args.getReturnCode(),
+ args.getErrorLog()
+ );
+ }
+
+ // report an error from the child, if it exists.
+ reportIStepErrorLog( pistep, args.getErrorLog() );
+
} // endfor
@@ -99,6 +129,8 @@ void IStepDispatcher::init( void * ptr )
}
+
+
/**
* @note IStep Mode is hardwired to false for now
*
@@ -112,12 +144,20 @@ bool IStepDispatcher::getIStepMode( ) const
-bool IStepDispatcher::getCanContinueProcedure( TaskInfo &i_failingIStep,
- errlHndl_t &i_failingError,
- TaskInfo &io_nextIstep ) const
+bool IStepDispatcher::getCanContinueProcedure( const TaskInfo &i_failingIStep,
+ errlHndl_t &i_failingError,
+ TaskInfo &io_nextIstep
+ ) const
{
return false;
}
+void IStepDispatcher::reportIStepErrorLog( const TaskInfo *i_failingIStep,
+ errlHndl_t io_errl )
+{
+
+ InitService::getTheInstance().reportError( io_errl );
+}
+
} // namespace
OpenPOWER on IntegriCloud