summaryrefslogtreecommitdiffstats
path: root/src/usr/hwpf/hwp/edi_ei_initialization
diff options
context:
space:
mode:
authorBill Schwartz <whs@us.ibm.com>2012-10-10 10:36:29 -0500
committerA. Patrick Williams III <iawillia@us.ibm.com>2012-10-12 16:29:17 -0500
commitb201169eeae76a7697f4f207dd583d40a2f07f66 (patch)
treea05fa3da99dddab0491623aebc1110e73d430bf7 /src/usr/hwpf/hwp/edi_ei_initialization
parent3536e96bd3a1d490cec900617fab6703fb7798ea (diff)
downloadtalos-hostboot-b201169eeae76a7697f4f207dd583d40a2f07f66.tar.gz
talos-hostboot-b201169eeae76a7697f4f207dd583d40a2f07f66.zip
Memory Leak task_end
Change-Id: Idb7a2d8d72a55f644efd0b2548eca5df5d062e6d RTC: 47491 Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/2011 Tested-by: Jenkins Server Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr/hwpf/hwp/edi_ei_initialization')
-rw-r--r--src/usr/hwpf/hwp/edi_ei_initialization/edi_ei_initialization.C32
-rw-r--r--src/usr/hwpf/hwp/edi_ei_initialization/edi_ei_initialization.H32
2 files changed, 32 insertions, 32 deletions
diff --git a/src/usr/hwpf/hwp/edi_ei_initialization/edi_ei_initialization.C b/src/usr/hwpf/hwp/edi_ei_initialization/edi_ei_initialization.C
index bc51f6dee..f46a09a47 100644
--- a/src/usr/hwpf/hwp/edi_ei_initialization/edi_ei_initialization.C
+++ b/src/usr/hwpf/hwp/edi_ei_initialization/edi_ei_initialization.C
@@ -83,7 +83,7 @@ using namespace fapi;
// Wrapper function to call 08.1 :
// fabric_erepair
//
-void call_fabric_erepair( void *io_pArgs )
+void* call_fabric_erepair( void *io_pArgs )
{
errlHndl_t l_errl = NULL;
@@ -127,7 +127,7 @@ void call_fabric_erepair( void *io_pArgs )
"call_fabric_erepair exit" );
// end task, returning any errorlogs to IStepDisp
- task_end2( l_errl );
+ return l_errl;
}
@@ -136,7 +136,7 @@ void call_fabric_erepair( void *io_pArgs )
// Wrapper function to call 08.2 :
// fabric_io_dccal
//
-void call_fabric_io_dccal( void *io_pArgs )
+void* call_fabric_io_dccal( void *io_pArgs )
{
errlHndl_t l_errl = NULL;
@@ -180,7 +180,7 @@ void call_fabric_io_dccal( void *io_pArgs )
"call_fabric_io_dccal exit" );
// end task, returning any errorlogs to IStepDisp
- task_end2( l_errl );
+ return l_errl;
}
@@ -189,7 +189,7 @@ void call_fabric_io_dccal( void *io_pArgs )
// Wrapper function to call 08.3 :
// fabric_pre_trainadv
//
-void call_fabric_pre_trainadv( void *io_pArgs )
+void* call_fabric_pre_trainadv( void *io_pArgs )
{
errlHndl_t l_errl = NULL;
@@ -233,7 +233,7 @@ void call_fabric_pre_trainadv( void *io_pArgs )
"call_fabric_pre_trainadv exit" );
// end task, returning any errorlogs to IStepDisp
- task_end2( l_errl );
+ return l_errl;
}
@@ -242,7 +242,7 @@ void call_fabric_pre_trainadv( void *io_pArgs )
// Wrapper function to call 08.4 :
// fabric_io_run_training
//
-void call_fabric_io_run_training( void *io_pArgs )
+void* call_fabric_io_run_training( void *io_pArgs )
{
errlHndl_t l_errl = NULL;
@@ -292,7 +292,7 @@ void call_fabric_io_run_training( void *io_pArgs )
"call_fabric_io_run_training exit" );
// end task, returning any errorlogs to IStepDisp
- task_end2( l_errl );
+ return l_errl;
}
@@ -301,7 +301,7 @@ void call_fabric_io_run_training( void *io_pArgs )
// Wrapper function to call 08.5 :
// fabric_post_trainadv
//
-void call_fabric_post_trainadv( void *io_pArgs )
+void* call_fabric_post_trainadv( void *io_pArgs )
{
errlHndl_t l_errl = NULL;
@@ -345,7 +345,7 @@ void call_fabric_post_trainadv( void *io_pArgs )
"call_fabric_post_trainadv exit" );
// end task, returning any errorlogs to IStepDisp
- task_end2( l_errl );
+ return l_errl;
}
@@ -354,7 +354,7 @@ void call_fabric_post_trainadv( void *io_pArgs )
// Wrapper function to call 08.6 :
// host_startPRD_pbus
//
-void call_host_startPRD_pbus( void *io_pArgs )
+void* call_host_startPRD_pbus( void *io_pArgs )
{
errlHndl_t l_errl = NULL;
@@ -398,7 +398,7 @@ void call_host_startPRD_pbus( void *io_pArgs )
"call_host_startPRD_pbus exit" );
// end task, returning any errorlogs to IStepDisp
- task_end2( l_errl );
+ return l_errl;
}
@@ -407,7 +407,7 @@ void call_host_startPRD_pbus( void *io_pArgs )
// Wrapper function to call 08.7 :
// host_attnlisten_proc
//
-void call_host_attnlisten_proc( void *io_pArgs )
+void* call_host_attnlisten_proc( void *io_pArgs )
{
errlHndl_t l_errl = NULL;
@@ -451,7 +451,7 @@ void call_host_attnlisten_proc( void *io_pArgs )
"call_host_attnlisten_proc exit" );
// end task, returning any errorlogs to IStepDisp
- task_end2( l_errl );
+ return l_errl;
}
@@ -460,7 +460,7 @@ void call_host_attnlisten_proc( void *io_pArgs )
// Wrapper function to call 08.8 :
// proc_fab_iovalid
//
-void call_proc_fab_iovalid( void *io_pArgs )
+void* call_proc_fab_iovalid( void *io_pArgs )
{
ReturnCode l_rc;
errlHndl_t l_errl = NULL;
@@ -566,7 +566,7 @@ void call_proc_fab_iovalid( void *io_pArgs )
"call_proc_fab_iovalid exit" );
// end task, returning any errorlogs to IStepDisp
- task_end2( l_errl );
+ return l_errl;
}
diff --git a/src/usr/hwpf/hwp/edi_ei_initialization/edi_ei_initialization.H b/src/usr/hwpf/hwp/edi_ei_initialization/edi_ei_initialization.H
index db1c8918e..ab6d0bf2c 100644
--- a/src/usr/hwpf/hwp/edi_ei_initialization/edi_ei_initialization.H
+++ b/src/usr/hwpf/hwp/edi_ei_initialization/edi_ei_initialization.H
@@ -114,10 +114,10 @@ namespace EDI_EI_INITIALIZATION
*
* param[in,out] - pointer to any arguments, usually NULL
*
- * return none
+ * return any errlogs to istep
*
*/
-void call_fabric_erepair( void *io_pArgs );
+void* call_fabric_erepair( void *io_pArgs );
@@ -128,10 +128,10 @@ void call_fabric_erepair( void *io_pArgs );
*
* param[in,out] - pointer to any arguments, usually NULL
*
- * return none
+ * return any errlogs to istep
*
*/
-void call_fabric_io_dccal( void *io_pArgs );
+void* call_fabric_io_dccal( void *io_pArgs );
@@ -142,10 +142,10 @@ void call_fabric_io_dccal( void *io_pArgs );
*
* param[in,out] - pointer to any arguments, usually NULL
*
- * return none
+ * return any errlogs to istep
*
*/
-void call_fabric_pre_trainadv( void *io_pArgs );
+void* call_fabric_pre_trainadv( void *io_pArgs );
@@ -156,10 +156,10 @@ void call_fabric_pre_trainadv( void *io_pArgs );
*
* param[in,out] - pointer to any arguments, usually NULL
*
- * return none
+ * return any errlogs to istep
*
*/
-void call_fabric_io_run_training( void *io_pArgs );
+void* call_fabric_io_run_training( void *io_pArgs );
@@ -170,10 +170,10 @@ void call_fabric_io_run_training( void *io_pArgs );
*
* param[in,out] - pointer to any arguments, usually NULL
*
- * return none
+ * return any errlogs to istep
*
*/
-void call_fabric_post_trainadv( void *io_pArgs );
+void* call_fabric_post_trainadv( void *io_pArgs );
@@ -184,10 +184,10 @@ void call_fabric_post_trainadv( void *io_pArgs );
*
* param[in,out] - pointer to any arguments, usually NULL
*
- * return none
+ * return any errlogs to istep
*
*/
-void call_host_startPRD_pbus( void *io_pArgs );
+void* call_host_startPRD_pbus( void *io_pArgs );
@@ -198,10 +198,10 @@ void call_host_startPRD_pbus( void *io_pArgs );
*
* param[in,out] - pointer to any arguments, usually NULL
*
- * return none
+ * return any errlogs to istep
*
*/
-void call_host_attnlisten_proc( void *io_pArgs );
+void* call_host_attnlisten_proc( void *io_pArgs );
@@ -212,10 +212,10 @@ void call_host_attnlisten_proc( void *io_pArgs );
*
* param[in,out] - pointer to any arguments, usually NULL
*
- * return none
+ * return any errlogs to istep
*
*/
-void call_proc_fab_iovalid( void *io_pArgs );
+void* call_proc_fab_iovalid( void *io_pArgs );
}; // end namespace
OpenPOWER on IntegriCloud