mirror of
https://github.com/ceph/ceph
synced 2025-03-04 23:40:07 +00:00
git-svn-id: https://ceph.svn.sf.net/svnroot/ceph@1958 29311d96-e01e-0410-9327-a35deaab8ce9
20 lines
352 B
C
20 lines
352 B
C
#ifndef _FS_CEPH_MONMAP_H
|
|
#define _FS_CEPH_MONMAP_H
|
|
|
|
#include <linux/uio.h>
|
|
|
|
/*
|
|
* monitor map
|
|
*/
|
|
struct ceph_monmap {
|
|
__u64 m_epoch;
|
|
__u32 m_num_mon;
|
|
__u32 m_last_mon;
|
|
struct ceph_entity_inst m_mon_inst;
|
|
};
|
|
|
|
extern int ceph_monmap_pick_mon(struct ceph_monmap *m);
|
|
extern int ceph_monmap_decode(struct ceph_monmap *m, struct kvec *v);
|
|
|
|
#endif
|