003 File Manager
Current Path:
/usr/include/infiniband/opensm
usr
/
include
/
infiniband
/
opensm
/
📁
..
📄
osm_attrib_req.h
(3.05 KB)
📄
osm_base.h
(24.34 KB)
📄
osm_config.h
(2.03 KB)
📄
osm_congestion_control.h
(4.03 KB)
📄
osm_console.h
(1.75 KB)
📄
osm_console_io.h
(3.02 KB)
📄
osm_db.h
(9.08 KB)
📄
osm_db_pack.h
(11.91 KB)
📄
osm_errors.h
(3.28 KB)
📄
osm_event_plugin.h
(6.08 KB)
📄
osm_file_ids.h
(4.11 KB)
📄
osm_guid.h
(2.16 KB)
📄
osm_helper.h
(19.39 KB)
📄
osm_inform.h
(6.37 KB)
📄
osm_lid_mgr.h
(6.53 KB)
📄
osm_log.h
(14.11 KB)
📄
osm_mad_pool.h
(8.82 KB)
📄
osm_madw.h
(23.17 KB)
📄
osm_mcast_mgr.h
(2.52 KB)
📄
osm_mcast_tbl.h
(10.22 KB)
📄
osm_mcm_port.h
(6.18 KB)
📄
osm_mesh.h
(2.56 KB)
📄
osm_msgdef.h
(4.47 KB)
📄
osm_mtree.h
(6.38 KB)
📄
osm_multicast.h
(9.89 KB)
📄
osm_node.h
(14.48 KB)
📄
osm_opensm.h
(15.86 KB)
📄
osm_partition.h
(6.19 KB)
📄
osm_path.h
(4.99 KB)
📄
osm_perfmgr.h
(7.92 KB)
📄
osm_perfmgr_db.h
(7.12 KB)
📄
osm_pkey.h
(15.96 KB)
📄
osm_port.h
(34.53 KB)
📄
osm_port_profile.h
(4.74 KB)
📄
osm_prefix_route.h
(2.2 KB)
📄
osm_qos_policy.h
(7.66 KB)
📄
osm_remote_sm.h
(4.88 KB)
📄
osm_router.h
(4.79 KB)
📄
osm_sa.h
(13.83 KB)
📄
osm_sa_mad_ctrl.h
(8.02 KB)
📄
osm_service.h
(4.66 KB)
📄
osm_sm.h
(17.84 KB)
📄
osm_sm_mad_ctrl.h
(7.54 KB)
📄
osm_stats.h
(4.92 KB)
📄
osm_subnet.h
(40.54 KB)
📄
osm_switch.h
(24.63 KB)
📄
osm_ucast_cache.h
(5.93 KB)
📄
osm_ucast_lash.h
(2.69 KB)
📄
osm_ucast_mgr.h
(7.11 KB)
📄
osm_version.h
(1.78 KB)
📄
osm_vl15intf.h
(8.96 KB)
📄
st.h
(3.21 KB)
Editing: osm_db_pack.h
/* * Copyright (c) 2004-2009 Voltaire, Inc. All rights reserved. * Copyright (c) 2002-2005 Mellanox Technologies LTD. All rights reserved. * Copyright (c) 1996-2003 Intel Corporation. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ /****h* OpenSM/DB-Pack * NAME * Database Types * * DESCRIPTION * This module provides packing and unpacking of the database * storage into specific types. * * The following domains/conversions are supported: * guid2lid - key is a guid and data is a lid. * * AUTHOR * Eitan Zahavi, Mellanox Technologies LTD * *********/ #ifndef _OSM_DB_PACK_H_ #define _OSM_DB_PACK_H_ #include <opensm/osm_db.h> #ifdef __cplusplus # define BEGIN_C_DECLS extern "C" { # define END_C_DECLS } #else /* !__cplusplus */ # define BEGIN_C_DECLS # define END_C_DECLS #endif /* __cplusplus */ BEGIN_C_DECLS /****f* OpenSM: DB-Pack/osm_db_guid2lid_init * NAME * osm_db_guid2lid_init * * DESCRIPTION * Initialize a domain for the guid2lid table * * SYNOPSIS */ static inline osm_db_domain_t *osm_db_guid2lid_init(IN osm_db_t * p_db) { return (osm_db_domain_init(p_db, "guid2lid")); } /* * PARAMETERS * p_db * [in] Pointer to the database object to construct * * RETURN VALUES * The pointer to the new allocated domain object or NULL. * * NOTE: DB domains are destroyed by the osm_db_destroy * * SEE ALSO * Database, osm_db_init, osm_db_destroy *********/ /****f* OpenSM: DB-Pack/osm_db_guid2lid_init * NAME * osm_db_guid2lid_init * * DESCRIPTION * Initialize a domain for the guid2lid table * * SYNOPSIS */ typedef struct osm_db_guid_elem { cl_list_item_t item; uint64_t guid; } osm_db_guid_elem_t; /* * FIELDS * item * required for list manipulations * * guid * ************/ /****f* OpenSM: DB-Pack/osm_db_guid2lid_guids * NAME * osm_db_guid2lid_guids * * DESCRIPTION * Provides back a list of guid elements. * * SYNOPSIS */ int osm_db_guid2lid_guids(IN osm_db_domain_t * p_g2l, OUT cl_qlist_t * p_guid_list); /* * PARAMETERS * p_g2l * [in] Pointer to the guid2lid domain * * p_guid_list * [out] A quick list of guid elements of type osm_db_guid_elem_t * * RETURN VALUES * 0 if successful * * NOTE: the output qlist should be initialized and each item freed * by the caller, then destroyed. * * SEE ALSO * osm_db_guid2lid_init, osm_db_guid2lid_guids, osm_db_guid2lid_get * osm_db_guid2lid_set, osm_db_guid2lid_delete *********/ /****f* OpenSM: DB-Pack/osm_db_guid2lid_get * NAME * osm_db_guid2lid_get * * DESCRIPTION * Get a lid range by given guid. * * SYNOPSIS */ int osm_db_guid2lid_get(IN osm_db_domain_t * p_g2l, IN uint64_t guid, OUT uint16_t * p_min_lid, OUT uint16_t * p_max_lid); /* * PARAMETERS * p_g2l * [in] Pointer to the guid2lid domain * * guid * [in] The guid to look for * * p_min_lid * [out] Pointer to the resulting min lid in host order. * * p_max_lid * [out] Pointer to the resulting max lid in host order. * * RETURN VALUES * 0 if successful. The lid will be set to 0 if not found. * * SEE ALSO * osm_db_guid2lid_init, osm_db_guid2lid_guids * osm_db_guid2lid_set, osm_db_guid2lid_delete *********/ /****f* OpenSM: DB-Pack/osm_db_guid2lid_set * NAME * osm_db_guid2lid_set * * DESCRIPTION * Set a lid range for the given guid. * * SYNOPSIS */ int osm_db_guid2lid_set(IN osm_db_domain_t * p_g2l, IN uint64_t guid, IN uint16_t min_lid, IN uint16_t max_lid); /* * PARAMETERS * p_g2l * [in] Pointer to the guid2lid domain * * guid * [in] The guid to look for * * min_lid * [in] The min lid value to set * * max_lid * [in] The max lid value to set * * RETURN VALUES * 0 if successful * * SEE ALSO * osm_db_guid2lid_init, osm_db_guid2lid_guids * osm_db_guid2lid_get, osm_db_guid2lid_delete *********/ /****f* OpenSM: DB-Pack/osm_db_guid2lid_delete * NAME * osm_db_guid2lid_delete * * DESCRIPTION * Delete the entry by the given guid * * SYNOPSIS */ int osm_db_guid2lid_delete(IN osm_db_domain_t * p_g2l, IN uint64_t guid); /* * PARAMETERS * p_g2l * [in] Pointer to the guid2lid domain * * guid * [in] The guid to look for * * RETURN VALUES * 0 if successful otherwise 1 * * SEE ALSO * osm_db_guid2lid_init, osm_db_guid2lid_guids * osm_db_guid2lid_get, osm_db_guid2lid_set *********/ /****f* OpenSM: DB-Pack/osm_db_guid2mkey_init * NAME * osm_db_guid2mkey_init * * DESCRIPTION * Initialize a domain for the guid2mkey table * * SYNOPSIS */ static inline osm_db_domain_t *osm_db_guid2mkey_init(IN osm_db_t * p_db) { return osm_db_domain_init(p_db, "guid2mkey"); } /* * PARAMETERS * p_db * [in] Pointer to the database object to construct * * RETURN VALUES * The pointer to the new allocated domain object or NULL. * * NOTE: DB domains are destroyed by the osm_db_destroy * * SEE ALSO * Database, osm_db_init, osm_db_destroy *********/ /****f* OpenSM: DB-Pack/osm_db_guid2mkey_guids * NAME * osm_db_guid2mkey_guids * * DESCRIPTION * Provides back a list of guid elements. * * SYNOPSIS */ int osm_db_guid2mkey_guids(IN osm_db_domain_t * p_g2m, OUT cl_qlist_t * p_guid_list); /* * PARAMETERS * p_g2l * [in] Pointer to the guid2mkey domain * * p_guid_list * [out] A quick list of guid elements of type osm_db_guid_elem_t * * RETURN VALUES * 0 if successful * * NOTE: the output qlist should be initialized and each item freed * by the caller, then destroyed. * * SEE ALSO * osm_db_guid2mkey_init, osm_db_guid2mkey_guids, osm_db_guid2mkey_get * osm_db_guid2mkey_set, osm_db_guid2mkey_delete *********/ /****f* OpenSM: DB-Pack/osm_db_guid2mkey_get * NAME * osm_db_guid2mkey_get * * DESCRIPTION * Get the mkey for the given guid. * * SYNOPSIS */ int osm_db_guid2mkey_get(IN osm_db_domain_t * p_g2m, IN uint64_t guid, OUT uint64_t * p_mkey); /* * PARAMETERS * p_g2m * [in] Pointer to the guid2mkey domain * * guid * [in] The guid to look for * * p_mkey * [out] Pointer to the resulting mkey in host order. * * RETURN VALUES * 0 if successful. The lid will be set to 0 if not found. * * SEE ALSO * osm_db_guid2mkey_init, osm_db_guid2mkey_guids * osm_db_guid2mkey_set, osm_db_guid2mkey_delete *********/ /****f* OpenSM: DB-Pack/osm_db_guid2mkey_set * NAME * osm_db_guid2mkey_set * * DESCRIPTION * Set the mkey for the given guid. * * SYNOPSIS */ int osm_db_guid2mkey_set(IN osm_db_domain_t * p_g2m, IN uint64_t guid, IN uint64_t mkey); /* * PARAMETERS * p_g2m * [in] Pointer to the guid2mkey domain * * guid * [in] The guid to look for * * mkey * [in] The mkey value to set, in host order * * RETURN VALUES * 0 if successful * * SEE ALSO * osm_db_guid2mkey_init, osm_db_guid2mkey_guids * osm_db_guid2mkey_get, osm_db_guid2mkey_delete *********/ /****f* OpenSM: DB-Pack/osm_db_guid2mkey_delete * NAME * osm_db_guid2mkey_delete * * DESCRIPTION * Delete the entry by the given guid * * SYNOPSIS */ int osm_db_guid2mkey_delete(IN osm_db_domain_t * p_g2m, IN uint64_t guid); /* * PARAMETERS * p_g2m * [in] Pointer to the guid2mkey domain * * guid * [in] The guid to look for * * RETURN VALUES * 0 if successful otherwise 1 * * SEE ALSO * osm_db_guid2mkey_init, osm_db_guid2mkey_guids * osm_db_guid2mkey_get, osm_db_guid2mkey_set *********/ /****f* OpenSM: DB-Pack/osm_db_neighbor_init * NAME * osm_db_neighbor_init * * DESCRIPTION * Initialize a domain for the neighbors table * * SYNOPSIS */ static inline osm_db_domain_t *osm_db_neighbor_init(IN osm_db_t * p_db) { return osm_db_domain_init(p_db, "neighbors"); } /* * PARAMETERS * p_db * [in] Pointer to the database object to construct * * RETURN VALUES * The pointer to the new allocated domain object or NULL. * * NOTE: DB domains are destroyed by the osm_db_destroy * * SEE ALSO * Database, osm_db_init, osm_db_destroy *********/ /****f* OpenSM: DB-Pack/osm_db_neighbor_elem * NAME * osm_db_neighbor_elem * * DESCRIPTION * Initialize a domain for the neighbor table * * SYNOPSIS */ typedef struct osm_db_neighbor_elem { cl_list_item_t item; uint64_t guid; uint8_t portnum; } osm_db_neighbor_elem_t; /* * FIELDS * item * required for list manipulations * * guid * portnum * ************/ /****f* OpenSM: DB-Pack/osm_db_neighbor_guids * NAME * osm_db_neighbor_guids * * DESCRIPTION * Provides back a list of neighbor elements. * * SYNOPSIS */ int osm_db_neighbor_guids(IN osm_db_domain_t * p_neighbor, OUT cl_qlist_t * p_guid_list); /* * PARAMETERS * p_neighbor * [in] Pointer to the neighbor domain * * p_guid_list * [out] A quick list of neighbor elements of type osm_db_neighbor_elem_t * * RETURN VALUES * 0 if successful * * NOTE: the output qlist should be initialized and each item freed * by the caller, then destroyed. * * SEE ALSO * osm_db_neighbor_init, osm_db_neighbor_guids, osm_db_neighbor_get * osm_db_neighbor_set, osm_db_neighbor_delete *********/ /****f* OpenSM: DB-Pack/osm_db_neighbor_get * NAME * osm_db_neighbor_get * * DESCRIPTION * Get a neighbor's guid by given guid/port. * * SYNOPSIS */ int osm_db_neighbor_get(IN osm_db_domain_t * p_neighbor, IN uint64_t guid1, IN uint8_t port1, OUT uint64_t * p_guid2, OUT uint8_t * p_port2); /* * PARAMETERS * p_neighbor * [in] Pointer to the neighbor domain * * guid1 * [in] The guid to look for * * port1 * [in] The port to look for * * p_guid2 * [out] Pointer to the resulting guid of the neighboring port. * * p_port2 * [out] Pointer to the resulting port of the neighboring port. * * RETURN VALUES * 0 if successful. The lid will be set to 0 if not found. * * SEE ALSO * osm_db_neighbor_init, osm_db_neighbor_guids * osm_db_neighbor_set, osm_db_neighbor_delete *********/ /****f* OpenSM: DB-Pack/osm_db_neighbor_set * NAME * osm_db_neighbor_set * * DESCRIPTION * Set up a relationship between two ports * * SYNOPSIS */ int osm_db_neighbor_set(IN osm_db_domain_t * p_neighbor, IN uint64_t guid1, IN uint8_t port1, IN uint64_t guid2, IN uint8_t port2); /* * PARAMETERS * p_neighbor * [in] Pointer to the neighbor domain * * guid1 * [in] The first guid in the relationship * * port1 * [in] The first port in the relationship * * guid2 * [in] The second guid in the relationship * * port2 * [in] The second port in the relationship * * RETURN VALUES * 0 if successful * * SEE ALSO * osm_db_neighbor_init, osm_db_neighbor_guids * osm_db_neighbor_get, osm_db_neighbor_delete *********/ /****f* OpenSM: DB-Pack/osm_db_neighbor_delete * NAME * osm_db_neighbor_delete * * DESCRIPTION * Delete the relationship between two ports * * SYNOPSIS */ int osm_db_neighbor_delete(IN osm_db_domain_t * p_neighbor, IN uint64_t guid, IN uint8_t port); /* * PARAMETERS * p_neighbor * [in] Pointer to the neighbor domain * * guid * [in] The guid to look for * * port * [in] The port to look for * * RETURN VALUES * 0 if successful otherwise 1 * * SEE ALSO * osm_db_neighbor_init, osm_db_neighbor_guids * osm_db_neighbor_get, osm_db_neighbor_set *********/ END_C_DECLS #endif /* _OSM_DB_PACK_H_ */
Upload File
Create Folder