ceph/branches/ebofs/kernel/monmap.h
sageweil dc48f25847 branch for ebofs changes
git-svn-id: https://ceph.svn.sf.net/svnroot/ceph@2100 29311d96-e01e-0410-9327-a35deaab8ce9
2007-11-21 00:32:00 +00:00

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