1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
|
/*
* Copyright (c) 2015-2017 Cray Inc. All rights reserved.
* Copyright (c) 2015 Los Alamos National Security, LLC. 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
* 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.
*/
/**
* @note The GNIX memory registration cache has the following properties:
* - Not thread safe
* - The hard registration limit includes the number of stale entries.
* Stale entries will be evicted to make room for new entries as
* the registration cache becomes full.
* - Allows multiplexing of libfabric memory registrations onto a
* single GNIX memory registration so long as the libfabric
* registration can be contained wholly within the GNIX memory
* registration.
* - Uses a LRU cache eviction scheme. This should reduce the overall
* calls to reg/dereg in the underlying layers when the user
* application consistently sends messages from the same buffers
* but continually registers and deregisters those regions. The
* LRU is implemented as a queue using a doubly linked list for
* fast removal/insertion. Note that this is an
* approximate LRU scheme, because the find function may
* return a larger entry in the stale tree.
* - By default, there is no limit to the number of 'inuse'
* registrations in the cache. This can be changed by passing
* in a set of attributes during _gnix_mr_cache_init.
* - By default, there is a limit of 128 stale entries in the cache.
* This is done to limit the amount of unused entries to retain.
* Some traffic patterns may burst traffic across a network,
* potentially leaving stale entries unused for long periods of
* time. Some stale entries may never be reused by an application.
* This value may also be changed by passing in a set of attributes
* during _gnix_mr_cache_init.
*
* The memory registration framework is based on the design of a two tree
* system for fast lookups. The first tree is a red-black tree for O(lg n)
* search times. The intent of the design is to minimize the
* number of occurrences where memory must be registered with the NIC.
*
* Registering a new region of memory with the NIC is computationally
* expensive. This can be avoided by caching registrations and reusing existing
* registrations. The caching portion is easy, since we can store the
* registrations in any form we choose, so long as there is a data structure
* that supports it. The minimization of registrations is actually difficult.
*
* The fastpath utilizes the red-black tree for O(lg n) search times where
* the user is attempting to register a memory region where there is already
* a pre-existing registration at the same base address. By searching for the
* base address, we can check the length of the registration to see if it can
* satisfy the address. If it can satisfy the request, we are done.
*
* The slowpath utilizes the same red-black tree for O(lg n) search times. The
* slowpath uses the result from the first search (fastpath) to decide whether
* a new registration must be made. If the entry couldn't subsume the
* registration request, then a new registration must be made. If a new
* registration has to be made, then it will be some portion of the found entry
* and potentially some other entries in the tree. Traverse the tree in a
* linear fashion until a non-overlapping entry is found, then remove all
* matching elements from the tree and mark them as retired. A new registration
* is made that covers the original request and all of the requests that were
* pruned from the tree. The result is a larger memory registration that covers
* the initial request and adjacent/overlapping registrations with the request.
*
* Pruning the elements from the tree allows us to maintain a smaller search
* space and fewer elements in the red-black tree, which in turn gives us fewer
* LRU evictions.
*
* A number of assumptions are being made:
* - When a lookup is being performed, no one else can modify the cache.
* - Since no one can modify the cache while a lookup is occurring, certain
* search criteria can be bypassed since we know a subsumable entry could
* not have existed if a later search method is called.
* - Since earlier methods could have found a registration but did not, then
* some insertion criteria can be assumed to decrease the amount of
* instructions necessary to create a new registration.
*/
#ifndef PROV_GNI_INCLUDE_GNIX_CACHE_H_
#define PROV_GNI_INCLUDE_GNIX_CACHE_H_
/* global includes */
#include "rbtree.h"
/* provider includes */
#include "gnix_util.h"
#include "gnix_smrn.h"
/* struct declarations */
struct _gnix_fi_reg_context {
uint64_t access;
uint64_t offset;
uint64_t requested_key;
uint64_t flags;
void *context;
struct gnix_auth_key *auth_key;
int reserved;
};
/**
* @brief gnix memory registration cache attributes
*
* @var soft_reg_limit unused currently, imposes a soft limit for which
* a flush can be called during register to
* drain any stale registrations
* @var hard_reg_limit limit to the number of memory registrations
* in the cache
* @var hard_stale_limit limit to the number of stale memory
* registrations in the cache. If the number is
* exceeded during deregistration,
* gnix_mr_cache_flush will be called to flush
* the stale entries.
* @var lazy_deregistration if non-zero, allows registrations to linger
* until the hard_stale_limit is exceeded. This
* prevents unnecessary re-registration of memory
* regions that may be reused frequently. Larger
* values for hard_stale_limit may reduce the
* frequency of flushes.
*/
typedef struct gnix_mr_cache_attr {
int soft_reg_limit;
int hard_reg_limit;
int hard_stale_limit;
int lazy_deregistration;
void *reg_context;
void *dereg_context;
void *destruct_context;
struct gnix_smrn *smrn;
void *(*reg_callback)(void *handle, void *address, size_t length,
struct _gnix_fi_reg_context *fi_reg_context,
void *context);
int (*dereg_callback)(void *handle, void *context);
int (*destruct_callback)(void *context);
int elem_size;
} gnix_mr_cache_attr_t;
extern gnix_mr_cache_attr_t __default_mr_cache_attr;
typedef enum {
GNIX_MRC_STATE_UNINITIALIZED = 0,
GNIX_MRC_STATE_READY,
GNIX_MRC_STATE_DEAD,
} gnix_mrc_state_e;
/**
* @brief gnix memory registration cache entry storage
*/
struct gnix_mrce_storage {
ofi_atomic32_t elements;
RbtHandle rb_tree;
};
/**
* @brief gnix memory registration cache object
*
* @var state state of the cache
* @var attr cache attributes, @see gnix_mr_cache_attr_t
* @var lru_head head of LRU eviction list
* @var inuse cache entry storage struct
* @var stale cache entry storage struct
* @var hits cache hits
* @var misses cache misses
*/
typedef struct gnix_mr_cache {
gnix_mrc_state_e state;
gnix_mr_cache_attr_t attr;
struct gnix_smrn_rq rq;
struct dlist_entry lru_head;
struct gnix_mrce_storage inuse;
struct gnix_mrce_storage stale;
uint64_t hits;
uint64_t misses;
} gnix_mr_cache_t;
/**
* @brief Destroys a gnix memory registration cache. Flushes stale memory
* registrations if the hard limit for stale registrations has been
* exceeded
*
* @param[in] cache a gnix memory registration cache
*
* @return FI_SUCCESS on success
* -FI_EINVAL if an invalid cache pointer has been passed
* into the function
* -FI_EAGAIN if the cache still contains memory
* registrations that have not yet been deregistered
*/
int _gnix_mr_cache_destroy(gnix_mr_cache_t *cache);
/**
* @brief Flushes stale memory registrations from a memory registration cache.
*
* @param[in] cache a gnix memory registration cache
*
* @return FI_SUCCESS on success
* -FI_EINVAL if an invalid cache pointer has been passed
* into the function
*/
int _gnix_mr_cache_flush(gnix_mr_cache_t *cache);
/**
* @brief Initializes the MR cache state
*
* @param[in,out] cache a gnix memory registration cache
* @param[in] attr cache attributes, @see gnix_mr_cache_attr_t
*
* @return FI_SUCCESS on success
* -FI_ENOMEM otherwise
*/
int _gnix_mr_cache_init(
gnix_mr_cache_t **cache,
gnix_mr_cache_attr_t *attr);
/**
* Function to register memory with the cache
*
* @param[in] cache gnix memory registration cache pointer
* @param[in] address base address of the memory region to be registered
* @param[in] length length of the memory region to be registered
* @param[in,out] handle memory handle pointer to written to and returned
*/
int _gnix_mr_cache_register(
gnix_mr_cache_t *cache,
uint64_t address,
uint64_t length,
struct _gnix_fi_reg_context *fi_reg_context,
void **handle);
/**
* Function to deregister memory in the cache
*
* @param[in] cache gnix memory registration cache pointer
* @param[in] mr gnix memory registration descriptor pointer
*
* @return FI_SUCCESS on success
* -FI_ENOENT if there isn't an active memory registration
* associated with the mr
* return codes for potential calls to callbacks
*/
int _gnix_mr_cache_deregister(
gnix_mr_cache_t *cache,
void *handle);
#endif /* PROV_GNI_INCLUDE_GNIX_CACHE_H_ */
|