Blame Esm/ib/include/cs_csm_log.h

Packit 857059
/* BEGIN_ICS_COPYRIGHT2 ****************************************
Packit 857059
Packit 857059
Copyright (c) 2015-2017, Intel Corporation
Packit 857059
Packit 857059
Redistribution and use in source and binary forms, with or without
Packit 857059
modification, are permitted provided that the following conditions are met:
Packit 857059
Packit 857059
    * Redistributions of source code must retain the above copyright notice,
Packit 857059
      this list of conditions and the following disclaimer.
Packit 857059
    * Redistributions in binary form must reproduce the above copyright
Packit 857059
      notice, this list of conditions and the following disclaimer in the
Packit 857059
      documentation and/or other materials provided with the distribution.
Packit 857059
    * Neither the name of Intel Corporation nor the names of its contributors
Packit 857059
      may be used to endorse or promote products derived from this software
Packit 857059
      without specific prior written permission.
Packit 857059
Packit 857059
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Packit 857059
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Packit 857059
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Packit 857059
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
Packit 857059
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Packit 857059
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Packit 857059
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Packit 857059
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Packit 857059
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Packit 857059
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Packit 857059
Packit 857059
 * ** END_ICS_COPYRIGHT2   ****************************************/
Packit 857059
Packit 857059
#ifndef CS_CSM_LOG_L_H
Packit 857059
#define CS_CSM_LOG_L_H
Packit 857059
Packit 857059
/* enumerations */
Packit 857059
typedef enum {
Packit 857059
	CSM_SEV_INFO = 1,
Packit 857059
	CSM_SEV_NOTICE = 2,
Packit 857059
	CSM_SEV_WARNING = 3,
Packit 857059
	CSM_SEV_ERROR = 4,
Packit 857059
	CSM_SEV_MAX
Packit 857059
} SmCsmMsgType_t;
Packit 857059
Packit 857059
typedef enum {
Packit 857059
	CSM_COND_REDUNDANCY_LOST = 1,
Packit 857059
	CSM_COND_REDUNDANCY_RESTORED = 2,
Packit 857059
	CSM_COND_APPEARANCE = 3,
Packit 857059
	CSM_COND_DISAPPEARANCE = 4,
Packit 857059
	CSM_COND_SM_STATE_TO_MASTER = 5,
Packit 857059
	CSM_COND_SM_STATE_TO_STANDBY = 6,
Packit 857059
	CSM_COND_SM_SHUTDOWN = 7,
Packit 857059
	CSM_COND_FABRIC_INIT_ERROR = 8,
Packit 857059
	CSM_COND_LINK_ERROR = 9,
Packit 857059
	CSM_COND_SECURITY_ERROR = 10,
Packit 857059
	CSM_COND_OTHER_ERROR = 11,
Packit 857059
	CSM_COND_FABRIC_SUMMARY = 12,
Packit 857059
	CSM_COND_SM_STATE_TO_NOTACTIVE = 13,
Packit 857059
	CSM_COND_STANDBY_SM_DEACTIVATION = 14,
Packit 857059
	CSM_COND_STANDBY_SM_VF_DEACTIVATION = 15,
Packit 857059
	CSM_COND_SECONDARY_BM_DEACTIVATION = 16,
Packit 857059
	CSM_COND_SECONDARY_PM_DEACTIVATION = 17,
Packit 857059
	CSM_COND_DEACTIVATION_OF_STANDBY = 18,
Packit 857059
	CSM_COND_SECONDARY_EM_DEACTIVATION = 19,
Packit 857059
	CSM_COND_MAX
Packit 857059
} SmCsmMsgCondition_t;
Packit 857059
Packit 857059
/* structure definitions */
Packit 857059
typedef struct {
Packit 857059
	char description[64]; /* 64 == Maximum length of node description in IBTA v1.2 */
Packit 857059
	uint8_t port;
Packit 857059
	uint64_t guid;
Packit 857059
} SmCsmNodeId_t;
Packit 857059
Packit 857059
void smCsmFormatNodeId(SmCsmNodeId_t * id, uint8_t * desc, int port, uint64_t guid);
Packit 857059
Packit 857059
/* prototypes */
Packit 857059
int smCsmSetLogSmDesc(const char * nodeDesc, int port, uint64_t guid);
Packit 857059
SmCsmNodeId_t * getMyCsmNodeId(void);
Packit 857059
Packit 857059
int smCsmLogMessage( SmCsmMsgType_t msgType, SmCsmMsgCondition_t cond,
Packit 857059
                     SmCsmNodeId_t * node, SmCsmNodeId_t * linkedTo,
Packit 857059
                     char * detailFmt, ... );
Packit 857059
Packit 857059
Packit 857059
#endif