From a1f2589486dca432ee7a548b6a8049fc17179218 Mon Sep 17 00:00:00 2001 From: Jack Ding Date: Wed, 11 Jul 2018 21:29:43 -0400 Subject: [PATCH] Cleanup internal references Story: 2002971 Task: 22979 Change-Id: I618d707ef141e8bd029b0fc80b4eaf34bacc7bf4 Signed-off-by: Jack Ding --- service-mgmt/sm-1.0.0/src/sm_node_swact_monitor.cpp | 4 ++-- service-mgmt/sm-1.0.0/src/sm_process.c | 4 ++-- service-mgmt/sm-1.0.0/src/sm_service_group_fsm.c | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/service-mgmt/sm-1.0.0/src/sm_node_swact_monitor.cpp b/service-mgmt/sm-1.0.0/src/sm_node_swact_monitor.cpp index 306326af..b787365d 100644 --- a/service-mgmt/sm-1.0.0/src/sm_node_swact_monitor.cpp +++ b/service-mgmt/sm-1.0.0/src/sm_node_swact_monitor.cpp @@ -18,7 +18,7 @@ void SmNodeSwactMonitor::SwactStart(SmNodeScheduleStateT my_role) sm_node_utils_is_aio_duplex(&duplex); if( duplex ) { - // US102803: Set the swact state to start so task affining thread + // Set the swact state to start so task affining thread // can affine tasks to all idle cores to speed up swact activity. DPRINTFI("Start of swact: affining tasks to idle cores..."); sm_set_swact_state(SM_SWACT_STATE_START); @@ -48,7 +48,7 @@ void SmNodeSwactMonitor::SwactCompleted(bool result) { if( duplex ) { - // US102803: Set the swact state to end so task affining thread + // Set the swact state to end so task affining thread // can reaffine tasks back to the platform cores. DPRINTFI("End of swact: reaffining tasks back to platform cores..."); sm_set_swact_state(SM_SWACT_STATE_END); diff --git a/service-mgmt/sm-1.0.0/src/sm_process.c b/service-mgmt/sm-1.0.0/src/sm_process.c index e55f25b6..5a17a5ee 100644 --- a/service-mgmt/sm-1.0.0/src/sm_process.c +++ b/service-mgmt/sm-1.0.0/src/sm_process.c @@ -351,7 +351,7 @@ static SmErrorT sm_process_initialize( void ) return( SM_FAILED ); } - // US102803: Start a task affining thread for AIO duplex system + // Start a task affining thread for AIO duplex system if(_is_aio_duplex) { error = sm_task_affining_thread_start(); @@ -374,7 +374,7 @@ static SmErrorT sm_process_finalize( void ) { SmErrorT error; - // US102803: Stop the task affining thread if it is AIO duplex + // Stop the task affining thread if it is AIO duplex if(_is_aio_duplex) { error = sm_task_affining_thread_stop(); diff --git a/service-mgmt/sm-1.0.0/src/sm_service_group_fsm.c b/service-mgmt/sm-1.0.0/src/sm_service_group_fsm.c index ec5833e0..6896b00e 100644 --- a/service-mgmt/sm-1.0.0/src/sm_service_group_fsm.c +++ b/service-mgmt/sm-1.0.0/src/sm_service_group_fsm.c @@ -212,7 +212,7 @@ static SmErrorT sm_service_group_fsm_enter_state( SmServiceGroupT* service_group break; case SM_SERVICE_GROUP_STATE_DISABLED: - // US102803: This is a workaround for lack of sm message that + // This is a workaround for lack of sm message that // signifies the "end-of-swact" state on both controller nodes. // // As all service groups have to transition to disabled state