aboutsummaryrefslogtreecommitdiffstats
path: root/net/sunrpc/xprtrdma/xprt_rdma.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/sunrpc/xprtrdma/xprt_rdma.h')
-rw-r--r--net/sunrpc/xprtrdma/xprt_rdma.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/net/sunrpc/xprtrdma/xprt_rdma.h b/net/sunrpc/xprtrdma/xprt_rdma.h
index 2427822f8bd..05b7898e1f4 100644
--- a/net/sunrpc/xprtrdma/xprt_rdma.h
+++ b/net/sunrpc/xprtrdma/xprt_rdma.h
@@ -58,6 +58,8 @@ struct rpcrdma_ia {
58 struct rdma_cm_id *ri_id; 58 struct rdma_cm_id *ri_id;
59 struct ib_pd *ri_pd; 59 struct ib_pd *ri_pd;
60 struct ib_mr *ri_bind_mem; 60 struct ib_mr *ri_bind_mem;
61 u32 ri_dma_lkey;
62 int ri_have_dma_lkey;
61 struct completion ri_done; 63 struct completion ri_done;
62 int ri_async_rc; 64 int ri_async_rc;
63 enum rpcrdma_memreg ri_memreg_strategy; 65 enum rpcrdma_memreg ri_memreg_strategy;
@@ -156,6 +158,10 @@ struct rpcrdma_mr_seg { /* chunk descriptors */
156 union { 158 union {
157 struct ib_mw *mw; 159 struct ib_mw *mw;
158 struct ib_fmr *fmr; 160 struct ib_fmr *fmr;
161 struct {
162 struct ib_fast_reg_page_list *fr_pgl;
163 struct ib_mr *fr_mr;
164 } frmr;
159 } r; 165 } r;
160 struct list_head mw_list; 166 struct list_head mw_list;
161 } *rl_mw; 167 } *rl_mw;
@@ -198,7 +204,7 @@ struct rpcrdma_buffer {
198 atomic_t rb_credits; /* most recent server credits */ 204 atomic_t rb_credits; /* most recent server credits */
199 unsigned long rb_cwndscale; /* cached framework rpc_cwndscale */ 205 unsigned long rb_cwndscale; /* cached framework rpc_cwndscale */
200 int rb_max_requests;/* client max requests */ 206 int rb_max_requests;/* client max requests */
201 struct list_head rb_mws; /* optional memory windows/fmrs */ 207 struct list_head rb_mws; /* optional memory windows/fmrs/frmrs */
202 int rb_send_index; 208 int rb_send_index;
203 struct rpcrdma_req **rb_send_bufs; 209 struct rpcrdma_req **rb_send_bufs;
204 int rb_recv_index; 210 int rb_recv_index;