blob: 52a21e0d6dbc5c1a3dc924c5ff4718b84e3ff0c5 [file] [log] [blame]
Goldwyn Rodriguesedb39c92014-03-29 10:01:53 -05001
2
3#ifndef _MD_CLUSTER_H
4#define _MD_CLUSTER_H
5
6#include "md.h"
7
8struct mddev;
9
10struct md_cluster_operations {
Goldwyn Rodriguescf921cc2014-03-30 00:42:49 -050011 int (*join)(struct mddev *mddev, int nodes);
Goldwyn Rodriguesedb39c92014-03-29 10:01:53 -050012 int (*leave)(struct mddev *mddev);
Goldwyn Rodriguescf921cc2014-03-30 00:42:49 -050013 int (*slot_number)(struct mddev *mddev);
Goldwyn Rodriguesedb39c92014-03-29 10:01:53 -050014};
15
16#endif /* _MD_CLUSTER_H */