]> git.ipfire.org Git - thirdparty/mdadm.git/blame - mdmon.h
imsm: fix mpb_size calculation in write_super_imsm
[thirdparty/mdadm.git] / mdmon.h
CommitLineData
549e9569
NB
1enum array_state { clear, inactive, suspended, readonly, read_auto,
2 clean, active, write_pending, active_idle, bad_word};
3
4enum sync_action { idle, reshape, resync, recover, check, repair, bad_action };
5
6
7struct active_array {
8 struct mdinfo info;
9 struct supertype *container;
10 struct active_array *next, *replaces;
11
12 int action_fd;
c052ba30 13 int resync_start_fd;
e9dd1598 14 int metadata_fd; /* for monitoring rw/ro status */
549e9569
NB
15
16 enum array_state prev_state, curr_state, next_state;
17 enum sync_action prev_action, curr_action, next_action;
18
6c3fb95c
NB
19 int check_degraded; /* flag set by mon, read by manage */
20
549e9569
NB
21 int devnum;
22
c052ba30 23 unsigned long long resync_start;
549e9569
NB
24};
25
2e735d19
NB
26/*
27 * Metadata updates are handled by the monitor thread,
28 * as it has exclusive access to the metadata.
29 * When the manager want to updates metadata, either
30 * for it's own reason (e.g. committing a spare) or
31 * on behalf of mdadm, it creates a metadata_update
32 * structure and queues it to the monitor.
33 * Updates are created and processed by code under the
34 * superswitch. All common code sees them as opaque
35 * blobs.
36 */
2e735d19 37extern struct metadata_update *update_queue, *update_queue_handled;
549e9569
NB
38
39#define MD_MAJOR 9
40
41extern struct active_array *container;
549e9569
NB
42extern struct active_array *discard_this;
43extern struct active_array *pending_discard;
3e70c845 44extern struct md_generic_cmd *active_cmd;
549e9569
NB
45
46
e0d6609f 47void remove_pidfile(char *devname);
549e9569
NB
48void do_monitor(struct supertype *container);
49void do_manager(struct supertype *container);
295646b3
DW
50int make_control_sock(char *devname);
51int make_pidfile(char *devname, int o_excl);
52extern int socket_hup_requested;
549e9569
NB
53
54int read_dev_state(int fd);
103f2410 55int get_resync_start(struct active_array *a);
549e9569
NB
56
57struct mdstat_ent *mdstat_read(int hold, int start);
58
e0d6609f 59extern int exit_now, manager_ready;
4d43913c 60extern int mon_tid, mgr_tid;
1eb252b8 61extern int monitor_loop_cnt;
593add1b
DW
62
63/* helper routine to determine resync completion since MaxSector is a
64 * moving target
65 */
66static inline int is_resync_complete(struct active_array *a)
67{
68 if (a->resync_start >= a->info.component_size)
69 return 1;
70 return 0;
71}
72