4 #include <linux/rbtree.h>
5 #include <linux/spinlock.h>
6 #include <linux/scatterlist.h>
11 struct rb_node r_rb_node
;
15 /* A copy of the creation flags */
16 unsigned int r_use_once
:1;
17 unsigned int r_invalidate
:1;
18 unsigned int r_write
:1;
20 /* This is for RDS_MR_DEAD.
21 * It would be nice & consistent to make this part of the above
22 * bit field here, but we need to use test_and_set_bit.
24 unsigned long r_state
;
25 struct rds_sock
*r_sock
; /* back pointer to the socket that owns us */
26 struct rds_transport
*r_trans
;
27 void *r_trans_private
;
30 /* Flags for mr->r_state */
36 unsigned int r_write
:1;
37 unsigned int r_fence
:1;
38 unsigned int r_notify
:1;
39 unsigned int r_recverr
:1;
40 unsigned int r_mapped
:1;
41 struct rds_notifier
*r_notifier
;
45 struct scatterlist r_sg
[0];
48 static inline rds_rdma_cookie_t
rds_rdma_make_cookie(u32 r_key
, u32 offset
)
50 return r_key
| (((u64
) offset
) << 32);
53 static inline u32
rds_rdma_cookie_key(rds_rdma_cookie_t cookie
)
58 static inline u32
rds_rdma_cookie_offset(rds_rdma_cookie_t cookie
)
63 int rds_get_mr(struct rds_sock
*rs
, char __user
*optval
, int optlen
);
64 int rds_free_mr(struct rds_sock
*rs
, char __user
*optval
, int optlen
);
65 void rds_rdma_drop_keys(struct rds_sock
*rs
);
66 int rds_cmsg_rdma_args(struct rds_sock
*rs
, struct rds_message
*rm
,
67 struct cmsghdr
*cmsg
);
68 int rds_cmsg_rdma_dest(struct rds_sock
*rs
, struct rds_message
*rm
,
69 struct cmsghdr
*cmsg
);
70 int rds_cmsg_rdma_args(struct rds_sock
*rs
, struct rds_message
*rm
,
71 struct cmsghdr
*cmsg
);
72 int rds_cmsg_rdma_map(struct rds_sock
*rs
, struct rds_message
*rm
,
73 struct cmsghdr
*cmsg
);
74 void rds_rdma_free_op(struct rds_rdma_op
*ro
);
75 void rds_rdma_send_complete(struct rds_message
*rm
, int);
77 extern void __rds_put_mr_final(struct rds_mr
*mr
);
78 static inline void rds_mr_put(struct rds_mr
*mr
)
80 if (atomic_dec_and_test(&mr
->r_refcount
))
81 __rds_put_mr_final(mr
);