mirror of
https://github.com/ceph/ceph
synced 2025-02-13 05:49:52 +00:00
git-svn-id: https://ceph.svn.sf.net/svnroot/ceph@2100 29311d96-e01e-0410-9327-a35deaab8ce9
18 lines
280 B
C
18 lines
280 B
C
#ifndef _FS_CEPH_MONMAP_H
|
|
#define _FS_CEPH_MONMAP_H
|
|
|
|
#include <linux/ceph_fs.h>
|
|
|
|
/*
|
|
* monitor map
|
|
*/
|
|
struct ceph_monmap {
|
|
__u64 epoch;
|
|
__u32 num_mon;
|
|
struct ceph_entity_inst *mon_inst;
|
|
};
|
|
|
|
extern int ceph_monmap_decode(struct ceph_monmap *m, void **p, void *end);
|
|
|
|
#endif
|