fnctl: f_modown should call write_lock_irqsave/restore
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / net / rds / rdma.h
blob425512098b0bb59bad0f12bd2423cf620d34e1b3
1 #ifndef _RDS_RDMA_H
2 #define _RDS_RDMA_H
4 #include <linux/rbtree.h>
5 #include <linux/spinlock.h>
6 #include <linux/scatterlist.h>
8 #include "rds.h"
10 struct rds_mr {
11 struct rb_node r_rb_node;
12 atomic_t r_refcount;
13 u32 r_key;
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 */
31 #define RDS_MR_DEAD 0
33 struct rds_rdma_op {
34 u32 r_key;
35 u64 r_remote_addr;
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;
42 unsigned int r_bytes;
43 unsigned int r_nents;
44 unsigned int r_count;
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)
55 return cookie;
58 static inline u32 rds_rdma_cookie_offset(rds_rdma_cookie_t cookie)
60 return cookie >> 32;
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);
84 #endif