Blame IbAccess/Common/Inc/sd_params.h

Packit 857059
/* BEGIN_ICS_COPYRIGHT4 ****************************************
Packit 857059
Packit 857059
Copyright (c) 2015, 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_COPYRIGHT4   ****************************************/
Packit 857059
Packit 857059
/* [ICS VERSION STRING: unknown] */
Packit 857059
Packit 857059
/* Suppress duplicate loading of this file */
Packit 857059
#ifndef _INSI_IB_SD_PARAMS_H_
Packit 857059
#define _INSI_IB_SD_PARAMS_H_
Packit 857059
Packit 857059
Packit 857059
#if defined (__cplusplus)
Packit 857059
extern "C" {
Packit 857059
#endif
Packit 857059
Packit 857059
#include "datatypes.h"
Packit 857059
Packit 857059
	/* default client control options */
Packit 857059
#define SD_DEFAULT_RETRY_INTERVAL          10000				/* ms */
Packit 857059
#define SD_DEFAULT_RETRY_COUNT             3
Packit 857059
#if defined(DBG) ||defined( IB_DEBUG)
Packit 857059
#define SD_DEFAULT_DEBUG_FLAGS				0xffffffff
Packit 857059
#else
Packit 857059
#define SD_DEFAULT_DEBUG_FLAGS				0
Packit 857059
#endif
Packit 857059
#define SD_DEFAULT_OPTION_FLAGS			0
Packit 857059
Packit 857059
	/* interval for checking queued queries and retries/timeouts in ms */
Packit 857059
#define SD_DEFAULT_TIME_INTERVAL			500 /*1000 */
Packit 857059
Packit 857059
/* max child queries in main queue, helps to prevent child queries from
Packit 857059
 * overrunning primary queries
Packit 857059
 */
Packit 857059
#define SD_DEFAULT_MAX_SUB_QUERY_QUEUED		10
Packit 857059
Packit 857059
#define SD_DEFAULT_MAX_SA_OUTSTANDING		1
Packit 857059
Packit 857059
#define SD_DEFAULT_SA_BUSY_BACKOFF          10000				/* ms */
Packit 857059
#define SD_DEFAULT_VALIDATE_NODE_RECORD     1
Packit 857059
#define SD_DEFAULT_DUMP_INVALID_NODE_RECORD     0
Packit 857059
#define SD_DEFAULT_MIN_PKTLIFETIME          60					/* ms */
Packit 857059
Packit 857059
typedef struct _SD_CONFIG_PARAMS {
Packit 857059
		/* parameters for queries where ClientControlParameters omitted */
Packit 857059
	uint32		DefaultRetryCount;
Packit 857059
	uint32		DefaultRetryInterval;
Packit 857059
	uint32		DefaultDebugFlags;
Packit 857059
	uint32		DefaultOptionFlags;
Packit 857059
Packit 857059
	uint32		TimeInterval;	/* retry/timeout check rate in ms */
Packit 857059
	uint32		SaBusyBackoff;	/* backoff before retries when Busy reported */
Packit 857059
	uint32		ValidateNodeRecord; /* Validation of GUIDs in Node Record */
Packit 857059
	uint32		DumpInvalidNodeRecord; /* Full dump of any Invalid Node Records */
Packit 857059
	uint32		MinPktLifeTime; /* Minimum PathRecord.PktLifeTime to report, in ms */
Packit 857059
		/* maximum outstanding queries/operations */
Packit 857059
	uint32		MaxChildQuery;
Packit 857059
	uint32		MaxOutstanding;
Packit 857059
} SD_CONFIG_PARAMS;
Packit 857059
Packit 857059
#define SD_DEFAULT_CONFIG_PARAMS {	\
Packit 857059
	SD_DEFAULT_RETRY_INTERVAL, SD_DEFAULT_RETRY_COUNT, SD_DEFAULT_DEBUG_FLAGS, \
Packit 857059
	SD_DEFAULT_OPTION_FLAGS, \
Packit 857059
	SD_DEFAULT_TIME_INTERVAL, \
Packit 857059
	SD_DEFAULT_SA_BUSY_BACKOFF, \
Packit 857059
	SD_DEFAULT_VALIDATE_NODE_RECORD, \
Packit 857059
	SD_DEFAULT_DUMP_INVALID_NODE_RECORD, \
Packit 857059
	SD_DEFAULT_MIN_PKTLIFETIME, \
Packit 857059
	SD_DEFAULT_MAX_SUB_QUERY_QUEUED, \
Packit 857059
	SD_DEFAULT_MAX_SA_OUTSTANDING \
Packit 857059
	}
Packit 857059
Packit 857059
extern	SD_CONFIG_PARAMS	g_SdParams;
Packit 857059
Packit 857059
#if defined (__cplusplus)
Packit 857059
};
Packit 857059
#endif
Packit 857059
Packit 857059
#endif  /* _INSI_IB_SD_PARAMS_H_ */