Blame view

drivers/md/md-bitmap.h 10 KB
b24413180   Greg Kroah-Hartman   License cleanup: ...
1
  /* SPDX-License-Identifier: GPL-2.0 */
32a7627cf   NeilBrown   [PATCH] md: optim...
2
3
4
5
6
7
8
  /*
   * bitmap.h: Copyright (C) Peter T. Breuer (ptb@ot.uc3m.es) 2003
   *
   * additions: Copyright (C) 2003-2004, Paul Clements, SteelEye Technology, Inc.
   */
  #ifndef BITMAP_H
  #define BITMAP_H 1
bd926c63b   NeilBrown   [PATCH] md: make ...
9
10
11
  #define BITMAP_MAJOR_LO 3
  /* version 4 insists the bitmap is in little-endian order
   * with version 3, it is host-endian which is non-portable
3c462c880   Goldwyn Rodrigues   md: Increment ver...
12
   * Version 5 is currently set only for clustered devices
bd926c63b   NeilBrown   [PATCH] md: make ...
13
14
   */
  #define BITMAP_MAJOR_HI 4
3c462c880   Goldwyn Rodrigues   md: Increment ver...
15
  #define BITMAP_MAJOR_CLUSTERED 5
bd926c63b   NeilBrown   [PATCH] md: make ...
16
  #define	BITMAP_MAJOR_HOSTENDIAN 3
32a7627cf   NeilBrown   [PATCH] md: optim...
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
  /*
   * in-memory bitmap:
   *
   * Use 16 bit block counters to track pending writes to each "chunk".
   * The 2 high order bits are special-purpose, the first is a flag indicating
   * whether a resync is needed.  The second is a flag indicating whether a
   * resync is active.
   * This means that the counter is actually 14 bits:
   *
   * +--------+--------+------------------------------------------------+
   * | resync | resync |               counter                          |
   * | needed | active |                                                |
   * |  (0-1) |  (0-1) |              (0-16383)                         |
   * +--------+--------+------------------------------------------------+
   *
   * The "resync needed" bit is set when:
   *    a '1' bit is read from storage at startup.
   *    a write request fails on some drives
   *    a resync is aborted on a chunk with 'resync active' set
   * It is cleared (and resync-active set) when a resync starts across all drives
   * of the chunk.
   *
   *
   * The "resync active" bit is set when:
   *    a resync is started on all drives, and resync_needed is set.
   *       resync_needed will be cleared (as long as resync_active wasn't already set).
   * It is cleared when a resync completes.
   *
   * The counter counts pending write requests, plus the on-disk bit.
   * When the counter is '1' and the resync bits are clear, the on-disk
25985edce   Lucas De Marchi   Fix common misspe...
47
   * bit can be cleared as well, thus setting the counter to 0.
32a7627cf   NeilBrown   [PATCH] md: optim...
48
49
50
   * When we set a bit, or in the counter (to start a write), if the fields is
   * 0, we first set the disk bit and set the counter to 1.
   *
d85326cf8   Guoqing Jiang   md: fix typos for...
51
52
   * If the counter is 0, the on-disk bit is clear and the stripe is clean
   * Anything that dirties the stripe pushes the counter to 2 (at least)
32a7627cf   NeilBrown   [PATCH] md: optim...
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
   * and sets the on-disk bit (lazily).
   * If a periodic sweep find the counter at 2, it is decremented to 1.
   * If the sweep find the counter at 1, the on-disk bit is cleared and the
   * counter goes to zero.
   *
   * Also, we'll hijack the "map" pointer itself and use it as two 16 bit block
   * counters as a fallback when "page" memory cannot be allocated:
   *
   * Normal case (page memory allocated):
   *
   *     page pointer (32-bit)
   *
   *     [ ] ------+
   *               |
   *               +-------> [   ][   ]..[   ] (4096 byte page == 2048 counters)
   *                          c1   c2    c2048
   *
   * Hijacked case (page memory allocation failed):
   *
   *     hijacked page pointer (32-bit)
   *
   *     [		  ][		  ] (no page memory allocated)
   *      counter #1 (16-bit) counter #2 (16-bit)
   *
   */
  
  #ifdef __KERNEL__
  
  #define PAGE_BITS (PAGE_SIZE << 3)
  #define PAGE_BIT_SHIFT (PAGE_SHIFT + 3)
  
  typedef __u16 bitmap_counter_t;
  #define COUNTER_BITS 16
  #define COUNTER_BIT_SHIFT 4
32a7627cf   NeilBrown   [PATCH] md: optim...
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
  #define COUNTER_BYTE_SHIFT (COUNTER_BIT_SHIFT - 3)
  
  #define NEEDED_MASK ((bitmap_counter_t) (1 << (COUNTER_BITS - 1)))
  #define RESYNC_MASK ((bitmap_counter_t) (1 << (COUNTER_BITS - 2)))
  #define COUNTER_MAX ((bitmap_counter_t) RESYNC_MASK - 1)
  #define NEEDED(x) (((bitmap_counter_t) x) & NEEDED_MASK)
  #define RESYNC(x) (((bitmap_counter_t) x) & RESYNC_MASK)
  #define COUNTER(x) (((bitmap_counter_t) x) & COUNTER_MAX)
  
  /* how many counters per page? */
  #define PAGE_COUNTER_RATIO (PAGE_BITS / COUNTER_BITS)
  /* same, except a shift value for more efficient bitops */
  #define PAGE_COUNTER_SHIFT (PAGE_BIT_SHIFT - COUNTER_BIT_SHIFT)
  /* same, except a mask value for more efficient bitops */
  #define PAGE_COUNTER_MASK  (PAGE_COUNTER_RATIO - 1)
32a7627cf   NeilBrown   [PATCH] md: optim...
102
  #define BITMAP_BLOCK_SHIFT 9
32a7627cf   NeilBrown   [PATCH] md: optim...
103
104
105
106
107
108
109
110
111
112
  #endif
  
  /*
   * bitmap structures:
   */
  
  #define BITMAP_MAGIC 0x6d746962
  
  /* use these for bitmap->flags and bitmap->sb->state bit-fields */
  enum bitmap_state {
b405fe91e   NeilBrown   md/bitmap: use se...
113
114
115
  	BITMAP_STALE	   = 1,  /* the bitmap file is out of date or had -EIO */
  	BITMAP_WRITE_ERROR = 2, /* A write error has occurred */
  	BITMAP_HOSTENDIAN  =15,
32a7627cf   NeilBrown   [PATCH] md: optim...
116
117
118
119
  };
  
  /* the superblock at the front of the bitmap file -- little endian */
  typedef struct bitmap_super_s {
4f2e639af   NeilBrown   [PATCH] md: endia...
120
121
122
123
124
125
126
127
128
129
  	__le32 magic;        /*  0  BITMAP_MAGIC */
  	__le32 version;      /*  4  the bitmap major for now, could change... */
  	__u8  uuid[16];      /*  8  128 bit uuid - must match md device uuid */
  	__le64 events;       /* 24  event counter for the bitmap (1)*/
  	__le64 events_cleared;/*32  event counter when last bit cleared (2) */
  	__le64 sync_size;    /* 40  the size of the md device's sync range(3) */
  	__le32 state;        /* 48  bitmap state information */
  	__le32 chunksize;    /* 52  the bitmap chunk size in bytes */
  	__le32 daemon_sleep; /* 56  seconds between disk flushes */
  	__le32 write_behind; /* 60  number of outstanding write-behind writes */
1dff2b87a   NeilBrown   md/bitmap: record...
130
131
  	__le32 sectors_reserved; /* 64 number of 512-byte sectors that are
  				  * reserved for the bitmap. */
183bdf510   Goldwyn Rodrigues   Add number of nod...
132
  	__le32 nodes;        /* 68 the maximum number of nodes in cluster. */
cf921cc19   Goldwyn Rodrigues   Add node recovery...
133
134
  	__u8 cluster_name[64]; /* 72 cluster name to which this md belongs */
  	__u8  pad[256 - 136]; /* set to zero */
32a7627cf   NeilBrown   [PATCH] md: optim...
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
  } bitmap_super_t;
  
  /* notes:
   * (1) This event counter is updated before the eventcounter in the md superblock
   *    When a bitmap is loaded, it is only accepted if this event counter is equal
   *    to, or one greater than, the event counter in the superblock.
   * (2) This event counter is updated when the other one is *if*and*only*if* the
   *    array is not degraded.  As bits are not cleared when the array is degraded,
   *    this represents the last time that any bits were cleared.
   *    If a device is being added that has an event count with this value or
   *    higher, it is accepted as conforming to the bitmap.
   * (3)This is the number of sectors represented by the bitmap, and is the range that
   *    resync happens across.  For raid1 and raid5/6 it is the size of individual
   *    devices.  For raid10 it is the size of the array.
   */
  
  #ifdef __KERNEL__
  
  /* the in-memory bitmap is represented by bitmap_pages */
  struct bitmap_page {
  	/*
  	 * map points to the actual memory page
  	 */
  	char *map;
  	/*
  	 * in emergencies (when map cannot be alloced), hijack the map
  	 * pointer and use it as two counters itself
  	 */
  	unsigned int hijacked:1;
  	/*
bf07bb7d5   NeilBrown   md/bitmap: disent...
165
166
167
168
169
  	 * If any counter in this page is '1' or '2' - and so could be
  	 * cleared then that page is marked as 'pending'
  	 */
  	unsigned int pending:1;
  	/*
32a7627cf   NeilBrown   [PATCH] md: optim...
170
171
  	 * count of dirty bits on the page
  	 */
bf07bb7d5   NeilBrown   md/bitmap: disent...
172
  	unsigned int  count:30;
32a7627cf   NeilBrown   [PATCH] md: optim...
173
  };
32a7627cf   NeilBrown   [PATCH] md: optim...
174
175
  /* the main bitmap structure - one per mddev */
  struct bitmap {
32a7627cf   NeilBrown   [PATCH] md: optim...
176

40cffcc0e   NeilBrown   md/bitmap: create...
177
178
179
180
181
182
183
184
185
186
187
188
  	struct bitmap_counts {
  		spinlock_t lock;
  		struct bitmap_page *bp;
  		unsigned long pages;		/* total number of pages
  						 * in the bitmap */
  		unsigned long missing_pages;	/* number of pages
  						 * not yet allocated */
  		unsigned long chunkshift;	/* chunksize = 2^chunkshift
  						 * (for bitops) */
  		unsigned long chunks;		/* Total number of data
  						 * chunks for the array */
  	} counts;
32a7627cf   NeilBrown   [PATCH] md: optim...
189

40cffcc0e   NeilBrown   md/bitmap: create...
190
  	struct mddev *mddev; /* the md device that the bitmap is for */
32a7627cf   NeilBrown   [PATCH] md: optim...
191

32a7627cf   NeilBrown   [PATCH] md: optim...
192
  	__u64	events_cleared;
a0da84f35   Neil Brown   Improve setting o...
193
  	int need_sync;
32a7627cf   NeilBrown   [PATCH] md: optim...
194

1ec885cdd   NeilBrown   md/bitmap: move s...
195
196
197
198
199
200
201
202
203
  	struct bitmap_storage {
  		struct file *file;		/* backing disk file */
  		struct page *sb_page;		/* cached copy of the bitmap
  						 * file superblock */
  		struct page **filemap;		/* list of cache pages for
  						 * the file */
  		unsigned long *filemap_attr;	/* attributes associated
  						 * w/ filemap pages */
  		unsigned long file_pages;	/* number of pages in the file*/
9b1215c10   NeilBrown   md/bitmap: store ...
204
  		unsigned long bytes;		/* total bytes in the bitmap */
1ec885cdd   NeilBrown   md/bitmap: move s...
205
  	} storage;
32a7627cf   NeilBrown   [PATCH] md: optim...
206
207
  
  	unsigned long flags;
8311c29d4   NeilBrown   md: reduce CPU wa...
208
  	int allclean;
4b6d287f6   NeilBrown   [PATCH] md: add w...
209
  	atomic_t behind_writes;
696fcd535   Paul Clements   md: expose max va...
210
  	unsigned long behind_writes_used; /* highest actual value at runtime */
4b6d287f6   NeilBrown   [PATCH] md: add w...
211

32a7627cf   NeilBrown   [PATCH] md: optim...
212
213
214
215
216
  	/*
  	 * the bitmap daemon - periodically wakes up and sweeps the bitmap
  	 * file, cleaning up bits and flushing out pages to disk as necessary
  	 */
  	unsigned long daemon_lastrun; /* jiffies of last run */
b47490c9b   NeilBrown   md: Update md bit...
217
218
  	unsigned long last_end_sync; /* when we lasted called end_sync to
  				      * update bitmap with resync progress */
32a7627cf   NeilBrown   [PATCH] md: optim...
219

d785a06a0   NeilBrown   [PATCH] md/bitmap...
220
221
  	atomic_t pending_writes; /* pending writes to the bitmap file */
  	wait_queue_head_t write_wait;
da6e1a32f   Neil Brown   [PATCH] md: avoid...
222
  	wait_queue_head_t overflow_wait;
e555190d8   NeilBrown   md/raid1: delay r...
223
  	wait_queue_head_t behind_wait;
d785a06a0   NeilBrown   [PATCH] md/bitmap...
224

324a56e16   Tejun Heo   kernfs: s/sysfs_d...
225
  	struct kernfs_node *sysfs_can_clear;
b97e92574   Goldwyn Rodrigues   Use separate bitm...
226
  	int cluster_slot;		/* Slot offset for clustered env */
32a7627cf   NeilBrown   [PATCH] md: optim...
227
228
229
230
231
  };
  
  /* the bitmap API */
  
  /* these are used only by md/bitmap */
e64e4018d   Andy Shevchenko   md: Avoid namespa...
232
233
234
235
  struct bitmap *md_bitmap_create(struct mddev *mddev, int slot);
  int md_bitmap_load(struct mddev *mddev);
  void md_bitmap_flush(struct mddev *mddev);
  void md_bitmap_destroy(struct mddev *mddev);
32a7627cf   NeilBrown   [PATCH] md: optim...
236

e64e4018d   Andy Shevchenko   md: Avoid namespa...
237
238
239
  void md_bitmap_print_sb(struct bitmap *bitmap);
  void md_bitmap_update_sb(struct bitmap *bitmap);
  void md_bitmap_status(struct seq_file *seq, struct bitmap *bitmap);
32a7627cf   NeilBrown   [PATCH] md: optim...
240

e64e4018d   Andy Shevchenko   md: Avoid namespa...
241
242
  int  md_bitmap_setallbits(struct bitmap *bitmap);
  void md_bitmap_write_all(struct bitmap *bitmap);
32a7627cf   NeilBrown   [PATCH] md: optim...
243

e64e4018d   Andy Shevchenko   md: Avoid namespa...
244
  void md_bitmap_dirty_bits(struct bitmap *bitmap, unsigned long s, unsigned long e);
9b1d1dac1   Paul Clements   [PATCH] md: new s...
245

32a7627cf   NeilBrown   [PATCH] md: optim...
246
  /* these are exported */
e64e4018d   Andy Shevchenko   md: Avoid namespa...
247
248
249
  int md_bitmap_startwrite(struct bitmap *bitmap, sector_t offset,
  			 unsigned long sectors, int behind);
  void md_bitmap_endwrite(struct bitmap *bitmap, sector_t offset,
4b6d287f6   NeilBrown   [PATCH] md: add w...
250
  			unsigned long sectors, int success, int behind);
e64e4018d   Andy Shevchenko   md: Avoid namespa...
251
252
253
254
255
256
257
258
259
260
261
262
263
  int md_bitmap_start_sync(struct bitmap *bitmap, sector_t offset, sector_t *blocks, int degraded);
  void md_bitmap_end_sync(struct bitmap *bitmap, sector_t offset, sector_t *blocks, int aborted);
  void md_bitmap_close_sync(struct bitmap *bitmap);
  void md_bitmap_cond_end_sync(struct bitmap *bitmap, sector_t sector, bool force);
  void md_bitmap_sync_with_cluster(struct mddev *mddev,
  				 sector_t old_lo, sector_t old_hi,
  				 sector_t new_lo, sector_t new_hi);
  
  void md_bitmap_unplug(struct bitmap *bitmap);
  void md_bitmap_daemon_work(struct mddev *mddev);
  
  int md_bitmap_resize(struct bitmap *bitmap, sector_t blocks,
  		     int chunksize, int init);
b98938d16   Guoqing Jiang   md-cluster: intro...
264
  struct bitmap *get_bitmap_from_slot(struct mddev *mddev, int slot);
e64e4018d   Andy Shevchenko   md: Avoid namespa...
265
266
267
268
  int md_bitmap_copy_from_slot(struct mddev *mddev, int slot,
  			     sector_t *lo, sector_t *hi, bool clear_bits);
  void md_bitmap_free(struct bitmap *bitmap);
  void md_bitmap_wait_behind_writes(struct mddev *mddev);
32a7627cf   NeilBrown   [PATCH] md: optim...
269
270
271
  #endif
  
  #endif