]> git.ipfire.org Git - thirdparty/mdadm.git/blame - mdmon.h
Correctly set resync_start when creating an array.
[thirdparty/mdadm.git] / mdmon.h
CommitLineData
549e9569
NB
1
2enum array_state { clear, inactive, suspended, readonly, read_auto,
3 clean, active, write_pending, active_idle, bad_word};
4
5enum sync_action { idle, reshape, resync, recover, check, repair, bad_action };
6
7
8struct active_array {
9 struct mdinfo info;
10 struct supertype *container;
11 struct active_array *next, *replaces;
12
13 int action_fd;
c052ba30 14 int resync_start_fd;
549e9569
NB
15
16 enum array_state prev_state, curr_state, next_state;
17 enum sync_action prev_action, curr_action, next_action;
18
19 int devnum;
20
c052ba30 21 unsigned long long resync_start;
549e9569
NB
22};
23
2e735d19
NB
24/*
25 * Metadata updates are handled by the monitor thread,
26 * as it has exclusive access to the metadata.
27 * When the manager want to updates metadata, either
28 * for it's own reason (e.g. committing a spare) or
29 * on behalf of mdadm, it creates a metadata_update
30 * structure and queues it to the monitor.
31 * Updates are created and processed by code under the
32 * superswitch. All common code sees them as opaque
33 * blobs.
34 */
35struct metadata_update {
36 int len;
37 char *buf;
38 void *space; /* allocated space that monitor will use */
39 struct metadata_update *next;
40};
41extern struct metadata_update *update_queue, *update_queue_handled;
549e9569
NB
42
43#define MD_MAJOR 9
44
45extern struct active_array *container;
549e9569
NB
46extern struct active_array *discard_this;
47extern struct active_array *pending_discard;
3e70c845 48extern struct md_generic_cmd *active_cmd;
549e9569
NB
49
50
e0d6609f 51void remove_pidfile(char *devname);
549e9569
NB
52void do_monitor(struct supertype *container);
53void do_manager(struct supertype *container);
54
55int read_dev_state(int fd);
56
57struct mdstat_ent *mdstat_read(int hold, int start);
58
59extern struct superswitch super_ddf, super_ddf_bvd, super_ddf_svd;
e0d6609f
NB
60
61extern int exit_now, manager_ready;