1 #ifndef _FS_CEPH_MON_CLIENT_H
2 #define _FS_CEPH_MON_CLIENT_H
4 #include <linux/completion.h>
5 #include <linux/rbtree.h>
11 struct ceph_mount_args
;
12 struct ceph_auth_client
;
15 * The monitor map enumerates the set of all monitors.
18 struct ceph_fsid fsid
;
21 struct ceph_entity_inst mon_inst
[0];
24 struct ceph_mon_client
;
25 struct ceph_mon_statfs_request
;
29 * Generic mechanism for resending monitor requests.
31 typedef void (*ceph_monc_request_func_t
)(struct ceph_mon_client
*monc
,
34 /* a pending monitor request */
35 struct ceph_mon_request
{
36 struct ceph_mon_client
*monc
;
37 struct delayed_work delayed_work
;
39 ceph_monc_request_func_t do_request
;
43 * statfs() is done a bit differently because we need to get data back
46 struct ceph_mon_statfs_request
{
50 struct ceph_statfs
*buf
;
51 struct completion completion
;
52 unsigned long last_attempt
, delay
; /* jiffies */
53 struct ceph_msg
*request
; /* original request */
56 struct ceph_mon_client
{
57 struct ceph_client
*client
;
58 struct ceph_monmap
*monmap
;
61 struct delayed_work delayed_work
;
63 struct ceph_auth_client
*auth
;
64 struct ceph_msg
*m_auth
;
68 int cur_mon
; /* last monitor i contacted */
69 unsigned long sub_sent
, sub_renew_after
;
70 struct ceph_connection
*con
;
74 struct ceph_msgpool msgpool_subscribe_ack
;
75 struct ceph_msgpool msgpool_statfs_reply
;
76 struct ceph_msgpool msgpool_auth_reply
;
78 /* pending statfs requests */
79 struct rb_root statfs_request_tree
;
80 int num_statfs_requests
;
84 int want_next_osdmap
; /* 1 = want, 2 = want+asked */
85 u32 have_osdmap
, have_mdsmap
;
87 #ifdef CONFIG_DEBUG_FS
88 struct dentry
*debugfs_file
;
92 extern struct ceph_monmap
*ceph_monmap_decode(void *p
, void *end
);
93 extern int ceph_monmap_contains(struct ceph_monmap
*m
,
94 struct ceph_entity_addr
*addr
);
96 extern int ceph_monc_init(struct ceph_mon_client
*monc
, struct ceph_client
*cl
);
97 extern void ceph_monc_stop(struct ceph_mon_client
*monc
);
100 * The model here is to indicate that we need a new map of at least
101 * epoch @want, and also call in when we receive a map. We will
102 * periodically rerequest the map from the monitor cluster until we
105 extern int ceph_monc_got_mdsmap(struct ceph_mon_client
*monc
, u32 have
);
106 extern int ceph_monc_got_osdmap(struct ceph_mon_client
*monc
, u32 have
);
108 extern void ceph_monc_request_next_osdmap(struct ceph_mon_client
*monc
);
110 extern int ceph_monc_do_statfs(struct ceph_mon_client
*monc
,
111 struct ceph_statfs
*buf
);
113 extern int ceph_monc_open_session(struct ceph_mon_client
*monc
);
115 extern int ceph_monc_validate_auth(struct ceph_mon_client
*monc
);