23 lines
650 B
C
23 lines
650 B
C
|
/*
|
||
|
* Copyright (c) 2015 Oracle. All rights reserved.
|
||
|
* Copyright (c) 2003-2007 Network Appliance, Inc. All rights reserved.
|
||
|
*/
|
||
|
|
||
|
/* Lightweight memory registration using Fast Registration Work
|
||
|
* Requests (FRWR). Also referred to sometimes as FRMR mode.
|
||
|
*
|
||
|
* FRWR features ordered asynchronous registration and deregistration
|
||
|
* of arbitrarily sized memory regions. This is the fastest and safest
|
||
|
* but most complex memory registration mode.
|
||
|
*/
|
||
|
|
||
|
#include "xprt_rdma.h"
|
||
|
|
||
|
#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
|
||
|
# define RPCDBG_FACILITY RPCDBG_TRANS
|
||
|
#endif
|
||
|
|
||
|
const struct rpcrdma_memreg_ops rpcrdma_frwr_memreg_ops = {
|
||
|
.ro_displayname = "frwr",
|
||
|
};
|