aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/raid/md_k.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/raid/md_k.h')
-rw-r--r--include/linux/raid/md_k.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/raid/md_k.h b/include/linux/raid/md_k.h
index c9a0d4013be7..d92db54255a3 100644
--- a/include/linux/raid/md_k.h
+++ b/include/linux/raid/md_k.h
@@ -15,6 +15,9 @@
15#ifndef _MD_K_H 15#ifndef _MD_K_H
16#define _MD_K_H 16#define _MD_K_H
17 17
18/* and dm-bio-list.h is not under include/linux because.... ??? */
19#include "../../../drivers/md/dm-bio-list.h"
20
18#define MD_RESERVED 0UL 21#define MD_RESERVED 0UL
19#define LINEAR 1UL 22#define LINEAR 1UL
20#define RAID0 2UL 23#define RAID0 2UL
@@ -252,6 +255,10 @@ struct mddev_s
252 atomic_t recovery_active; /* blocks scheduled, but not written */ 255 atomic_t recovery_active; /* blocks scheduled, but not written */
253 wait_queue_head_t recovery_wait; 256 wait_queue_head_t recovery_wait;
254 sector_t recovery_cp; 257 sector_t recovery_cp;
258
259 spinlock_t write_lock;
260 struct bio_list write_list;
261
255 unsigned int safemode; /* if set, update "clean" superblock 262 unsigned int safemode; /* if set, update "clean" superblock
256 * when no writes pending. 263 * when no writes pending.
257 */ 264 */