mirror of
https://github.com/ceph/ceph
synced 2025-02-15 06:48:22 +00:00
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
|