1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _FS_CEPH_MDSMAP_H
3 #define _FS_CEPH_MDSMAP_H
6 #include <linux/ceph/types.h>
9 * mds map - describe servers in the mds cluster.
11 * we limit fields to those the client actually xcares about
13 struct ceph_mds_info
{
15 struct ceph_entity_addr addr
;
17 int num_export_targets
;
23 u32 m_epoch
, m_client_epoch
, m_last_failure
;
25 u32 m_session_timeout
; /* seconds */
26 u32 m_session_autoclose
; /* seconds */
28 u32 m_max_mds
; /* size of m_addr, m_state arrays */
30 struct ceph_mds_info
*m_info
;
32 /* which object pools file data can be stored in */
33 int m_num_data_pg_pools
;
42 static inline struct ceph_entity_addr
*
43 ceph_mdsmap_get_addr(struct ceph_mdsmap
*m
, int w
)
45 if (w
>= m
->m_num_mds
)
47 return &m
->m_info
[w
].addr
;
50 static inline int ceph_mdsmap_get_state(struct ceph_mdsmap
*m
, int w
)
53 if (w
>= m
->m_num_mds
)
54 return CEPH_MDS_STATE_DNE
;
55 return m
->m_info
[w
].state
;
58 static inline bool ceph_mdsmap_is_laggy(struct ceph_mdsmap
*m
, int w
)
60 if (w
>= 0 && w
< m
->m_num_mds
)
61 return m
->m_info
[w
].laggy
;
65 extern int ceph_mdsmap_get_random_mds(struct ceph_mdsmap
*m
);
66 extern struct ceph_mdsmap
*ceph_mdsmap_decode(void **p
, void *end
);
67 extern void ceph_mdsmap_destroy(struct ceph_mdsmap
*m
);
68 extern bool ceph_mdsmap_is_cluster_available(struct ceph_mdsmap
*m
);