blob: 7878712721bf431a1315f44db1c3b2dcc9486245 [file] [log] [blame]
NeilBrown32a76272005-06-21 17:17:14 -07001/*
2 * bitmap.c two-level bitmap (C) Peter T. Breuer (ptb@ot.uc3m.es) 2003
3 *
4 * bitmap_create - sets up the bitmap structure
5 * bitmap_destroy - destroys the bitmap structure
6 *
7 * additions, Copyright (C) 2003-2004, Paul Clements, SteelEye Technology, Inc.:
8 * - added disk storage for bitmap
9 * - changes to allow various bitmap chunk sizes
NeilBrown32a76272005-06-21 17:17:14 -070010 */
11
12/*
13 * Still to do:
14 *
15 * flush after percent set rather than just time based. (maybe both).
NeilBrown32a76272005-06-21 17:17:14 -070016 */
17
NeilBrownbff61972009-03-31 14:33:13 +110018#include <linux/blkdev.h>
NeilBrown32a76272005-06-21 17:17:14 -070019#include <linux/module.h>
NeilBrown32a76272005-06-21 17:17:14 -070020#include <linux/errno.h>
21#include <linux/slab.h>
22#include <linux/init.h>
NeilBrown32a76272005-06-21 17:17:14 -070023#include <linux/timer.h>
24#include <linux/sched.h>
25#include <linux/list.h>
26#include <linux/file.h>
27#include <linux/mount.h>
28#include <linux/buffer_head.h>
NeilBrown43b2e5d2009-03-31 14:33:13 +110029#include "md.h"
Christoph Hellwigef740c32009-03-31 14:27:03 +110030#include "bitmap.h"
NeilBrown32a76272005-06-21 17:17:14 -070031
NeilBrownac2f40b2010-06-01 19:37:31 +100032static inline char *bmname(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -070033{
34 return bitmap->mddev ? mdname(bitmap->mddev) : "mdX";
35}
36
NeilBrown32a76272005-06-21 17:17:14 -070037/*
38 * just a placeholder - calls kmalloc for bitmap pages
39 */
40static unsigned char *bitmap_alloc_page(struct bitmap *bitmap)
41{
42 unsigned char *page;
43
NeilBrownac2f40b2010-06-01 19:37:31 +100044 page = kzalloc(PAGE_SIZE, GFP_NOIO);
NeilBrown32a76272005-06-21 17:17:14 -070045 if (!page)
46 printk("%s: bitmap_alloc_page FAILED\n", bmname(bitmap));
47 else
NeilBrown36a4e1f2011-10-07 14:23:17 +110048 pr_debug("%s: bitmap_alloc_page: allocated page at %p\n",
49 bmname(bitmap), page);
NeilBrown32a76272005-06-21 17:17:14 -070050 return page;
51}
52
53/*
54 * for now just a placeholder -- just calls kfree for bitmap pages
55 */
56static void bitmap_free_page(struct bitmap *bitmap, unsigned char *page)
57{
NeilBrown36a4e1f2011-10-07 14:23:17 +110058 pr_debug("%s: bitmap_free_page: free page %p\n", bmname(bitmap), page);
NeilBrown32a76272005-06-21 17:17:14 -070059 kfree(page);
60}
61
62/*
63 * check a page and, if necessary, allocate it (or hijack it if the alloc fails)
64 *
65 * 1) check to see if this page is allocated, if it's not then try to alloc
66 * 2) if the alloc fails, set the page's hijacked flag so we'll use the
67 * page pointer directly as a counter
68 *
69 * if we find our page, we increment the page's refcount so that it stays
70 * allocated while we're using it
71 */
NeilBrownac2f40b2010-06-01 19:37:31 +100072static int bitmap_checkpage(struct bitmap *bitmap,
73 unsigned long page, int create)
NeilBrownee305ac2009-09-23 18:06:44 +100074__releases(bitmap->lock)
75__acquires(bitmap->lock)
NeilBrown32a76272005-06-21 17:17:14 -070076{
77 unsigned char *mappage;
78
79 if (page >= bitmap->pages) {
NeilBrown1187cf02009-03-31 14:27:02 +110080 /* This can happen if bitmap_start_sync goes beyond
81 * End-of-device while looking for a whole page.
82 * It is harmless.
83 */
NeilBrown32a76272005-06-21 17:17:14 -070084 return -EINVAL;
85 }
86
NeilBrown32a76272005-06-21 17:17:14 -070087 if (bitmap->bp[page].hijacked) /* it's hijacked, don't try to alloc */
88 return 0;
89
90 if (bitmap->bp[page].map) /* page is already allocated, just return */
91 return 0;
92
93 if (!create)
94 return -ENOENT;
95
NeilBrown32a76272005-06-21 17:17:14 -070096 /* this page has not been allocated yet */
97
NeilBrownac2f40b2010-06-01 19:37:31 +100098 spin_unlock_irq(&bitmap->lock);
99 mappage = bitmap_alloc_page(bitmap);
100 spin_lock_irq(&bitmap->lock);
101
102 if (mappage == NULL) {
NeilBrown36a4e1f2011-10-07 14:23:17 +1100103 pr_debug("%s: bitmap map page allocation failed, hijacking\n",
104 bmname(bitmap));
NeilBrown32a76272005-06-21 17:17:14 -0700105 /* failed - set the hijacked flag so that we can use the
106 * pointer as a counter */
NeilBrown32a76272005-06-21 17:17:14 -0700107 if (!bitmap->bp[page].map)
108 bitmap->bp[page].hijacked = 1;
NeilBrownac2f40b2010-06-01 19:37:31 +1000109 } else if (bitmap->bp[page].map ||
110 bitmap->bp[page].hijacked) {
NeilBrown32a76272005-06-21 17:17:14 -0700111 /* somebody beat us to getting the page */
112 bitmap_free_page(bitmap, mappage);
113 return 0;
NeilBrownac2f40b2010-06-01 19:37:31 +1000114 } else {
115
116 /* no page was in place and we have one, so install it */
117
118 bitmap->bp[page].map = mappage;
119 bitmap->missing_pages--;
NeilBrown32a76272005-06-21 17:17:14 -0700120 }
NeilBrown32a76272005-06-21 17:17:14 -0700121 return 0;
122}
123
NeilBrown32a76272005-06-21 17:17:14 -0700124/* if page is completely empty, put it back on the free list, or dealloc it */
125/* if page was hijacked, unmark the flag so it might get alloced next time */
126/* Note: lock should be held when calling this */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800127static void bitmap_checkfree(struct bitmap *bitmap, unsigned long page)
NeilBrown32a76272005-06-21 17:17:14 -0700128{
129 char *ptr;
130
131 if (bitmap->bp[page].count) /* page is still busy */
132 return;
133
134 /* page is no longer in use, it can be released */
135
136 if (bitmap->bp[page].hijacked) { /* page was hijacked, undo this now */
137 bitmap->bp[page].hijacked = 0;
138 bitmap->bp[page].map = NULL;
NeilBrownac2f40b2010-06-01 19:37:31 +1000139 } else {
140 /* normal case, free the page */
141 ptr = bitmap->bp[page].map;
142 bitmap->bp[page].map = NULL;
143 bitmap->missing_pages++;
144 bitmap_free_page(bitmap, ptr);
NeilBrown32a76272005-06-21 17:17:14 -0700145 }
NeilBrown32a76272005-06-21 17:17:14 -0700146}
147
NeilBrown32a76272005-06-21 17:17:14 -0700148/*
149 * bitmap file handling - read and write the bitmap file and its superblock
150 */
151
NeilBrown32a76272005-06-21 17:17:14 -0700152/*
153 * basic page I/O operations
154 */
155
NeilBrowna654b9d82005-06-21 17:17:27 -0700156/* IO operations when bitmap is stored near all superblocks */
NeilBrownfd01b882011-10-11 16:47:53 +1100157static struct page *read_sb_page(struct mddev *mddev, loff_t offset,
NeilBrowna2ed9612008-12-19 16:25:01 +1100158 struct page *page,
159 unsigned long index, int size)
NeilBrowna654b9d82005-06-21 17:17:27 -0700160{
161 /* choose a good rdev and read the page from there */
162
NeilBrown3cb03002011-10-11 16:45:26 +1100163 struct md_rdev *rdev;
NeilBrowna654b9d82005-06-21 17:17:27 -0700164 sector_t target;
NeilBrownac2f40b2010-06-01 19:37:31 +1000165 int did_alloc = 0;
NeilBrowna654b9d82005-06-21 17:17:27 -0700166
NeilBrownac2f40b2010-06-01 19:37:31 +1000167 if (!page) {
NeilBrowna2ed9612008-12-19 16:25:01 +1100168 page = alloc_page(GFP_KERNEL);
NeilBrownac2f40b2010-06-01 19:37:31 +1000169 if (!page)
170 return ERR_PTR(-ENOMEM);
171 did_alloc = 1;
172 }
NeilBrowna654b9d82005-06-21 17:17:27 -0700173
Cheng Renquan159ec1f2009-01-09 08:31:08 +1100174 list_for_each_entry(rdev, &mddev->disks, same_set) {
NeilBrownb2d444d2005-11-08 21:39:31 -0800175 if (! test_bit(In_sync, &rdev->flags)
176 || test_bit(Faulty, &rdev->flags))
NeilBrownab904d62005-09-09 16:23:52 -0700177 continue;
178
Jonathan Brassowccebd4c2011-01-14 09:14:33 +1100179 target = offset + index * (PAGE_SIZE/512);
NeilBrowna654b9d82005-06-21 17:17:27 -0700180
NeilBrown2b193362010-10-27 15:16:40 +1100181 if (sync_page_io(rdev, target,
Martin K. Petersene1defc42009-05-22 17:17:49 -0400182 roundup(size, bdev_logical_block_size(rdev->bdev)),
Jonathan Brassowccebd4c2011-01-14 09:14:33 +1100183 page, READ, true)) {
NeilBrownab904d62005-09-09 16:23:52 -0700184 page->index = index;
NeilBrownce25c312006-06-26 00:27:49 -0700185 attach_page_buffers(page, NULL); /* so that free_buffer will
186 * quietly no-op */
NeilBrownab904d62005-09-09 16:23:52 -0700187 return page;
188 }
189 }
NeilBrownac2f40b2010-06-01 19:37:31 +1000190 if (did_alloc)
191 put_page(page);
NeilBrownab904d62005-09-09 16:23:52 -0700192 return ERR_PTR(-EIO);
NeilBrowna654b9d82005-06-21 17:17:27 -0700193
NeilBrowna654b9d82005-06-21 17:17:27 -0700194}
195
NeilBrownfd01b882011-10-11 16:47:53 +1100196static struct md_rdev *next_active_rdev(struct md_rdev *rdev, struct mddev *mddev)
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000197{
198 /* Iterate the disks of an mddev, using rcu to protect access to the
199 * linked list, and raising the refcount of devices we return to ensure
200 * they don't disappear while in use.
201 * As devices are only added or removed when raid_disk is < 0 and
202 * nr_pending is 0 and In_sync is clear, the entries we return will
203 * still be in the same position on the list when we re-enter
204 * list_for_each_continue_rcu.
205 */
206 struct list_head *pos;
207 rcu_read_lock();
208 if (rdev == NULL)
209 /* start at the beginning */
210 pos = &mddev->disks;
211 else {
212 /* release the previous rdev and start from there. */
213 rdev_dec_pending(rdev, mddev);
214 pos = &rdev->same_set;
215 }
216 list_for_each_continue_rcu(pos, &mddev->disks) {
NeilBrown3cb03002011-10-11 16:45:26 +1100217 rdev = list_entry(pos, struct md_rdev, same_set);
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000218 if (rdev->raid_disk >= 0 &&
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000219 !test_bit(Faulty, &rdev->flags)) {
220 /* this is a usable devices */
221 atomic_inc(&rdev->nr_pending);
222 rcu_read_unlock();
223 return rdev;
224 }
225 }
226 rcu_read_unlock();
227 return NULL;
228}
229
NeilBrownab6085c2007-05-23 13:58:10 -0700230static int write_sb_page(struct bitmap *bitmap, struct page *page, int wait)
NeilBrowna654b9d82005-06-21 17:17:27 -0700231{
NeilBrown3cb03002011-10-11 16:45:26 +1100232 struct md_rdev *rdev = NULL;
Jonathan Brassowa6ff7e02011-01-14 09:14:34 +1100233 struct block_device *bdev;
NeilBrownfd01b882011-10-11 16:47:53 +1100234 struct mddev *mddev = bitmap->mddev;
NeilBrowna654b9d82005-06-21 17:17:27 -0700235
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000236 while ((rdev = next_active_rdev(rdev, mddev)) != NULL) {
NeilBrownac2f40b2010-06-01 19:37:31 +1000237 int size = PAGE_SIZE;
238 loff_t offset = mddev->bitmap_info.offset;
Jonathan Brassowa6ff7e02011-01-14 09:14:34 +1100239
240 bdev = (rdev->meta_bdev) ? rdev->meta_bdev : rdev->bdev;
241
NeilBrownac2f40b2010-06-01 19:37:31 +1000242 if (page->index == bitmap->file_pages-1)
243 size = roundup(bitmap->last_page_size,
Jonathan Brassowa6ff7e02011-01-14 09:14:34 +1100244 bdev_logical_block_size(bdev));
NeilBrownac2f40b2010-06-01 19:37:31 +1000245 /* Just make sure we aren't corrupting data or
246 * metadata
247 */
248 if (mddev->external) {
249 /* Bitmap could be anywhere. */
250 if (rdev->sb_start + offset + (page->index
251 * (PAGE_SIZE/512))
252 > rdev->data_offset
253 &&
254 rdev->sb_start + offset
255 < (rdev->data_offset + mddev->dev_sectors
256 + (PAGE_SIZE/512)))
257 goto bad_alignment;
258 } else if (offset < 0) {
259 /* DATA BITMAP METADATA */
260 if (offset
261 + (long)(page->index * (PAGE_SIZE/512))
262 + size/512 > 0)
263 /* bitmap runs in to metadata */
264 goto bad_alignment;
265 if (rdev->data_offset + mddev->dev_sectors
266 > rdev->sb_start + offset)
267 /* data runs in to bitmap */
268 goto bad_alignment;
269 } else if (rdev->sb_start < rdev->data_offset) {
270 /* METADATA BITMAP DATA */
271 if (rdev->sb_start
272 + offset
273 + page->index*(PAGE_SIZE/512) + size/512
274 > rdev->data_offset)
275 /* bitmap runs in to data */
276 goto bad_alignment;
277 } else {
278 /* DATA METADATA BITMAP - no problems */
279 }
280 md_super_write(mddev, rdev,
281 rdev->sb_start + offset
282 + page->index * (PAGE_SIZE/512),
283 size,
284 page);
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000285 }
NeilBrowna654b9d82005-06-21 17:17:27 -0700286
287 if (wait)
NeilBrowna9701a32005-11-08 21:39:34 -0800288 md_super_wait(mddev);
NeilBrowna654b9d82005-06-21 17:17:27 -0700289 return 0;
NeilBrown4b809912008-07-21 17:05:25 +1000290
291 bad_alignment:
NeilBrown4b809912008-07-21 17:05:25 +1000292 return -EINVAL;
NeilBrowna654b9d82005-06-21 17:17:27 -0700293}
294
NeilBrown4ad13662007-07-17 04:06:13 -0700295static void bitmap_file_kick(struct bitmap *bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700296/*
NeilBrowna654b9d82005-06-21 17:17:27 -0700297 * write out a page to a file
NeilBrown32a76272005-06-21 17:17:14 -0700298 */
NeilBrown4ad13662007-07-17 04:06:13 -0700299static void write_page(struct bitmap *bitmap, struct page *page, int wait)
NeilBrown32a76272005-06-21 17:17:14 -0700300{
NeilBrownd785a062006-06-26 00:27:48 -0700301 struct buffer_head *bh;
NeilBrown32a76272005-06-21 17:17:14 -0700302
NeilBrownf0d76d72007-07-17 04:06:12 -0700303 if (bitmap->file == NULL) {
304 switch (write_sb_page(bitmap, page, wait)) {
305 case -EINVAL:
306 bitmap->flags |= BITMAP_WRITE_ERROR;
NeilBrownf0d76d72007-07-17 04:06:12 -0700307 }
NeilBrown4ad13662007-07-17 04:06:13 -0700308 } else {
NeilBrowna654b9d82005-06-21 17:17:27 -0700309
NeilBrown4ad13662007-07-17 04:06:13 -0700310 bh = page_buffers(page);
NeilBrownc7084432006-01-06 00:20:45 -0800311
NeilBrown4ad13662007-07-17 04:06:13 -0700312 while (bh && bh->b_blocknr) {
313 atomic_inc(&bitmap->pending_writes);
314 set_buffer_locked(bh);
315 set_buffer_mapped(bh);
Jens Axboe721a9602011-03-09 11:56:30 +0100316 submit_bh(WRITE | REQ_SYNC, bh);
NeilBrown4ad13662007-07-17 04:06:13 -0700317 bh = bh->b_this_page;
318 }
NeilBrown32a76272005-06-21 17:17:14 -0700319
NeilBrownac2f40b2010-06-01 19:37:31 +1000320 if (wait)
NeilBrown4ad13662007-07-17 04:06:13 -0700321 wait_event(bitmap->write_wait,
322 atomic_read(&bitmap->pending_writes)==0);
NeilBrown32a76272005-06-21 17:17:14 -0700323 }
NeilBrown4ad13662007-07-17 04:06:13 -0700324 if (bitmap->flags & BITMAP_WRITE_ERROR)
325 bitmap_file_kick(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700326}
327
NeilBrownd785a062006-06-26 00:27:48 -0700328static void end_bitmap_write(struct buffer_head *bh, int uptodate)
NeilBrown32a76272005-06-21 17:17:14 -0700329{
NeilBrownd785a062006-06-26 00:27:48 -0700330 struct bitmap *bitmap = bh->b_private;
331 unsigned long flags;
332
333 if (!uptodate) {
334 spin_lock_irqsave(&bitmap->lock, flags);
335 bitmap->flags |= BITMAP_WRITE_ERROR;
336 spin_unlock_irqrestore(&bitmap->lock, flags);
337 }
338 if (atomic_dec_and_test(&bitmap->pending_writes))
339 wake_up(&bitmap->write_wait);
340}
341
342/* copied from buffer.c */
343static void
344__clear_page_buffers(struct page *page)
345{
346 ClearPagePrivate(page);
347 set_page_private(page, 0);
348 page_cache_release(page);
349}
350static void free_buffers(struct page *page)
351{
352 struct buffer_head *bh = page_buffers(page);
353
354 while (bh) {
355 struct buffer_head *next = bh->b_this_page;
356 free_buffer_head(bh);
357 bh = next;
358 }
359 __clear_page_buffers(page);
360 put_page(page);
361}
362
363/* read a page from a file.
364 * We both read the page, and attach buffers to the page to record the
365 * address of each block (using bmap). These addresses will be used
366 * to write the block later, completely bypassing the filesystem.
367 * This usage is similar to how swap files are handled, and allows us
368 * to write to a file with no concerns of memory allocation failing.
369 */
370static struct page *read_page(struct file *file, unsigned long index,
371 struct bitmap *bitmap,
372 unsigned long count)
373{
NeilBrown32a76272005-06-21 17:17:14 -0700374 struct page *page = NULL;
Josef Sipekc649bb92006-12-08 02:37:19 -0800375 struct inode *inode = file->f_path.dentry->d_inode;
NeilBrownd785a062006-06-26 00:27:48 -0700376 struct buffer_head *bh;
377 sector_t block;
NeilBrown32a76272005-06-21 17:17:14 -0700378
NeilBrown36a4e1f2011-10-07 14:23:17 +1100379 pr_debug("read bitmap file (%dB @ %llu)\n", (int)PAGE_SIZE,
380 (unsigned long long)index << PAGE_SHIFT);
NeilBrown32a76272005-06-21 17:17:14 -0700381
NeilBrownd785a062006-06-26 00:27:48 -0700382 page = alloc_page(GFP_KERNEL);
383 if (!page)
384 page = ERR_PTR(-ENOMEM);
NeilBrown32a76272005-06-21 17:17:14 -0700385 if (IS_ERR(page))
386 goto out;
NeilBrownd785a062006-06-26 00:27:48 -0700387
NeilBrownd785a062006-06-26 00:27:48 -0700388 bh = alloc_page_buffers(page, 1<<inode->i_blkbits, 0);
389 if (!bh) {
390 put_page(page);
391 page = ERR_PTR(-ENOMEM);
392 goto out;
393 }
394 attach_page_buffers(page, bh);
395 block = index << (PAGE_SHIFT - inode->i_blkbits);
396 while (bh) {
397 if (count == 0)
398 bh->b_blocknr = 0;
399 else {
400 bh->b_blocknr = bmap(inode, block);
401 if (bh->b_blocknr == 0) {
402 /* Cannot use this file! */
403 free_buffers(page);
404 page = ERR_PTR(-EINVAL);
405 goto out;
406 }
407 bh->b_bdev = inode->i_sb->s_bdev;
408 if (count < (1<<inode->i_blkbits))
409 count = 0;
410 else
411 count -= (1<<inode->i_blkbits);
NeilBrown32a76272005-06-21 17:17:14 -0700412
NeilBrownd785a062006-06-26 00:27:48 -0700413 bh->b_end_io = end_bitmap_write;
414 bh->b_private = bitmap;
NeilBrownce25c312006-06-26 00:27:49 -0700415 atomic_inc(&bitmap->pending_writes);
416 set_buffer_locked(bh);
417 set_buffer_mapped(bh);
418 submit_bh(READ, bh);
NeilBrownd785a062006-06-26 00:27:48 -0700419 }
420 block++;
421 bh = bh->b_this_page;
422 }
NeilBrownd785a062006-06-26 00:27:48 -0700423 page->index = index;
NeilBrownce25c312006-06-26 00:27:49 -0700424
425 wait_event(bitmap->write_wait,
426 atomic_read(&bitmap->pending_writes)==0);
427 if (bitmap->flags & BITMAP_WRITE_ERROR) {
428 free_buffers(page);
429 page = ERR_PTR(-EIO);
430 }
NeilBrown32a76272005-06-21 17:17:14 -0700431out:
432 if (IS_ERR(page))
NeilBrownac2f40b2010-06-01 19:37:31 +1000433 printk(KERN_ALERT "md: bitmap read error: (%dB @ %llu): %ld\n",
NeilBrown2d1f3b52006-01-06 00:20:31 -0800434 (int)PAGE_SIZE,
435 (unsigned long long)index << PAGE_SHIFT,
NeilBrown32a76272005-06-21 17:17:14 -0700436 PTR_ERR(page));
437 return page;
438}
439
440/*
441 * bitmap file superblock operations
442 */
443
444/* update the event counter and sync the superblock to disk */
NeilBrown4ad13662007-07-17 04:06:13 -0700445void bitmap_update_sb(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -0700446{
447 bitmap_super_t *sb;
448 unsigned long flags;
449
450 if (!bitmap || !bitmap->mddev) /* no bitmap for this array */
NeilBrown4ad13662007-07-17 04:06:13 -0700451 return;
NeilBrownece5cff2009-12-14 12:49:56 +1100452 if (bitmap->mddev->bitmap_info.external)
453 return;
NeilBrown32a76272005-06-21 17:17:14 -0700454 spin_lock_irqsave(&bitmap->lock, flags);
455 if (!bitmap->sb_page) { /* no superblock */
456 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown4ad13662007-07-17 04:06:13 -0700457 return;
NeilBrown32a76272005-06-21 17:17:14 -0700458 }
NeilBrown32a76272005-06-21 17:17:14 -0700459 spin_unlock_irqrestore(&bitmap->lock, flags);
H Hartley Sweeten7b928132010-03-08 16:02:40 +1100460 sb = kmap_atomic(bitmap->sb_page, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -0700461 sb->events = cpu_to_le64(bitmap->mddev->events);
NeilBrown8258c532011-05-11 14:26:30 +1000462 if (bitmap->mddev->events < bitmap->events_cleared)
Neil Browna0da84f2008-06-28 08:31:22 +1000463 /* rocking back to read-only */
464 bitmap->events_cleared = bitmap->mddev->events;
NeilBrown8258c532011-05-11 14:26:30 +1000465 sb->events_cleared = cpu_to_le64(bitmap->events_cleared);
466 sb->state = cpu_to_le32(bitmap->flags);
NeilBrown43a70502009-12-14 12:49:55 +1100467 /* Just in case these have been changed via sysfs: */
468 sb->daemon_sleep = cpu_to_le32(bitmap->mddev->bitmap_info.daemon_sleep/HZ);
469 sb->write_behind = cpu_to_le32(bitmap->mddev->bitmap_info.max_write_behind);
NeilBrownea03aff2006-01-06 00:20:34 -0800470 kunmap_atomic(sb, KM_USER0);
NeilBrown4ad13662007-07-17 04:06:13 -0700471 write_page(bitmap, bitmap->sb_page, 1);
NeilBrown32a76272005-06-21 17:17:14 -0700472}
473
474/* print out the bitmap file superblock */
475void bitmap_print_sb(struct bitmap *bitmap)
476{
477 bitmap_super_t *sb;
478
479 if (!bitmap || !bitmap->sb_page)
480 return;
H Hartley Sweeten7b928132010-03-08 16:02:40 +1100481 sb = kmap_atomic(bitmap->sb_page, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -0700482 printk(KERN_DEBUG "%s: bitmap file superblock:\n", bmname(bitmap));
NeilBrowna2cff262005-06-21 17:17:20 -0700483 printk(KERN_DEBUG " magic: %08x\n", le32_to_cpu(sb->magic));
484 printk(KERN_DEBUG " version: %d\n", le32_to_cpu(sb->version));
485 printk(KERN_DEBUG " uuid: %08x.%08x.%08x.%08x\n",
NeilBrown32a76272005-06-21 17:17:14 -0700486 *(__u32 *)(sb->uuid+0),
487 *(__u32 *)(sb->uuid+4),
488 *(__u32 *)(sb->uuid+8),
489 *(__u32 *)(sb->uuid+12));
NeilBrowna2cff262005-06-21 17:17:20 -0700490 printk(KERN_DEBUG " events: %llu\n",
NeilBrown32a76272005-06-21 17:17:14 -0700491 (unsigned long long) le64_to_cpu(sb->events));
NeilBrowna2cff262005-06-21 17:17:20 -0700492 printk(KERN_DEBUG "events cleared: %llu\n",
NeilBrown32a76272005-06-21 17:17:14 -0700493 (unsigned long long) le64_to_cpu(sb->events_cleared));
NeilBrowna2cff262005-06-21 17:17:20 -0700494 printk(KERN_DEBUG " state: %08x\n", le32_to_cpu(sb->state));
495 printk(KERN_DEBUG " chunksize: %d B\n", le32_to_cpu(sb->chunksize));
496 printk(KERN_DEBUG " daemon sleep: %ds\n", le32_to_cpu(sb->daemon_sleep));
497 printk(KERN_DEBUG " sync size: %llu KB\n",
498 (unsigned long long)le64_to_cpu(sb->sync_size)/2);
NeilBrown4b6d2872005-09-09 16:23:47 -0700499 printk(KERN_DEBUG "max write behind: %d\n", le32_to_cpu(sb->write_behind));
NeilBrownea03aff2006-01-06 00:20:34 -0800500 kunmap_atomic(sb, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -0700501}
502
Jonathan Brassow9c810752011-06-08 17:59:30 -0500503/*
504 * bitmap_new_disk_sb
505 * @bitmap
506 *
507 * This function is somewhat the reverse of bitmap_read_sb. bitmap_read_sb
508 * reads and verifies the on-disk bitmap superblock and populates bitmap_info.
509 * This function verifies 'bitmap_info' and populates the on-disk bitmap
510 * structure, which is to be written to disk.
511 *
512 * Returns: 0 on success, -Exxx on error
513 */
514static int bitmap_new_disk_sb(struct bitmap *bitmap)
515{
516 bitmap_super_t *sb;
517 unsigned long chunksize, daemon_sleep, write_behind;
518 int err = -EINVAL;
519
520 bitmap->sb_page = alloc_page(GFP_KERNEL);
521 if (IS_ERR(bitmap->sb_page)) {
522 err = PTR_ERR(bitmap->sb_page);
523 bitmap->sb_page = NULL;
524 return err;
525 }
526 bitmap->sb_page->index = 0;
527
528 sb = kmap_atomic(bitmap->sb_page, KM_USER0);
529
530 sb->magic = cpu_to_le32(BITMAP_MAGIC);
531 sb->version = cpu_to_le32(BITMAP_MAJOR_HI);
532
533 chunksize = bitmap->mddev->bitmap_info.chunksize;
534 BUG_ON(!chunksize);
535 if (!is_power_of_2(chunksize)) {
536 kunmap_atomic(sb, KM_USER0);
537 printk(KERN_ERR "bitmap chunksize not a power of 2\n");
538 return -EINVAL;
539 }
540 sb->chunksize = cpu_to_le32(chunksize);
541
542 daemon_sleep = bitmap->mddev->bitmap_info.daemon_sleep;
543 if (!daemon_sleep ||
544 (daemon_sleep < 1) || (daemon_sleep > MAX_SCHEDULE_TIMEOUT)) {
545 printk(KERN_INFO "Choosing daemon_sleep default (5 sec)\n");
546 daemon_sleep = 5 * HZ;
547 }
548 sb->daemon_sleep = cpu_to_le32(daemon_sleep);
549 bitmap->mddev->bitmap_info.daemon_sleep = daemon_sleep;
550
551 /*
552 * FIXME: write_behind for RAID1. If not specified, what
553 * is a good choice? We choose COUNTER_MAX / 2 arbitrarily.
554 */
555 write_behind = bitmap->mddev->bitmap_info.max_write_behind;
556 if (write_behind > COUNTER_MAX)
557 write_behind = COUNTER_MAX / 2;
558 sb->write_behind = cpu_to_le32(write_behind);
559 bitmap->mddev->bitmap_info.max_write_behind = write_behind;
560
561 /* keep the array size field of the bitmap superblock up to date */
562 sb->sync_size = cpu_to_le64(bitmap->mddev->resync_max_sectors);
563
564 memcpy(sb->uuid, bitmap->mddev->uuid, 16);
565
566 bitmap->flags |= BITMAP_STALE;
567 sb->state |= cpu_to_le32(BITMAP_STALE);
568 bitmap->events_cleared = bitmap->mddev->events;
569 sb->events_cleared = cpu_to_le64(bitmap->mddev->events);
570
571 bitmap->flags |= BITMAP_HOSTENDIAN;
572 sb->version = cpu_to_le32(BITMAP_MAJOR_HOSTENDIAN);
573
574 kunmap_atomic(sb, KM_USER0);
575
576 return 0;
577}
578
NeilBrown32a76272005-06-21 17:17:14 -0700579/* read the superblock from the bitmap file and initialize some bitmap fields */
580static int bitmap_read_sb(struct bitmap *bitmap)
581{
582 char *reason = NULL;
583 bitmap_super_t *sb;
NeilBrown4b6d2872005-09-09 16:23:47 -0700584 unsigned long chunksize, daemon_sleep, write_behind;
NeilBrown32a76272005-06-21 17:17:14 -0700585 unsigned long long events;
586 int err = -EINVAL;
587
588 /* page 0 is the superblock, read it... */
NeilBrownf49d5e62007-01-26 00:57:03 -0800589 if (bitmap->file) {
590 loff_t isize = i_size_read(bitmap->file->f_mapping->host);
591 int bytes = isize > PAGE_SIZE ? PAGE_SIZE : isize;
592
593 bitmap->sb_page = read_page(bitmap->file, 0, bitmap, bytes);
594 } else {
NeilBrown42a04b52009-12-14 12:49:53 +1100595 bitmap->sb_page = read_sb_page(bitmap->mddev,
596 bitmap->mddev->bitmap_info.offset,
NeilBrowna2ed9612008-12-19 16:25:01 +1100597 NULL,
598 0, sizeof(bitmap_super_t));
NeilBrowna654b9d82005-06-21 17:17:27 -0700599 }
NeilBrown32a76272005-06-21 17:17:14 -0700600 if (IS_ERR(bitmap->sb_page)) {
601 err = PTR_ERR(bitmap->sb_page);
602 bitmap->sb_page = NULL;
603 return err;
604 }
605
H Hartley Sweeten7b928132010-03-08 16:02:40 +1100606 sb = kmap_atomic(bitmap->sb_page, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -0700607
NeilBrown32a76272005-06-21 17:17:14 -0700608 chunksize = le32_to_cpu(sb->chunksize);
NeilBrown1b04be92009-12-14 12:49:53 +1100609 daemon_sleep = le32_to_cpu(sb->daemon_sleep) * HZ;
NeilBrown4b6d2872005-09-09 16:23:47 -0700610 write_behind = le32_to_cpu(sb->write_behind);
NeilBrown32a76272005-06-21 17:17:14 -0700611
612 /* verify that the bitmap-specific fields are valid */
613 if (sb->magic != cpu_to_le32(BITMAP_MAGIC))
614 reason = "bad magic";
NeilBrownbd926c62005-11-08 21:39:32 -0800615 else if (le32_to_cpu(sb->version) < BITMAP_MAJOR_LO ||
616 le32_to_cpu(sb->version) > BITMAP_MAJOR_HI)
NeilBrown32a76272005-06-21 17:17:14 -0700617 reason = "unrecognized superblock version";
NeilBrown1187cf02009-03-31 14:27:02 +1100618 else if (chunksize < 512)
NeilBrown7dd5d342006-01-06 00:20:39 -0800619 reason = "bitmap chunksize too small";
Jonathan Brassowd7445402011-06-08 18:01:10 -0500620 else if (!is_power_of_2(chunksize))
NeilBrown32a76272005-06-21 17:17:14 -0700621 reason = "bitmap chunksize not a power of 2";
NeilBrown1b04be92009-12-14 12:49:53 +1100622 else if (daemon_sleep < 1 || daemon_sleep > MAX_SCHEDULE_TIMEOUT)
NeilBrown7dd5d342006-01-06 00:20:39 -0800623 reason = "daemon sleep period out of range";
NeilBrown4b6d2872005-09-09 16:23:47 -0700624 else if (write_behind > COUNTER_MAX)
625 reason = "write-behind limit out of range (0 - 16383)";
NeilBrown32a76272005-06-21 17:17:14 -0700626 if (reason) {
627 printk(KERN_INFO "%s: invalid bitmap file superblock: %s\n",
628 bmname(bitmap), reason);
629 goto out;
630 }
631
632 /* keep the array size field of the bitmap superblock up to date */
633 sb->sync_size = cpu_to_le64(bitmap->mddev->resync_max_sectors);
634
635 if (!bitmap->mddev->persistent)
636 goto success;
637
638 /*
639 * if we have a persistent array superblock, compare the
640 * bitmap's UUID and event counter to the mddev's
641 */
642 if (memcmp(sb->uuid, bitmap->mddev->uuid, 16)) {
643 printk(KERN_INFO "%s: bitmap superblock UUID mismatch\n",
644 bmname(bitmap));
645 goto out;
646 }
647 events = le64_to_cpu(sb->events);
648 if (events < bitmap->mddev->events) {
649 printk(KERN_INFO "%s: bitmap file is out of date (%llu < %llu) "
650 "-- forcing full recovery\n", bmname(bitmap), events,
651 (unsigned long long) bitmap->mddev->events);
NeilBrown4f2e6392006-10-21 10:24:09 -0700652 sb->state |= cpu_to_le32(BITMAP_STALE);
NeilBrown32a76272005-06-21 17:17:14 -0700653 }
654success:
655 /* assign fields using values from superblock */
NeilBrown42a04b52009-12-14 12:49:53 +1100656 bitmap->mddev->bitmap_info.chunksize = chunksize;
657 bitmap->mddev->bitmap_info.daemon_sleep = daemon_sleep;
NeilBrown42a04b52009-12-14 12:49:53 +1100658 bitmap->mddev->bitmap_info.max_write_behind = write_behind;
NeilBrown4f2e6392006-10-21 10:24:09 -0700659 bitmap->flags |= le32_to_cpu(sb->state);
NeilBrownbd926c62005-11-08 21:39:32 -0800660 if (le32_to_cpu(sb->version) == BITMAP_MAJOR_HOSTENDIAN)
661 bitmap->flags |= BITMAP_HOSTENDIAN;
NeilBrown32a76272005-06-21 17:17:14 -0700662 bitmap->events_cleared = le64_to_cpu(sb->events_cleared);
NeilBrown8258c532011-05-11 14:26:30 +1000663 if (bitmap->flags & BITMAP_STALE)
NeilBrown6a079972005-09-09 16:23:44 -0700664 bitmap->events_cleared = bitmap->mddev->events;
NeilBrown32a76272005-06-21 17:17:14 -0700665 err = 0;
666out:
NeilBrownea03aff2006-01-06 00:20:34 -0800667 kunmap_atomic(sb, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -0700668 if (err)
669 bitmap_print_sb(bitmap);
670 return err;
671}
672
673enum bitmap_mask_op {
674 MASK_SET,
675 MASK_UNSET
676};
677
NeilBrown4ad13662007-07-17 04:06:13 -0700678/* record the state of the bitmap in the superblock. Return the old value */
679static int bitmap_mask_state(struct bitmap *bitmap, enum bitmap_state bits,
680 enum bitmap_mask_op op)
NeilBrown32a76272005-06-21 17:17:14 -0700681{
682 bitmap_super_t *sb;
683 unsigned long flags;
NeilBrown4ad13662007-07-17 04:06:13 -0700684 int old;
NeilBrown32a76272005-06-21 17:17:14 -0700685
686 spin_lock_irqsave(&bitmap->lock, flags);
Adrian Bunk7e317652006-03-25 03:07:51 -0800687 if (!bitmap->sb_page) { /* can't set the state */
NeilBrown32a76272005-06-21 17:17:14 -0700688 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown4ad13662007-07-17 04:06:13 -0700689 return 0;
NeilBrown32a76272005-06-21 17:17:14 -0700690 }
NeilBrown32a76272005-06-21 17:17:14 -0700691 spin_unlock_irqrestore(&bitmap->lock, flags);
H Hartley Sweeten7b928132010-03-08 16:02:40 +1100692 sb = kmap_atomic(bitmap->sb_page, KM_USER0);
NeilBrown4ad13662007-07-17 04:06:13 -0700693 old = le32_to_cpu(sb->state) & bits;
NeilBrown32a76272005-06-21 17:17:14 -0700694 switch (op) {
NeilBrownac2f40b2010-06-01 19:37:31 +1000695 case MASK_SET:
696 sb->state |= cpu_to_le32(bits);
NeilBrown8258c532011-05-11 14:26:30 +1000697 bitmap->flags |= bits;
NeilBrownac2f40b2010-06-01 19:37:31 +1000698 break;
699 case MASK_UNSET:
700 sb->state &= cpu_to_le32(~bits);
NeilBrown8258c532011-05-11 14:26:30 +1000701 bitmap->flags &= ~bits;
NeilBrownac2f40b2010-06-01 19:37:31 +1000702 break;
703 default:
704 BUG();
NeilBrown32a76272005-06-21 17:17:14 -0700705 }
NeilBrownea03aff2006-01-06 00:20:34 -0800706 kunmap_atomic(sb, KM_USER0);
NeilBrown4ad13662007-07-17 04:06:13 -0700707 return old;
NeilBrown32a76272005-06-21 17:17:14 -0700708}
709
710/*
711 * general bitmap file operations
712 */
713
NeilBrownece5cff2009-12-14 12:49:56 +1100714/*
715 * on-disk bitmap:
716 *
717 * Use one bit per "chunk" (block set). We do the disk I/O on the bitmap
718 * file a page at a time. There's a superblock at the start of the file.
719 */
NeilBrown32a76272005-06-21 17:17:14 -0700720/* calculate the index of the page that contains this bit */
NeilBrownece5cff2009-12-14 12:49:56 +1100721static inline unsigned long file_page_index(struct bitmap *bitmap, unsigned long chunk)
NeilBrown32a76272005-06-21 17:17:14 -0700722{
NeilBrownece5cff2009-12-14 12:49:56 +1100723 if (!bitmap->mddev->bitmap_info.external)
724 chunk += sizeof(bitmap_super_t) << 3;
725 return chunk >> PAGE_BIT_SHIFT;
NeilBrown32a76272005-06-21 17:17:14 -0700726}
727
728/* calculate the (bit) offset of this bit within a page */
NeilBrownece5cff2009-12-14 12:49:56 +1100729static inline unsigned long file_page_offset(struct bitmap *bitmap, unsigned long chunk)
NeilBrown32a76272005-06-21 17:17:14 -0700730{
NeilBrownece5cff2009-12-14 12:49:56 +1100731 if (!bitmap->mddev->bitmap_info.external)
732 chunk += sizeof(bitmap_super_t) << 3;
733 return chunk & (PAGE_BITS - 1);
NeilBrown32a76272005-06-21 17:17:14 -0700734}
735
736/*
737 * return a pointer to the page in the filemap that contains the given bit
738 *
739 * this lookup is complicated by the fact that the bitmap sb might be exactly
740 * 1 page (e.g., x86) or less than 1 page -- so the bitmap might start on page
741 * 0 or page 1
742 */
743static inline struct page *filemap_get_page(struct bitmap *bitmap,
Jonathan Brassow3520fa42011-07-27 11:00:37 +1000744 unsigned long chunk)
NeilBrown32a76272005-06-21 17:17:14 -0700745{
NeilBrownac2f40b2010-06-01 19:37:31 +1000746 if (file_page_index(bitmap, chunk) >= bitmap->file_pages)
747 return NULL;
NeilBrownece5cff2009-12-14 12:49:56 +1100748 return bitmap->filemap[file_page_index(bitmap, chunk)
749 - file_page_index(bitmap, 0)];
NeilBrown32a76272005-06-21 17:17:14 -0700750}
751
NeilBrown32a76272005-06-21 17:17:14 -0700752static void bitmap_file_unmap(struct bitmap *bitmap)
753{
754 struct page **map, *sb_page;
755 unsigned long *attr;
756 int pages;
757 unsigned long flags;
758
759 spin_lock_irqsave(&bitmap->lock, flags);
760 map = bitmap->filemap;
761 bitmap->filemap = NULL;
762 attr = bitmap->filemap_attr;
763 bitmap->filemap_attr = NULL;
764 pages = bitmap->file_pages;
765 bitmap->file_pages = 0;
766 sb_page = bitmap->sb_page;
767 bitmap->sb_page = NULL;
768 spin_unlock_irqrestore(&bitmap->lock, flags);
769
770 while (pages--)
NeilBrownece5cff2009-12-14 12:49:56 +1100771 if (map[pages] != sb_page) /* 0 is sb_page, release it below */
NeilBrownd785a062006-06-26 00:27:48 -0700772 free_buffers(map[pages]);
NeilBrown32a76272005-06-21 17:17:14 -0700773 kfree(map);
774 kfree(attr);
775
NeilBrownd785a062006-06-26 00:27:48 -0700776 if (sb_page)
777 free_buffers(sb_page);
NeilBrown32a76272005-06-21 17:17:14 -0700778}
779
780static void bitmap_file_put(struct bitmap *bitmap)
781{
782 struct file *file;
NeilBrown32a76272005-06-21 17:17:14 -0700783 unsigned long flags;
784
785 spin_lock_irqsave(&bitmap->lock, flags);
786 file = bitmap->file;
787 bitmap->file = NULL;
788 spin_unlock_irqrestore(&bitmap->lock, flags);
789
NeilBrownd785a062006-06-26 00:27:48 -0700790 if (file)
791 wait_event(bitmap->write_wait,
792 atomic_read(&bitmap->pending_writes)==0);
NeilBrown32a76272005-06-21 17:17:14 -0700793 bitmap_file_unmap(bitmap);
794
NeilBrownd785a062006-06-26 00:27:48 -0700795 if (file) {
Josef Sipekc649bb92006-12-08 02:37:19 -0800796 struct inode *inode = file->f_path.dentry->d_inode;
Andrew Mortonfc0ecff2007-02-10 01:45:39 -0800797 invalidate_mapping_pages(inode->i_mapping, 0, -1);
NeilBrown32a76272005-06-21 17:17:14 -0700798 fput(file);
NeilBrownd785a062006-06-26 00:27:48 -0700799 }
NeilBrown32a76272005-06-21 17:17:14 -0700800}
801
NeilBrown32a76272005-06-21 17:17:14 -0700802/*
803 * bitmap_file_kick - if an error occurs while manipulating the bitmap file
804 * then it is no longer reliable, so we stop using it and we mark the file
805 * as failed in the superblock
806 */
807static void bitmap_file_kick(struct bitmap *bitmap)
808{
809 char *path, *ptr = NULL;
810
NeilBrown4ad13662007-07-17 04:06:13 -0700811 if (bitmap_mask_state(bitmap, BITMAP_STALE, MASK_SET) == 0) {
812 bitmap_update_sb(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700813
NeilBrown4ad13662007-07-17 04:06:13 -0700814 if (bitmap->file) {
815 path = kmalloc(PAGE_SIZE, GFP_KERNEL);
816 if (path)
Christoph Hellwig6bcfd602008-05-23 13:04:34 -0700817 ptr = d_path(&bitmap->file->f_path, path,
818 PAGE_SIZE);
819
NeilBrown4ad13662007-07-17 04:06:13 -0700820 printk(KERN_ALERT
821 "%s: kicking failed bitmap file %s from array!\n",
Christoph Hellwig6bcfd602008-05-23 13:04:34 -0700822 bmname(bitmap), IS_ERR(ptr) ? "" : ptr);
NeilBrown32a76272005-06-21 17:17:14 -0700823
NeilBrown4ad13662007-07-17 04:06:13 -0700824 kfree(path);
825 } else
826 printk(KERN_ALERT
827 "%s: disabling internal bitmap due to errors\n",
828 bmname(bitmap));
NeilBrowna654b9d82005-06-21 17:17:27 -0700829 }
NeilBrown32a76272005-06-21 17:17:14 -0700830
831 bitmap_file_put(bitmap);
832
833 return;
834}
835
836enum bitmap_page_attr {
NeilBrownac2f40b2010-06-01 19:37:31 +1000837 BITMAP_PAGE_DIRTY = 0, /* there are set bits that need to be synced */
NeilBrown5a537df2011-09-21 15:37:46 +1000838 BITMAP_PAGE_PENDING = 1, /* there are bits that are being cleaned.
839 * i.e. counter is 1 or 2. */
NeilBrownac2f40b2010-06-01 19:37:31 +1000840 BITMAP_PAGE_NEEDWRITE = 2, /* there are cleared bits that need to be synced */
NeilBrown32a76272005-06-21 17:17:14 -0700841};
842
843static inline void set_page_attr(struct bitmap *bitmap, struct page *page,
844 enum bitmap_page_attr attr)
845{
Jonathan Brassow3520fa42011-07-27 11:00:37 +1000846 __set_bit((page->index<<2) + attr, bitmap->filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700847}
848
849static inline void clear_page_attr(struct bitmap *bitmap, struct page *page,
850 enum bitmap_page_attr attr)
851{
Jonathan Brassow3520fa42011-07-27 11:00:37 +1000852 __clear_bit((page->index<<2) + attr, bitmap->filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700853}
854
NeilBrownec7a3192006-06-26 00:27:45 -0700855static inline unsigned long test_page_attr(struct bitmap *bitmap, struct page *page,
856 enum bitmap_page_attr attr)
NeilBrown32a76272005-06-21 17:17:14 -0700857{
Jonathan Brassow3520fa42011-07-27 11:00:37 +1000858 return test_bit((page->index<<2) + attr, bitmap->filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700859}
860
861/*
862 * bitmap_file_set_bit -- called before performing a write to the md device
863 * to set (and eventually sync) a particular bit in the bitmap file
864 *
865 * we set the bit immediately, then we record the page number so that
866 * when an unplug occurs, we can flush the dirty pages out to disk
867 */
868static void bitmap_file_set_bit(struct bitmap *bitmap, sector_t block)
869{
870 unsigned long bit;
Jonathan Brassow3520fa42011-07-27 11:00:37 +1000871 struct page *page;
NeilBrown32a76272005-06-21 17:17:14 -0700872 void *kaddr;
873 unsigned long chunk = block >> CHUNK_BLOCK_SHIFT(bitmap);
874
Jonathan Brassow3520fa42011-07-27 11:00:37 +1000875 if (!bitmap->filemap)
876 return;
NeilBrown32a76272005-06-21 17:17:14 -0700877
Jonathan Brassow3520fa42011-07-27 11:00:37 +1000878 page = filemap_get_page(bitmap, chunk);
879 if (!page)
880 return;
881 bit = file_page_offset(bitmap, chunk);
NeilBrown32a76272005-06-21 17:17:14 -0700882
Jonathan Brassow3520fa42011-07-27 11:00:37 +1000883 /* set the bit */
884 kaddr = kmap_atomic(page, KM_USER0);
885 if (bitmap->flags & BITMAP_HOSTENDIAN)
886 set_bit(bit, kaddr);
887 else
888 __set_bit_le(bit, kaddr);
889 kunmap_atomic(kaddr, KM_USER0);
NeilBrown36a4e1f2011-10-07 14:23:17 +1100890 pr_debug("set file bit %lu page %lu\n", bit, page->index);
NeilBrown32a76272005-06-21 17:17:14 -0700891 /* record page number so it gets flushed to disk when unplug occurs */
892 set_page_attr(bitmap, page, BITMAP_PAGE_DIRTY);
NeilBrown32a76272005-06-21 17:17:14 -0700893}
894
895/* this gets called when the md device is ready to unplug its underlying
896 * (slave) device queues -- before we let any writes go down, we need to
897 * sync the dirty pages of the bitmap file to disk */
NeilBrown4ad13662007-07-17 04:06:13 -0700898void bitmap_unplug(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -0700899{
NeilBrownec7a3192006-06-26 00:27:45 -0700900 unsigned long i, flags;
901 int dirty, need_write;
NeilBrown32a76272005-06-21 17:17:14 -0700902 struct page *page;
903 int wait = 0;
904
905 if (!bitmap)
NeilBrown4ad13662007-07-17 04:06:13 -0700906 return;
NeilBrown32a76272005-06-21 17:17:14 -0700907
908 /* look at each page to see if there are any set bits that need to be
909 * flushed out to disk */
910 for (i = 0; i < bitmap->file_pages; i++) {
911 spin_lock_irqsave(&bitmap->lock, flags);
NeilBrowna654b9d82005-06-21 17:17:27 -0700912 if (!bitmap->filemap) {
NeilBrown32a76272005-06-21 17:17:14 -0700913 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown4ad13662007-07-17 04:06:13 -0700914 return;
NeilBrown32a76272005-06-21 17:17:14 -0700915 }
916 page = bitmap->filemap[i];
NeilBrownec7a3192006-06-26 00:27:45 -0700917 dirty = test_page_attr(bitmap, page, BITMAP_PAGE_DIRTY);
918 need_write = test_page_attr(bitmap, page, BITMAP_PAGE_NEEDWRITE);
NeilBrown32a76272005-06-21 17:17:14 -0700919 clear_page_attr(bitmap, page, BITMAP_PAGE_DIRTY);
920 clear_page_attr(bitmap, page, BITMAP_PAGE_NEEDWRITE);
NeilBrownec7a3192006-06-26 00:27:45 -0700921 if (dirty)
NeilBrown32a76272005-06-21 17:17:14 -0700922 wait = 1;
923 spin_unlock_irqrestore(&bitmap->lock, flags);
924
NeilBrownac2f40b2010-06-01 19:37:31 +1000925 if (dirty || need_write)
NeilBrown4ad13662007-07-17 04:06:13 -0700926 write_page(bitmap, page, 0);
NeilBrown32a76272005-06-21 17:17:14 -0700927 }
928 if (wait) { /* if any writes were performed, we need to wait on them */
NeilBrown0b79ccf2006-06-26 00:27:44 -0700929 if (bitmap->file)
NeilBrownd785a062006-06-26 00:27:48 -0700930 wait_event(bitmap->write_wait,
931 atomic_read(&bitmap->pending_writes)==0);
NeilBrown0b79ccf2006-06-26 00:27:44 -0700932 else
NeilBrowna9701a32005-11-08 21:39:34 -0800933 md_super_wait(bitmap->mddev);
NeilBrown32a76272005-06-21 17:17:14 -0700934 }
NeilBrownd785a062006-06-26 00:27:48 -0700935 if (bitmap->flags & BITMAP_WRITE_ERROR)
936 bitmap_file_kick(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700937}
NeilBrownac2f40b2010-06-01 19:37:31 +1000938EXPORT_SYMBOL(bitmap_unplug);
NeilBrown32a76272005-06-21 17:17:14 -0700939
NeilBrown6a079972005-09-09 16:23:44 -0700940static void bitmap_set_memory_bits(struct bitmap *bitmap, sector_t offset, int needed);
NeilBrown32a76272005-06-21 17:17:14 -0700941/* * bitmap_init_from_disk -- called at bitmap_create time to initialize
942 * the in-memory bitmap from the on-disk bitmap -- also, sets up the
943 * memory mapping of the bitmap file
944 * Special cases:
945 * if there's no bitmap file, or if the bitmap file had been
946 * previously kicked from the array, we mark all the bits as
947 * 1's in order to cause a full resync.
NeilBrown6a079972005-09-09 16:23:44 -0700948 *
949 * We ignore all bits for sectors that end earlier than 'start'.
950 * This is used when reading an out-of-date bitmap...
NeilBrown32a76272005-06-21 17:17:14 -0700951 */
NeilBrown6a079972005-09-09 16:23:44 -0700952static int bitmap_init_from_disk(struct bitmap *bitmap, sector_t start)
NeilBrown32a76272005-06-21 17:17:14 -0700953{
954 unsigned long i, chunks, index, oldindex, bit;
955 struct page *page = NULL, *oldpage = NULL;
956 unsigned long num_pages, bit_cnt = 0;
957 struct file *file;
NeilBrownd785a062006-06-26 00:27:48 -0700958 unsigned long bytes, offset;
NeilBrown32a76272005-06-21 17:17:14 -0700959 int outofdate;
960 int ret = -ENOSPC;
NeilBrownea03aff2006-01-06 00:20:34 -0800961 void *paddr;
NeilBrown32a76272005-06-21 17:17:14 -0700962
963 chunks = bitmap->chunks;
964 file = bitmap->file;
965
NeilBrown42a04b52009-12-14 12:49:53 +1100966 BUG_ON(!file && !bitmap->mddev->bitmap_info.offset);
NeilBrown32a76272005-06-21 17:17:14 -0700967
NeilBrown32a76272005-06-21 17:17:14 -0700968 outofdate = bitmap->flags & BITMAP_STALE;
NeilBrown32a76272005-06-21 17:17:14 -0700969 if (outofdate)
970 printk(KERN_INFO "%s: bitmap file is out of date, doing full "
971 "recovery\n", bmname(bitmap));
972
NeilBrowne384e582010-06-01 19:37:34 +1000973 bytes = DIV_ROUND_UP(bitmap->chunks, 8);
NeilBrownece5cff2009-12-14 12:49:56 +1100974 if (!bitmap->mddev->bitmap_info.external)
975 bytes += sizeof(bitmap_super_t);
NeilBrownbc7f77d2005-06-21 17:17:17 -0700976
NeilBrowne384e582010-06-01 19:37:34 +1000977 num_pages = DIV_ROUND_UP(bytes, PAGE_SIZE);
NeilBrownbc7f77d2005-06-21 17:17:17 -0700978
NeilBrownece5cff2009-12-14 12:49:56 +1100979 if (file && i_size_read(file->f_mapping->host) < bytes) {
NeilBrown32a76272005-06-21 17:17:14 -0700980 printk(KERN_INFO "%s: bitmap file too short %lu < %lu\n",
981 bmname(bitmap),
982 (unsigned long) i_size_read(file->f_mapping->host),
NeilBrownece5cff2009-12-14 12:49:56 +1100983 bytes);
NeilBrown4ad13662007-07-17 04:06:13 -0700984 goto err;
NeilBrown32a76272005-06-21 17:17:14 -0700985 }
NeilBrownbc7f77d2005-06-21 17:17:17 -0700986
987 ret = -ENOMEM;
988
NeilBrown32a76272005-06-21 17:17:14 -0700989 bitmap->filemap = kmalloc(sizeof(struct page *) * num_pages, GFP_KERNEL);
NeilBrownbc7f77d2005-06-21 17:17:17 -0700990 if (!bitmap->filemap)
NeilBrown4ad13662007-07-17 04:06:13 -0700991 goto err;
NeilBrown32a76272005-06-21 17:17:14 -0700992
NeilBrowne16b68b2006-06-26 00:27:45 -0700993 /* We need 4 bits per page, rounded up to a multiple of sizeof(unsigned long) */
994 bitmap->filemap_attr = kzalloc(
NeilBrownac2f40b2010-06-01 19:37:31 +1000995 roundup(DIV_ROUND_UP(num_pages*4, 8), sizeof(unsigned long)),
NeilBrowne16b68b2006-06-26 00:27:45 -0700996 GFP_KERNEL);
NeilBrownbc7f77d2005-06-21 17:17:17 -0700997 if (!bitmap->filemap_attr)
NeilBrown4ad13662007-07-17 04:06:13 -0700998 goto err;
NeilBrown32a76272005-06-21 17:17:14 -0700999
NeilBrown32a76272005-06-21 17:17:14 -07001000 oldindex = ~0L;
1001
1002 for (i = 0; i < chunks; i++) {
NeilBrownbd926c62005-11-08 21:39:32 -08001003 int b;
NeilBrownece5cff2009-12-14 12:49:56 +11001004 index = file_page_index(bitmap, i);
1005 bit = file_page_offset(bitmap, i);
NeilBrown32a76272005-06-21 17:17:14 -07001006 if (index != oldindex) { /* this is a new page, read it in */
NeilBrownd785a062006-06-26 00:27:48 -07001007 int count;
NeilBrown32a76272005-06-21 17:17:14 -07001008 /* unmap the old page, we're done with it */
NeilBrownd785a062006-06-26 00:27:48 -07001009 if (index == num_pages-1)
NeilBrownece5cff2009-12-14 12:49:56 +11001010 count = bytes - index * PAGE_SIZE;
NeilBrownd785a062006-06-26 00:27:48 -07001011 else
1012 count = PAGE_SIZE;
NeilBrownece5cff2009-12-14 12:49:56 +11001013 if (index == 0 && bitmap->sb_page) {
NeilBrown32a76272005-06-21 17:17:14 -07001014 /*
1015 * if we're here then the superblock page
1016 * contains some bits (PAGE_SIZE != sizeof sb)
1017 * we've already read it in, so just use it
1018 */
1019 page = bitmap->sb_page;
1020 offset = sizeof(bitmap_super_t);
NeilBrown53845272009-01-09 08:31:05 +11001021 if (!file)
Vasiliy Kulikov5c04f552010-10-01 14:18:12 -07001022 page = read_sb_page(
1023 bitmap->mddev,
1024 bitmap->mddev->bitmap_info.offset,
1025 page,
1026 index, count);
NeilBrowna654b9d82005-06-21 17:17:27 -07001027 } else if (file) {
NeilBrownd785a062006-06-26 00:27:48 -07001028 page = read_page(file, index, bitmap, count);
NeilBrowna654b9d82005-06-21 17:17:27 -07001029 offset = 0;
1030 } else {
NeilBrown42a04b52009-12-14 12:49:53 +11001031 page = read_sb_page(bitmap->mddev,
1032 bitmap->mddev->bitmap_info.offset,
NeilBrowna2ed9612008-12-19 16:25:01 +11001033 NULL,
1034 index, count);
NeilBrown32a76272005-06-21 17:17:14 -07001035 offset = 0;
1036 }
NeilBrowna654b9d82005-06-21 17:17:27 -07001037 if (IS_ERR(page)) { /* read error */
1038 ret = PTR_ERR(page);
NeilBrown4ad13662007-07-17 04:06:13 -07001039 goto err;
NeilBrowna654b9d82005-06-21 17:17:27 -07001040 }
1041
NeilBrown32a76272005-06-21 17:17:14 -07001042 oldindex = index;
1043 oldpage = page;
NeilBrown32a76272005-06-21 17:17:14 -07001044
NeilBrownb74fd282009-05-07 12:47:19 +10001045 bitmap->filemap[bitmap->file_pages++] = page;
1046 bitmap->last_page_size = count;
1047
NeilBrown32a76272005-06-21 17:17:14 -07001048 if (outofdate) {
1049 /*
1050 * if bitmap is out of date, dirty the
NeilBrownac2f40b2010-06-01 19:37:31 +10001051 * whole page and write it out
NeilBrown32a76272005-06-21 17:17:14 -07001052 */
NeilBrownea03aff2006-01-06 00:20:34 -08001053 paddr = kmap_atomic(page, KM_USER0);
1054 memset(paddr + offset, 0xff,
NeilBrown6a079972005-09-09 16:23:44 -07001055 PAGE_SIZE - offset);
NeilBrownea03aff2006-01-06 00:20:34 -08001056 kunmap_atomic(paddr, KM_USER0);
NeilBrown4ad13662007-07-17 04:06:13 -07001057 write_page(bitmap, page, 1);
1058
1059 ret = -EIO;
NeilBrownb74fd282009-05-07 12:47:19 +10001060 if (bitmap->flags & BITMAP_WRITE_ERROR)
NeilBrown4ad13662007-07-17 04:06:13 -07001061 goto err;
NeilBrown32a76272005-06-21 17:17:14 -07001062 }
NeilBrown32a76272005-06-21 17:17:14 -07001063 }
NeilBrownea03aff2006-01-06 00:20:34 -08001064 paddr = kmap_atomic(page, KM_USER0);
NeilBrownbd926c62005-11-08 21:39:32 -08001065 if (bitmap->flags & BITMAP_HOSTENDIAN)
NeilBrownea03aff2006-01-06 00:20:34 -08001066 b = test_bit(bit, paddr);
NeilBrownbd926c62005-11-08 21:39:32 -08001067 else
Akinobu Mita6b33aff2011-03-23 16:42:13 -07001068 b = test_bit_le(bit, paddr);
NeilBrownea03aff2006-01-06 00:20:34 -08001069 kunmap_atomic(paddr, KM_USER0);
NeilBrownbd926c62005-11-08 21:39:32 -08001070 if (b) {
NeilBrown32a76272005-06-21 17:17:14 -07001071 /* if the disk bit is set, set the memory bit */
NeilBrowndb305e52009-05-07 12:49:06 +10001072 int needed = ((sector_t)(i+1) << (CHUNK_BLOCK_SHIFT(bitmap))
1073 >= start);
1074 bitmap_set_memory_bits(bitmap,
1075 (sector_t)i << CHUNK_BLOCK_SHIFT(bitmap),
1076 needed);
NeilBrown32a76272005-06-21 17:17:14 -07001077 bit_cnt++;
1078 }
NeilBrown32a76272005-06-21 17:17:14 -07001079 }
1080
NeilBrownac2f40b2010-06-01 19:37:31 +10001081 /* everything went OK */
NeilBrown32a76272005-06-21 17:17:14 -07001082 ret = 0;
1083 bitmap_mask_state(bitmap, BITMAP_STALE, MASK_UNSET);
1084
NeilBrown32a76272005-06-21 17:17:14 -07001085 if (bit_cnt) { /* Kick recovery if any bits were set */
1086 set_bit(MD_RECOVERY_NEEDED, &bitmap->mddev->recovery);
1087 md_wakeup_thread(bitmap->mddev->thread);
1088 }
1089
NeilBrown32a76272005-06-21 17:17:14 -07001090 printk(KERN_INFO "%s: bitmap initialized from disk: "
Jonathan Brassow9c810752011-06-08 17:59:30 -05001091 "read %lu/%lu pages, set %lu of %lu bits\n",
1092 bmname(bitmap), bitmap->file_pages, num_pages, bit_cnt, chunks);
NeilBrown32a76272005-06-21 17:17:14 -07001093
NeilBrown4ad13662007-07-17 04:06:13 -07001094 return 0;
1095
1096 err:
1097 printk(KERN_INFO "%s: bitmap initialisation failed: %d\n",
1098 bmname(bitmap), ret);
NeilBrown32a76272005-06-21 17:17:14 -07001099 return ret;
1100}
1101
NeilBrowna654b9d82005-06-21 17:17:27 -07001102void bitmap_write_all(struct bitmap *bitmap)
1103{
1104 /* We don't actually write all bitmap blocks here,
1105 * just flag them as needing to be written
1106 */
NeilBrownec7a3192006-06-26 00:27:45 -07001107 int i;
NeilBrowna654b9d82005-06-21 17:17:27 -07001108
NeilBrownac2f40b2010-06-01 19:37:31 +10001109 for (i = 0; i < bitmap->file_pages; i++)
NeilBrownec7a3192006-06-26 00:27:45 -07001110 set_page_attr(bitmap, bitmap->filemap[i],
1111 BITMAP_PAGE_NEEDWRITE);
NeilBrown2585f3e2011-09-21 15:37:46 +10001112 bitmap->allclean = 0;
NeilBrowna654b9d82005-06-21 17:17:27 -07001113}
1114
NeilBrown32a76272005-06-21 17:17:14 -07001115static void bitmap_count_page(struct bitmap *bitmap, sector_t offset, int inc)
1116{
1117 sector_t chunk = offset >> CHUNK_BLOCK_SHIFT(bitmap);
1118 unsigned long page = chunk >> PAGE_COUNTER_SHIFT;
1119 bitmap->bp[page].count += inc;
NeilBrown32a76272005-06-21 17:17:14 -07001120 bitmap_checkfree(bitmap, page);
1121}
1122static bitmap_counter_t *bitmap_get_counter(struct bitmap *bitmap,
NeilBrown57dab0b2010-10-19 10:03:39 +11001123 sector_t offset, sector_t *blocks,
NeilBrown32a76272005-06-21 17:17:14 -07001124 int create);
1125
1126/*
1127 * bitmap daemon -- periodically wakes up to clean bits and flush pages
1128 * out to disk
1129 */
1130
NeilBrownfd01b882011-10-11 16:47:53 +11001131void bitmap_daemon_work(struct mddev *mddev)
NeilBrown32a76272005-06-21 17:17:14 -07001132{
NeilBrownaa5cbd12009-12-14 12:49:46 +11001133 struct bitmap *bitmap;
NeilBrownaa3163f2005-06-21 17:17:22 -07001134 unsigned long j;
NeilBrown32a76272005-06-21 17:17:14 -07001135 unsigned long flags;
1136 struct page *page = NULL, *lastpage = NULL;
NeilBrown57dab0b2010-10-19 10:03:39 +11001137 sector_t blocks;
NeilBrownea03aff2006-01-06 00:20:34 -08001138 void *paddr;
NeilBrown32a76272005-06-21 17:17:14 -07001139
NeilBrownaa5cbd12009-12-14 12:49:46 +11001140 /* Use a mutex to guard daemon_work against
1141 * bitmap_destroy.
1142 */
NeilBrownc3d97142009-12-14 12:49:52 +11001143 mutex_lock(&mddev->bitmap_info.mutex);
NeilBrownaa5cbd12009-12-14 12:49:46 +11001144 bitmap = mddev->bitmap;
1145 if (bitmap == NULL) {
NeilBrownc3d97142009-12-14 12:49:52 +11001146 mutex_unlock(&mddev->bitmap_info.mutex);
NeilBrown4ad13662007-07-17 04:06:13 -07001147 return;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001148 }
NeilBrown42a04b52009-12-14 12:49:53 +11001149 if (time_before(jiffies, bitmap->daemon_lastrun
NeilBrown1b04be92009-12-14 12:49:53 +11001150 + bitmap->mddev->bitmap_info.daemon_sleep))
NeilBrown7be3dfe2008-03-10 11:43:48 -07001151 goto done;
1152
NeilBrown32a76272005-06-21 17:17:14 -07001153 bitmap->daemon_lastrun = jiffies;
NeilBrown8311c292008-03-04 14:29:30 -08001154 if (bitmap->allclean) {
1155 bitmap->mddev->thread->timeout = MAX_SCHEDULE_TIMEOUT;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001156 goto done;
NeilBrown8311c292008-03-04 14:29:30 -08001157 }
1158 bitmap->allclean = 1;
NeilBrown32a76272005-06-21 17:17:14 -07001159
NeilBrownbe512692009-05-26 09:41:17 +10001160 spin_lock_irqsave(&bitmap->lock, flags);
NeilBrown32a76272005-06-21 17:17:14 -07001161 for (j = 0; j < bitmap->chunks; j++) {
1162 bitmap_counter_t *bmc;
Jonathan Brassow3520fa42011-07-27 11:00:37 +10001163 if (!bitmap->filemap)
1164 /* error or shutdown */
1165 break;
1166
1167 page = filemap_get_page(bitmap, j);
NeilBrown32a76272005-06-21 17:17:14 -07001168
1169 if (page != lastpage) {
NeilBrownaa3163f2005-06-21 17:17:22 -07001170 /* skip this page unless it's marked as needing cleaning */
NeilBrown5a537df2011-09-21 15:37:46 +10001171 if (!test_page_attr(bitmap, page, BITMAP_PAGE_PENDING)) {
NeilBrownec7a3192006-06-26 00:27:45 -07001172 int need_write = test_page_attr(bitmap, page,
1173 BITMAP_PAGE_NEEDWRITE);
NeilBrowna647e4b2006-06-26 00:27:46 -07001174 if (need_write)
NeilBrownaa3163f2005-06-21 17:17:22 -07001175 clear_page_attr(bitmap, page, BITMAP_PAGE_NEEDWRITE);
NeilBrowna647e4b2006-06-26 00:27:46 -07001176
NeilBrownaa3163f2005-06-21 17:17:22 -07001177 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown2585f3e2011-09-21 15:37:46 +10001178 if (need_write)
NeilBrown4ad13662007-07-17 04:06:13 -07001179 write_page(bitmap, page, 0);
NeilBrownbe512692009-05-26 09:41:17 +10001180 spin_lock_irqsave(&bitmap->lock, flags);
1181 j |= (PAGE_BITS - 1);
NeilBrownaa3163f2005-06-21 17:17:22 -07001182 continue;
1183 }
1184
NeilBrown32a76272005-06-21 17:17:14 -07001185 /* grab the new page, sync and release the old */
NeilBrown32a76272005-06-21 17:17:14 -07001186 if (lastpage != NULL) {
NeilBrown2585f3e2011-09-21 15:37:46 +10001187 if (test_page_attr(bitmap, lastpage,
1188 BITMAP_PAGE_NEEDWRITE)) {
1189 clear_page_attr(bitmap, lastpage,
1190 BITMAP_PAGE_NEEDWRITE);
NeilBrown32a76272005-06-21 17:17:14 -07001191 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown4ad13662007-07-17 04:06:13 -07001192 write_page(bitmap, lastpage, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001193 } else {
NeilBrown2585f3e2011-09-21 15:37:46 +10001194 set_page_attr(bitmap, lastpage,
1195 BITMAP_PAGE_NEEDWRITE);
1196 bitmap->allclean = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001197 spin_unlock_irqrestore(&bitmap->lock, flags);
1198 }
NeilBrown32a76272005-06-21 17:17:14 -07001199 } else
1200 spin_unlock_irqrestore(&bitmap->lock, flags);
1201 lastpage = page;
Neil Browna0da84f2008-06-28 08:31:22 +10001202
1203 /* We are possibly going to clear some bits, so make
1204 * sure that events_cleared is up-to-date.
1205 */
NeilBrownece5cff2009-12-14 12:49:56 +11001206 if (bitmap->need_sync &&
1207 bitmap->mddev->bitmap_info.external == 0) {
Neil Browna0da84f2008-06-28 08:31:22 +10001208 bitmap_super_t *sb;
1209 bitmap->need_sync = 0;
1210 sb = kmap_atomic(bitmap->sb_page, KM_USER0);
1211 sb->events_cleared =
1212 cpu_to_le64(bitmap->events_cleared);
1213 kunmap_atomic(sb, KM_USER0);
1214 write_page(bitmap, bitmap->sb_page, 1);
1215 }
NeilBrown32a76272005-06-21 17:17:14 -07001216 spin_lock_irqsave(&bitmap->lock, flags);
NeilBrownece5cff2009-12-14 12:49:56 +11001217 if (!bitmap->need_sync)
NeilBrown5a537df2011-09-21 15:37:46 +10001218 clear_page_attr(bitmap, page, BITMAP_PAGE_PENDING);
NeilBrown2585f3e2011-09-21 15:37:46 +10001219 else
1220 bitmap->allclean = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001221 }
NeilBrowndb305e52009-05-07 12:49:06 +10001222 bmc = bitmap_get_counter(bitmap,
1223 (sector_t)j << CHUNK_BLOCK_SHIFT(bitmap),
1224 &blocks, 0);
NeilBrown5a537df2011-09-21 15:37:46 +10001225 if (!bmc)
1226 j |= PAGE_COUNTER_MASK;
1227 else if (*bmc) {
NeilBrown5a537df2011-09-21 15:37:46 +10001228 if (*bmc == 1 && !bitmap->need_sync) {
NeilBrown32a76272005-06-21 17:17:14 -07001229 /* we can clear the bit */
1230 *bmc = 0;
NeilBrowndb305e52009-05-07 12:49:06 +10001231 bitmap_count_page(bitmap,
1232 (sector_t)j << CHUNK_BLOCK_SHIFT(bitmap),
NeilBrown32a76272005-06-21 17:17:14 -07001233 -1);
1234
1235 /* clear the bit */
Jonathan Brassow3520fa42011-07-27 11:00:37 +10001236 paddr = kmap_atomic(page, KM_USER0);
1237 if (bitmap->flags & BITMAP_HOSTENDIAN)
1238 clear_bit(file_page_offset(bitmap, j),
1239 paddr);
1240 else
1241 __clear_bit_le(
NeilBrown5a537df2011-09-21 15:37:46 +10001242 file_page_offset(bitmap,
1243 j),
1244 paddr);
Jonathan Brassow3520fa42011-07-27 11:00:37 +10001245 kunmap_atomic(paddr, KM_USER0);
NeilBrown5a537df2011-09-21 15:37:46 +10001246 } else if (*bmc <= 2) {
1247 *bmc = 1; /* maybe clear the bit next time */
1248 set_page_attr(bitmap, page, BITMAP_PAGE_PENDING);
NeilBrown2585f3e2011-09-21 15:37:46 +10001249 bitmap->allclean = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001250 }
NeilBrown5a537df2011-09-21 15:37:46 +10001251 }
NeilBrown32a76272005-06-21 17:17:14 -07001252 }
NeilBrownbe512692009-05-26 09:41:17 +10001253 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown32a76272005-06-21 17:17:14 -07001254
1255 /* now sync the final page */
Jonathan Brassow3520fa42011-07-27 11:00:37 +10001256 if (lastpage != NULL) {
NeilBrown32a76272005-06-21 17:17:14 -07001257 spin_lock_irqsave(&bitmap->lock, flags);
NeilBrownec7a3192006-06-26 00:27:45 -07001258 if (test_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE)) {
NeilBrown32a76272005-06-21 17:17:14 -07001259 clear_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE);
1260 spin_unlock_irqrestore(&bitmap->lock, flags);
Jonathan Brassow3520fa42011-07-27 11:00:37 +10001261 write_page(bitmap, lastpage, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001262 } else {
1263 set_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE);
NeilBrown2585f3e2011-09-21 15:37:46 +10001264 bitmap->allclean = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001265 spin_unlock_irqrestore(&bitmap->lock, flags);
1266 }
NeilBrown32a76272005-06-21 17:17:14 -07001267 }
1268
NeilBrown7be3dfe2008-03-10 11:43:48 -07001269 done:
NeilBrown8311c292008-03-04 14:29:30 -08001270 if (bitmap->allclean == 0)
NeilBrownac2f40b2010-06-01 19:37:31 +10001271 bitmap->mddev->thread->timeout =
NeilBrown1b04be92009-12-14 12:49:53 +11001272 bitmap->mddev->bitmap_info.daemon_sleep;
NeilBrownc3d97142009-12-14 12:49:52 +11001273 mutex_unlock(&mddev->bitmap_info.mutex);
NeilBrown32a76272005-06-21 17:17:14 -07001274}
1275
NeilBrown32a76272005-06-21 17:17:14 -07001276static bitmap_counter_t *bitmap_get_counter(struct bitmap *bitmap,
NeilBrown57dab0b2010-10-19 10:03:39 +11001277 sector_t offset, sector_t *blocks,
NeilBrown32a76272005-06-21 17:17:14 -07001278 int create)
NeilBrownee305ac2009-09-23 18:06:44 +10001279__releases(bitmap->lock)
1280__acquires(bitmap->lock)
NeilBrown32a76272005-06-21 17:17:14 -07001281{
1282 /* If 'create', we might release the lock and reclaim it.
1283 * The lock must have been taken with interrupts enabled.
1284 * If !create, we don't release the lock.
1285 */
1286 sector_t chunk = offset >> CHUNK_BLOCK_SHIFT(bitmap);
1287 unsigned long page = chunk >> PAGE_COUNTER_SHIFT;
1288 unsigned long pageoff = (chunk & PAGE_COUNTER_MASK) << COUNTER_BYTE_SHIFT;
1289 sector_t csize;
NeilBrownef425672010-06-01 19:37:33 +10001290 int err;
NeilBrown32a76272005-06-21 17:17:14 -07001291
NeilBrownef425672010-06-01 19:37:33 +10001292 err = bitmap_checkpage(bitmap, page, create);
1293
1294 if (bitmap->bp[page].hijacked ||
1295 bitmap->bp[page].map == NULL)
1296 csize = ((sector_t)1) << (CHUNK_BLOCK_SHIFT(bitmap) +
1297 PAGE_COUNTER_SHIFT - 1);
1298 else
NeilBrown32a76272005-06-21 17:17:14 -07001299 csize = ((sector_t)1) << (CHUNK_BLOCK_SHIFT(bitmap));
NeilBrownef425672010-06-01 19:37:33 +10001300 *blocks = csize - (offset & (csize - 1));
1301
1302 if (err < 0)
NeilBrown32a76272005-06-21 17:17:14 -07001303 return NULL;
NeilBrownef425672010-06-01 19:37:33 +10001304
NeilBrown32a76272005-06-21 17:17:14 -07001305 /* now locked ... */
1306
1307 if (bitmap->bp[page].hijacked) { /* hijacked pointer */
1308 /* should we use the first or second counter field
1309 * of the hijacked pointer? */
1310 int hi = (pageoff > PAGE_COUNTER_MASK);
NeilBrown32a76272005-06-21 17:17:14 -07001311 return &((bitmap_counter_t *)
1312 &bitmap->bp[page].map)[hi];
NeilBrownef425672010-06-01 19:37:33 +10001313 } else /* page is allocated */
NeilBrown32a76272005-06-21 17:17:14 -07001314 return (bitmap_counter_t *)
1315 &(bitmap->bp[page].map[pageoff]);
NeilBrown32a76272005-06-21 17:17:14 -07001316}
1317
NeilBrown4b6d2872005-09-09 16:23:47 -07001318int bitmap_startwrite(struct bitmap *bitmap, sector_t offset, unsigned long sectors, int behind)
NeilBrown32a76272005-06-21 17:17:14 -07001319{
NeilBrownac2f40b2010-06-01 19:37:31 +10001320 if (!bitmap)
1321 return 0;
NeilBrown4b6d2872005-09-09 16:23:47 -07001322
1323 if (behind) {
Paul Clements696fcd52010-03-08 16:02:37 +11001324 int bw;
NeilBrown4b6d2872005-09-09 16:23:47 -07001325 atomic_inc(&bitmap->behind_writes);
Paul Clements696fcd52010-03-08 16:02:37 +11001326 bw = atomic_read(&bitmap->behind_writes);
1327 if (bw > bitmap->behind_writes_used)
1328 bitmap->behind_writes_used = bw;
1329
NeilBrown36a4e1f2011-10-07 14:23:17 +11001330 pr_debug("inc write-behind count %d/%lu\n",
1331 bw, bitmap->mddev->bitmap_info.max_write_behind);
NeilBrown4b6d2872005-09-09 16:23:47 -07001332 }
1333
NeilBrown32a76272005-06-21 17:17:14 -07001334 while (sectors) {
NeilBrown57dab0b2010-10-19 10:03:39 +11001335 sector_t blocks;
NeilBrown32a76272005-06-21 17:17:14 -07001336 bitmap_counter_t *bmc;
1337
1338 spin_lock_irq(&bitmap->lock);
1339 bmc = bitmap_get_counter(bitmap, offset, &blocks, 1);
1340 if (!bmc) {
1341 spin_unlock_irq(&bitmap->lock);
1342 return 0;
1343 }
1344
Namhyung Kim27d5ea02011-06-09 11:42:57 +10001345 if (unlikely(COUNTER(*bmc) == COUNTER_MAX)) {
Neil Brownda6e1a32007-02-08 14:20:37 -08001346 DEFINE_WAIT(__wait);
1347 /* note that it is safe to do the prepare_to_wait
1348 * after the test as long as we do it before dropping
1349 * the spinlock.
1350 */
1351 prepare_to_wait(&bitmap->overflow_wait, &__wait,
1352 TASK_UNINTERRUPTIBLE);
1353 spin_unlock_irq(&bitmap->lock);
Jens Axboe7eaceac2011-03-10 08:52:07 +01001354 io_schedule();
Neil Brownda6e1a32007-02-08 14:20:37 -08001355 finish_wait(&bitmap->overflow_wait, &__wait);
1356 continue;
1357 }
1358
NeilBrownac2f40b2010-06-01 19:37:31 +10001359 switch (*bmc) {
NeilBrown32a76272005-06-21 17:17:14 -07001360 case 0:
1361 bitmap_file_set_bit(bitmap, offset);
NeilBrownac2f40b2010-06-01 19:37:31 +10001362 bitmap_count_page(bitmap, offset, 1);
NeilBrown32a76272005-06-21 17:17:14 -07001363 /* fall through */
1364 case 1:
1365 *bmc = 2;
1366 }
Neil Brownda6e1a32007-02-08 14:20:37 -08001367
NeilBrown32a76272005-06-21 17:17:14 -07001368 (*bmc)++;
1369
1370 spin_unlock_irq(&bitmap->lock);
1371
1372 offset += blocks;
1373 if (sectors > blocks)
1374 sectors -= blocks;
NeilBrownac2f40b2010-06-01 19:37:31 +10001375 else
1376 sectors = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001377 }
1378 return 0;
1379}
NeilBrownac2f40b2010-06-01 19:37:31 +10001380EXPORT_SYMBOL(bitmap_startwrite);
NeilBrown32a76272005-06-21 17:17:14 -07001381
1382void bitmap_endwrite(struct bitmap *bitmap, sector_t offset, unsigned long sectors,
NeilBrown4b6d2872005-09-09 16:23:47 -07001383 int success, int behind)
NeilBrown32a76272005-06-21 17:17:14 -07001384{
NeilBrownac2f40b2010-06-01 19:37:31 +10001385 if (!bitmap)
1386 return;
NeilBrown4b6d2872005-09-09 16:23:47 -07001387 if (behind) {
NeilBrowne5551902010-03-31 11:21:44 +11001388 if (atomic_dec_and_test(&bitmap->behind_writes))
1389 wake_up(&bitmap->behind_wait);
NeilBrown36a4e1f2011-10-07 14:23:17 +11001390 pr_debug("dec write-behind count %d/%lu\n",
1391 atomic_read(&bitmap->behind_writes),
1392 bitmap->mddev->bitmap_info.max_write_behind);
NeilBrown4b6d2872005-09-09 16:23:47 -07001393 }
NeilBrownd0a4bb42009-03-31 14:27:02 +11001394 if (bitmap->mddev->degraded)
1395 /* Never clear bits or update events_cleared when degraded */
1396 success = 0;
NeilBrown4b6d2872005-09-09 16:23:47 -07001397
NeilBrown32a76272005-06-21 17:17:14 -07001398 while (sectors) {
NeilBrown57dab0b2010-10-19 10:03:39 +11001399 sector_t blocks;
NeilBrown32a76272005-06-21 17:17:14 -07001400 unsigned long flags;
1401 bitmap_counter_t *bmc;
1402
1403 spin_lock_irqsave(&bitmap->lock, flags);
1404 bmc = bitmap_get_counter(bitmap, offset, &blocks, 0);
1405 if (!bmc) {
1406 spin_unlock_irqrestore(&bitmap->lock, flags);
1407 return;
1408 }
1409
Neil Browna0da84f2008-06-28 08:31:22 +10001410 if (success &&
1411 bitmap->events_cleared < bitmap->mddev->events) {
1412 bitmap->events_cleared = bitmap->mddev->events;
1413 bitmap->need_sync = 1;
NeilBrown5ff5aff2010-06-01 19:37:32 +10001414 sysfs_notify_dirent_safe(bitmap->sysfs_can_clear);
Neil Browna0da84f2008-06-28 08:31:22 +10001415 }
1416
Namhyung Kim27d5ea02011-06-09 11:42:57 +10001417 if (!success && !NEEDED(*bmc))
NeilBrown32a76272005-06-21 17:17:14 -07001418 *bmc |= NEEDED_MASK;
1419
Namhyung Kim27d5ea02011-06-09 11:42:57 +10001420 if (COUNTER(*bmc) == COUNTER_MAX)
Neil Brownda6e1a32007-02-08 14:20:37 -08001421 wake_up(&bitmap->overflow_wait);
1422
NeilBrown32a76272005-06-21 17:17:14 -07001423 (*bmc)--;
NeilBrown2585f3e2011-09-21 15:37:46 +10001424 if (*bmc <= 2) {
NeilBrown32a76272005-06-21 17:17:14 -07001425 set_page_attr(bitmap,
NeilBrowne384e582010-06-01 19:37:34 +10001426 filemap_get_page(
1427 bitmap,
1428 offset >> CHUNK_BLOCK_SHIFT(bitmap)),
NeilBrown5a537df2011-09-21 15:37:46 +10001429 BITMAP_PAGE_PENDING);
NeilBrown2585f3e2011-09-21 15:37:46 +10001430 bitmap->allclean = 0;
1431 }
NeilBrown32a76272005-06-21 17:17:14 -07001432 spin_unlock_irqrestore(&bitmap->lock, flags);
1433 offset += blocks;
1434 if (sectors > blocks)
1435 sectors -= blocks;
NeilBrownac2f40b2010-06-01 19:37:31 +10001436 else
1437 sectors = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001438 }
1439}
NeilBrownac2f40b2010-06-01 19:37:31 +10001440EXPORT_SYMBOL(bitmap_endwrite);
NeilBrown32a76272005-06-21 17:17:14 -07001441
NeilBrown57dab0b2010-10-19 10:03:39 +11001442static int __bitmap_start_sync(struct bitmap *bitmap, sector_t offset, sector_t *blocks,
NeilBrown1187cf02009-03-31 14:27:02 +11001443 int degraded)
NeilBrown32a76272005-06-21 17:17:14 -07001444{
1445 bitmap_counter_t *bmc;
1446 int rv;
1447 if (bitmap == NULL) {/* FIXME or bitmap set as 'failed' */
1448 *blocks = 1024;
1449 return 1; /* always resync if no bitmap */
1450 }
1451 spin_lock_irq(&bitmap->lock);
1452 bmc = bitmap_get_counter(bitmap, offset, blocks, 0);
1453 rv = 0;
1454 if (bmc) {
1455 /* locked */
1456 if (RESYNC(*bmc))
1457 rv = 1;
1458 else if (NEEDED(*bmc)) {
1459 rv = 1;
NeilBrown6a806c52005-07-15 03:56:35 -07001460 if (!degraded) { /* don't set/clear bits if degraded */
1461 *bmc |= RESYNC_MASK;
1462 *bmc &= ~NEEDED_MASK;
1463 }
NeilBrown32a76272005-06-21 17:17:14 -07001464 }
1465 }
1466 spin_unlock_irq(&bitmap->lock);
1467 return rv;
1468}
1469
NeilBrown57dab0b2010-10-19 10:03:39 +11001470int bitmap_start_sync(struct bitmap *bitmap, sector_t offset, sector_t *blocks,
NeilBrown1187cf02009-03-31 14:27:02 +11001471 int degraded)
1472{
1473 /* bitmap_start_sync must always report on multiples of whole
1474 * pages, otherwise resync (which is very PAGE_SIZE based) will
1475 * get confused.
1476 * So call __bitmap_start_sync repeatedly (if needed) until
1477 * At least PAGE_SIZE>>9 blocks are covered.
1478 * Return the 'or' of the result.
1479 */
1480 int rv = 0;
NeilBrown57dab0b2010-10-19 10:03:39 +11001481 sector_t blocks1;
NeilBrown1187cf02009-03-31 14:27:02 +11001482
1483 *blocks = 0;
1484 while (*blocks < (PAGE_SIZE>>9)) {
1485 rv |= __bitmap_start_sync(bitmap, offset,
1486 &blocks1, degraded);
1487 offset += blocks1;
1488 *blocks += blocks1;
1489 }
1490 return rv;
1491}
NeilBrownac2f40b2010-06-01 19:37:31 +10001492EXPORT_SYMBOL(bitmap_start_sync);
NeilBrown1187cf02009-03-31 14:27:02 +11001493
NeilBrown57dab0b2010-10-19 10:03:39 +11001494void bitmap_end_sync(struct bitmap *bitmap, sector_t offset, sector_t *blocks, int aborted)
NeilBrown32a76272005-06-21 17:17:14 -07001495{
1496 bitmap_counter_t *bmc;
1497 unsigned long flags;
NeilBrownac2f40b2010-06-01 19:37:31 +10001498
1499 if (bitmap == NULL) {
NeilBrown32a76272005-06-21 17:17:14 -07001500 *blocks = 1024;
1501 return;
1502 }
1503 spin_lock_irqsave(&bitmap->lock, flags);
1504 bmc = bitmap_get_counter(bitmap, offset, blocks, 0);
1505 if (bmc == NULL)
1506 goto unlock;
1507 /* locked */
NeilBrown32a76272005-06-21 17:17:14 -07001508 if (RESYNC(*bmc)) {
1509 *bmc &= ~RESYNC_MASK;
1510
1511 if (!NEEDED(*bmc) && aborted)
1512 *bmc |= NEEDED_MASK;
1513 else {
NeilBrown2585f3e2011-09-21 15:37:46 +10001514 if (*bmc <= 2) {
NeilBrown32a76272005-06-21 17:17:14 -07001515 set_page_attr(bitmap,
1516 filemap_get_page(bitmap, offset >> CHUNK_BLOCK_SHIFT(bitmap)),
NeilBrown5a537df2011-09-21 15:37:46 +10001517 BITMAP_PAGE_PENDING);
NeilBrown2585f3e2011-09-21 15:37:46 +10001518 bitmap->allclean = 0;
1519 }
NeilBrown32a76272005-06-21 17:17:14 -07001520 }
1521 }
1522 unlock:
1523 spin_unlock_irqrestore(&bitmap->lock, flags);
1524}
NeilBrownac2f40b2010-06-01 19:37:31 +10001525EXPORT_SYMBOL(bitmap_end_sync);
NeilBrown32a76272005-06-21 17:17:14 -07001526
1527void bitmap_close_sync(struct bitmap *bitmap)
1528{
1529 /* Sync has finished, and any bitmap chunks that weren't synced
1530 * properly have been aborted. It remains to us to clear the
1531 * RESYNC bit wherever it is still on
1532 */
1533 sector_t sector = 0;
NeilBrown57dab0b2010-10-19 10:03:39 +11001534 sector_t blocks;
NeilBrownb47490c2008-02-06 01:39:50 -08001535 if (!bitmap)
1536 return;
NeilBrown32a76272005-06-21 17:17:14 -07001537 while (sector < bitmap->mddev->resync_max_sectors) {
1538 bitmap_end_sync(bitmap, sector, &blocks, 0);
NeilBrownb47490c2008-02-06 01:39:50 -08001539 sector += blocks;
NeilBrown32a76272005-06-21 17:17:14 -07001540 }
1541}
NeilBrownac2f40b2010-06-01 19:37:31 +10001542EXPORT_SYMBOL(bitmap_close_sync);
NeilBrown32a76272005-06-21 17:17:14 -07001543
NeilBrownb47490c2008-02-06 01:39:50 -08001544void bitmap_cond_end_sync(struct bitmap *bitmap, sector_t sector)
1545{
1546 sector_t s = 0;
NeilBrown57dab0b2010-10-19 10:03:39 +11001547 sector_t blocks;
NeilBrownb47490c2008-02-06 01:39:50 -08001548
1549 if (!bitmap)
1550 return;
1551 if (sector == 0) {
1552 bitmap->last_end_sync = jiffies;
1553 return;
1554 }
1555 if (time_before(jiffies, (bitmap->last_end_sync
NeilBrown1b04be92009-12-14 12:49:53 +11001556 + bitmap->mddev->bitmap_info.daemon_sleep)))
NeilBrownb47490c2008-02-06 01:39:50 -08001557 return;
1558 wait_event(bitmap->mddev->recovery_wait,
1559 atomic_read(&bitmap->mddev->recovery_active) == 0);
1560
NeilBrown75d3da42011-01-14 09:14:34 +11001561 bitmap->mddev->curr_resync_completed = sector;
NeilBrown070dc6d2010-08-30 17:33:34 +10001562 set_bit(MD_CHANGE_CLEAN, &bitmap->mddev->flags);
NeilBrownb47490c2008-02-06 01:39:50 -08001563 sector &= ~((1ULL << CHUNK_BLOCK_SHIFT(bitmap)) - 1);
1564 s = 0;
1565 while (s < sector && s < bitmap->mddev->resync_max_sectors) {
1566 bitmap_end_sync(bitmap, s, &blocks, 0);
1567 s += blocks;
1568 }
1569 bitmap->last_end_sync = jiffies;
NeilBrownacb180b2009-04-14 16:28:34 +10001570 sysfs_notify(&bitmap->mddev->kobj, NULL, "sync_completed");
NeilBrownb47490c2008-02-06 01:39:50 -08001571}
NeilBrownac2f40b2010-06-01 19:37:31 +10001572EXPORT_SYMBOL(bitmap_cond_end_sync);
NeilBrownb47490c2008-02-06 01:39:50 -08001573
NeilBrown6a079972005-09-09 16:23:44 -07001574static void bitmap_set_memory_bits(struct bitmap *bitmap, sector_t offset, int needed)
NeilBrown32a76272005-06-21 17:17:14 -07001575{
1576 /* For each chunk covered by any of these sectors, set the
NeilBrown193f1c92005-08-04 12:53:33 -07001577 * counter to 1 and set resync_needed. They should all
NeilBrown32a76272005-06-21 17:17:14 -07001578 * be 0 at this point
1579 */
NeilBrown193f1c92005-08-04 12:53:33 -07001580
NeilBrown57dab0b2010-10-19 10:03:39 +11001581 sector_t secs;
NeilBrown193f1c92005-08-04 12:53:33 -07001582 bitmap_counter_t *bmc;
1583 spin_lock_irq(&bitmap->lock);
1584 bmc = bitmap_get_counter(bitmap, offset, &secs, 1);
1585 if (!bmc) {
NeilBrown32a76272005-06-21 17:17:14 -07001586 spin_unlock_irq(&bitmap->lock);
NeilBrown193f1c92005-08-04 12:53:33 -07001587 return;
NeilBrown32a76272005-06-21 17:17:14 -07001588 }
NeilBrownac2f40b2010-06-01 19:37:31 +10001589 if (!*bmc) {
NeilBrown193f1c92005-08-04 12:53:33 -07001590 struct page *page;
NeilBrownac2f40b2010-06-01 19:37:31 +10001591 *bmc = 1 | (needed ? NEEDED_MASK : 0);
NeilBrown193f1c92005-08-04 12:53:33 -07001592 bitmap_count_page(bitmap, offset, 1);
1593 page = filemap_get_page(bitmap, offset >> CHUNK_BLOCK_SHIFT(bitmap));
NeilBrown5a537df2011-09-21 15:37:46 +10001594 set_page_attr(bitmap, page, BITMAP_PAGE_PENDING);
NeilBrown2585f3e2011-09-21 15:37:46 +10001595 bitmap->allclean = 0;
NeilBrown193f1c92005-08-04 12:53:33 -07001596 }
1597 spin_unlock_irq(&bitmap->lock);
NeilBrown32a76272005-06-21 17:17:14 -07001598}
1599
Paul Clements9b1d1da2006-10-03 01:15:49 -07001600/* dirty the memory and file bits for bitmap chunks "s" to "e" */
1601void bitmap_dirty_bits(struct bitmap *bitmap, unsigned long s, unsigned long e)
1602{
1603 unsigned long chunk;
1604
1605 for (chunk = s; chunk <= e; chunk++) {
NeilBrowndb305e52009-05-07 12:49:06 +10001606 sector_t sec = (sector_t)chunk << CHUNK_BLOCK_SHIFT(bitmap);
Paul Clements9b1d1da2006-10-03 01:15:49 -07001607 bitmap_set_memory_bits(bitmap, sec, 1);
1608 bitmap_file_set_bit(bitmap, sec);
NeilBrownffa23322009-12-14 12:49:56 +11001609 if (sec < bitmap->mddev->recovery_cp)
1610 /* We are asserting that the array is dirty,
1611 * so move the recovery_cp address back so
1612 * that it is obvious that it is dirty
1613 */
1614 bitmap->mddev->recovery_cp = sec;
Paul Clements9b1d1da2006-10-03 01:15:49 -07001615 }
1616}
1617
NeilBrown32a76272005-06-21 17:17:14 -07001618/*
NeilBrown6b8b3e82005-08-04 12:53:35 -07001619 * flush out any pending updates
1620 */
NeilBrownfd01b882011-10-11 16:47:53 +11001621void bitmap_flush(struct mddev *mddev)
NeilBrown6b8b3e82005-08-04 12:53:35 -07001622{
1623 struct bitmap *bitmap = mddev->bitmap;
NeilBrown42a04b52009-12-14 12:49:53 +11001624 long sleep;
NeilBrown6b8b3e82005-08-04 12:53:35 -07001625
1626 if (!bitmap) /* there was no bitmap */
1627 return;
1628
1629 /* run the daemon_work three time to ensure everything is flushed
1630 * that can be
1631 */
NeilBrown1b04be92009-12-14 12:49:53 +11001632 sleep = mddev->bitmap_info.daemon_sleep * 2;
NeilBrown42a04b52009-12-14 12:49:53 +11001633 bitmap->daemon_lastrun -= sleep;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001634 bitmap_daemon_work(mddev);
NeilBrown42a04b52009-12-14 12:49:53 +11001635 bitmap->daemon_lastrun -= sleep;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001636 bitmap_daemon_work(mddev);
NeilBrown42a04b52009-12-14 12:49:53 +11001637 bitmap->daemon_lastrun -= sleep;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001638 bitmap_daemon_work(mddev);
NeilBrown6b8b3e82005-08-04 12:53:35 -07001639 bitmap_update_sb(bitmap);
1640}
1641
1642/*
NeilBrown32a76272005-06-21 17:17:14 -07001643 * free memory that was allocated
1644 */
NeilBrown3178b0d2005-09-09 16:23:50 -07001645static void bitmap_free(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -07001646{
1647 unsigned long k, pages;
1648 struct bitmap_page *bp;
NeilBrown32a76272005-06-21 17:17:14 -07001649
1650 if (!bitmap) /* there was no bitmap */
1651 return;
1652
NeilBrown32a76272005-06-21 17:17:14 -07001653 /* release the bitmap file and kill the daemon */
1654 bitmap_file_put(bitmap);
1655
1656 bp = bitmap->bp;
1657 pages = bitmap->pages;
1658
1659 /* free all allocated memory */
1660
NeilBrown32a76272005-06-21 17:17:14 -07001661 if (bp) /* deallocate the page memory */
1662 for (k = 0; k < pages; k++)
1663 if (bp[k].map && !bp[k].hijacked)
1664 kfree(bp[k].map);
1665 kfree(bp);
1666 kfree(bitmap);
1667}
NeilBrownaa5cbd12009-12-14 12:49:46 +11001668
NeilBrownfd01b882011-10-11 16:47:53 +11001669void bitmap_destroy(struct mddev *mddev)
NeilBrown3178b0d2005-09-09 16:23:50 -07001670{
1671 struct bitmap *bitmap = mddev->bitmap;
1672
1673 if (!bitmap) /* there was no bitmap */
1674 return;
1675
NeilBrownc3d97142009-12-14 12:49:52 +11001676 mutex_lock(&mddev->bitmap_info.mutex);
NeilBrown3178b0d2005-09-09 16:23:50 -07001677 mddev->bitmap = NULL; /* disconnect from the md device */
NeilBrownc3d97142009-12-14 12:49:52 +11001678 mutex_unlock(&mddev->bitmap_info.mutex);
NeilBrownb15c2e52006-01-06 00:20:16 -08001679 if (mddev->thread)
1680 mddev->thread->timeout = MAX_SCHEDULE_TIMEOUT;
NeilBrown3178b0d2005-09-09 16:23:50 -07001681
NeilBrownece5cff2009-12-14 12:49:56 +11001682 if (bitmap->sysfs_can_clear)
1683 sysfs_put(bitmap->sysfs_can_clear);
1684
NeilBrown3178b0d2005-09-09 16:23:50 -07001685 bitmap_free(bitmap);
1686}
NeilBrown32a76272005-06-21 17:17:14 -07001687
1688/*
1689 * initialize the bitmap structure
1690 * if this returns an error, bitmap_destroy must be called to do clean up
1691 */
NeilBrownfd01b882011-10-11 16:47:53 +11001692int bitmap_create(struct mddev *mddev)
NeilBrown32a76272005-06-21 17:17:14 -07001693{
1694 struct bitmap *bitmap;
NeilBrown1f593902009-04-20 11:50:24 +10001695 sector_t blocks = mddev->resync_max_sectors;
NeilBrown32a76272005-06-21 17:17:14 -07001696 unsigned long chunks;
1697 unsigned long pages;
NeilBrownc3d97142009-12-14 12:49:52 +11001698 struct file *file = mddev->bitmap_info.file;
NeilBrown32a76272005-06-21 17:17:14 -07001699 int err;
NeilBrown5ff5aff2010-06-01 19:37:32 +10001700 struct sysfs_dirent *bm = NULL;
NeilBrown32a76272005-06-21 17:17:14 -07001701
Alexey Dobriyan5f6e3c832006-10-11 01:22:26 -07001702 BUILD_BUG_ON(sizeof(bitmap_super_t) != 256);
NeilBrown32a76272005-06-21 17:17:14 -07001703
NeilBrowne384e582010-06-01 19:37:34 +10001704 if (!file
Jonathan Brassow3520fa42011-07-27 11:00:37 +10001705 && !mddev->bitmap_info.offset) /* bitmap disabled, nothing to do */
NeilBrown32a76272005-06-21 17:17:14 -07001706 return 0;
1707
NeilBrownc3d97142009-12-14 12:49:52 +11001708 BUG_ON(file && mddev->bitmap_info.offset);
NeilBrowna654b9d82005-06-21 17:17:27 -07001709
NeilBrown9ffae0c2006-01-06 00:20:32 -08001710 bitmap = kzalloc(sizeof(*bitmap), GFP_KERNEL);
NeilBrown32a76272005-06-21 17:17:14 -07001711 if (!bitmap)
1712 return -ENOMEM;
1713
NeilBrown32a76272005-06-21 17:17:14 -07001714 spin_lock_init(&bitmap->lock);
NeilBrownce25c312006-06-26 00:27:49 -07001715 atomic_set(&bitmap->pending_writes, 0);
1716 init_waitqueue_head(&bitmap->write_wait);
Neil Brownda6e1a32007-02-08 14:20:37 -08001717 init_waitqueue_head(&bitmap->overflow_wait);
NeilBrowne5551902010-03-31 11:21:44 +11001718 init_waitqueue_head(&bitmap->behind_wait);
NeilBrownce25c312006-06-26 00:27:49 -07001719
NeilBrown32a76272005-06-21 17:17:14 -07001720 bitmap->mddev = mddev;
NeilBrown32a76272005-06-21 17:17:14 -07001721
NeilBrown5ff5aff2010-06-01 19:37:32 +10001722 if (mddev->kobj.sd)
1723 bm = sysfs_get_dirent(mddev->kobj.sd, NULL, "bitmap");
NeilBrownece5cff2009-12-14 12:49:56 +11001724 if (bm) {
Eric W. Biederman3ff195b2010-03-30 11:31:26 -07001725 bitmap->sysfs_can_clear = sysfs_get_dirent(bm, NULL, "can_clear");
NeilBrownece5cff2009-12-14 12:49:56 +11001726 sysfs_put(bm);
1727 } else
1728 bitmap->sysfs_can_clear = NULL;
1729
NeilBrown32a76272005-06-21 17:17:14 -07001730 bitmap->file = file;
NeilBrownce25c312006-06-26 00:27:49 -07001731 if (file) {
1732 get_file(file);
NeilBrownae8fa282009-10-16 15:56:01 +11001733 /* As future accesses to this file will use bmap,
1734 * and bypass the page cache, we must sync the file
1735 * first.
1736 */
Christoph Hellwig8018ab02010-03-22 17:32:25 +01001737 vfs_fsync(file, 1);
NeilBrownce25c312006-06-26 00:27:49 -07001738 }
NeilBrown42a04b52009-12-14 12:49:53 +11001739 /* read superblock from bitmap file (this sets mddev->bitmap_info.chunksize) */
Jonathan Brassow9c810752011-06-08 17:59:30 -05001740 if (!mddev->bitmap_info.external) {
1741 /*
1742 * If 'MD_ARRAY_FIRST_USE' is set, then device-mapper is
1743 * instructing us to create a new on-disk bitmap instance.
1744 */
1745 if (test_and_clear_bit(MD_ARRAY_FIRST_USE, &mddev->flags))
1746 err = bitmap_new_disk_sb(bitmap);
1747 else
1748 err = bitmap_read_sb(bitmap);
1749 } else {
NeilBrownece5cff2009-12-14 12:49:56 +11001750 err = 0;
1751 if (mddev->bitmap_info.chunksize == 0 ||
1752 mddev->bitmap_info.daemon_sleep == 0)
1753 /* chunksize and time_base need to be
1754 * set first. */
1755 err = -EINVAL;
1756 }
NeilBrown32a76272005-06-21 17:17:14 -07001757 if (err)
NeilBrown3178b0d2005-09-09 16:23:50 -07001758 goto error;
NeilBrown32a76272005-06-21 17:17:14 -07001759
NeilBrown624ce4f2009-12-14 12:49:56 +11001760 bitmap->daemon_lastrun = jiffies;
NeilBrown42a04b52009-12-14 12:49:53 +11001761 bitmap->chunkshift = ffz(~mddev->bitmap_info.chunksize);
NeilBrown32a76272005-06-21 17:17:14 -07001762
1763 /* now that chunksize and chunkshift are set, we can use these macros */
NeilBrownac2f40b2010-06-01 19:37:31 +10001764 chunks = (blocks + CHUNK_BLOCK_RATIO(bitmap) - 1) >>
NeilBrown1f593902009-04-20 11:50:24 +10001765 CHUNK_BLOCK_SHIFT(bitmap);
NeilBrownac2f40b2010-06-01 19:37:31 +10001766 pages = (chunks + PAGE_COUNTER_RATIO - 1) / PAGE_COUNTER_RATIO;
NeilBrown32a76272005-06-21 17:17:14 -07001767
1768 BUG_ON(!pages);
1769
1770 bitmap->chunks = chunks;
1771 bitmap->pages = pages;
1772 bitmap->missing_pages = pages;
NeilBrown32a76272005-06-21 17:17:14 -07001773
NeilBrown9ffae0c2006-01-06 00:20:32 -08001774 bitmap->bp = kzalloc(pages * sizeof(*bitmap->bp), GFP_KERNEL);
NeilBrown29d32472011-10-11 16:49:56 +11001775
NeilBrown3178b0d2005-09-09 16:23:50 -07001776 err = -ENOMEM;
NeilBrown32a76272005-06-21 17:17:14 -07001777 if (!bitmap->bp)
NeilBrown3178b0d2005-09-09 16:23:50 -07001778 goto error;
NeilBrown32a76272005-06-21 17:17:14 -07001779
NeilBrown69e51b42010-06-01 19:37:35 +10001780 printk(KERN_INFO "created bitmap (%lu pages) for device %s\n",
1781 pages, bmname(bitmap));
1782
1783 mddev->bitmap = bitmap;
1784
1785
1786 return (bitmap->flags & BITMAP_WRITE_ERROR) ? -EIO : 0;
1787
1788 error:
1789 bitmap_free(bitmap);
1790 return err;
1791}
1792
NeilBrownfd01b882011-10-11 16:47:53 +11001793int bitmap_load(struct mddev *mddev)
NeilBrown69e51b42010-06-01 19:37:35 +10001794{
1795 int err = 0;
Jonathan Brassow3520fa42011-07-27 11:00:37 +10001796 sector_t start = 0;
NeilBrown69e51b42010-06-01 19:37:35 +10001797 sector_t sector = 0;
1798 struct bitmap *bitmap = mddev->bitmap;
1799
1800 if (!bitmap)
1801 goto out;
1802
1803 /* Clear out old bitmap info first: Either there is none, or we
1804 * are resuming after someone else has possibly changed things,
1805 * so we should forget old cached info.
1806 * All chunks should be clean, but some might need_sync.
1807 */
1808 while (sector < mddev->resync_max_sectors) {
NeilBrown57dab0b2010-10-19 10:03:39 +11001809 sector_t blocks;
NeilBrown69e51b42010-06-01 19:37:35 +10001810 bitmap_start_sync(bitmap, sector, &blocks, 0);
1811 sector += blocks;
1812 }
1813 bitmap_close_sync(bitmap);
1814
Jonathan Brassow3520fa42011-07-27 11:00:37 +10001815 if (mddev->degraded == 0
1816 || bitmap->events_cleared == mddev->events)
1817 /* no need to keep dirty bits to optimise a
1818 * re-add of a missing device */
1819 start = mddev->recovery_cp;
NeilBrown69e51b42010-06-01 19:37:35 +10001820
Jonathan Brassow3520fa42011-07-27 11:00:37 +10001821 err = bitmap_init_from_disk(bitmap, start);
1822
NeilBrown32a76272005-06-21 17:17:14 -07001823 if (err)
NeilBrown69e51b42010-06-01 19:37:35 +10001824 goto out;
NeilBrown3178b0d2005-09-09 16:23:50 -07001825
NeilBrown1b04be92009-12-14 12:49:53 +11001826 mddev->thread->timeout = mddev->bitmap_info.daemon_sleep;
NeilBrown9cd30fd2009-12-14 12:49:54 +11001827 md_wakeup_thread(mddev->thread);
NeilBrownb15c2e52006-01-06 00:20:16 -08001828
NeilBrown4ad13662007-07-17 04:06:13 -07001829 bitmap_update_sb(bitmap);
1830
NeilBrown69e51b42010-06-01 19:37:35 +10001831 if (bitmap->flags & BITMAP_WRITE_ERROR)
1832 err = -EIO;
1833out:
NeilBrown3178b0d2005-09-09 16:23:50 -07001834 return err;
NeilBrown32a76272005-06-21 17:17:14 -07001835}
NeilBrown69e51b42010-06-01 19:37:35 +10001836EXPORT_SYMBOL_GPL(bitmap_load);
NeilBrown32a76272005-06-21 17:17:14 -07001837
NeilBrown43a70502009-12-14 12:49:55 +11001838static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11001839location_show(struct mddev *mddev, char *page)
NeilBrown43a70502009-12-14 12:49:55 +11001840{
1841 ssize_t len;
NeilBrownac2f40b2010-06-01 19:37:31 +10001842 if (mddev->bitmap_info.file)
NeilBrown43a70502009-12-14 12:49:55 +11001843 len = sprintf(page, "file");
NeilBrownac2f40b2010-06-01 19:37:31 +10001844 else if (mddev->bitmap_info.offset)
NeilBrown43a70502009-12-14 12:49:55 +11001845 len = sprintf(page, "%+lld", (long long)mddev->bitmap_info.offset);
NeilBrownac2f40b2010-06-01 19:37:31 +10001846 else
NeilBrown43a70502009-12-14 12:49:55 +11001847 len = sprintf(page, "none");
1848 len += sprintf(page+len, "\n");
1849 return len;
1850}
1851
1852static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11001853location_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrown43a70502009-12-14 12:49:55 +11001854{
1855
1856 if (mddev->pers) {
1857 if (!mddev->pers->quiesce)
1858 return -EBUSY;
1859 if (mddev->recovery || mddev->sync_thread)
1860 return -EBUSY;
1861 }
1862
1863 if (mddev->bitmap || mddev->bitmap_info.file ||
1864 mddev->bitmap_info.offset) {
1865 /* bitmap already configured. Only option is to clear it */
1866 if (strncmp(buf, "none", 4) != 0)
1867 return -EBUSY;
1868 if (mddev->pers) {
1869 mddev->pers->quiesce(mddev, 1);
1870 bitmap_destroy(mddev);
1871 mddev->pers->quiesce(mddev, 0);
1872 }
1873 mddev->bitmap_info.offset = 0;
1874 if (mddev->bitmap_info.file) {
1875 struct file *f = mddev->bitmap_info.file;
1876 mddev->bitmap_info.file = NULL;
1877 restore_bitmap_write_access(f);
1878 fput(f);
1879 }
1880 } else {
1881 /* No bitmap, OK to set a location */
1882 long long offset;
1883 if (strncmp(buf, "none", 4) == 0)
1884 /* nothing to be done */;
1885 else if (strncmp(buf, "file:", 5) == 0) {
1886 /* Not supported yet */
1887 return -EINVAL;
1888 } else {
1889 int rv;
1890 if (buf[0] == '+')
1891 rv = strict_strtoll(buf+1, 10, &offset);
1892 else
1893 rv = strict_strtoll(buf, 10, &offset);
1894 if (rv)
1895 return rv;
1896 if (offset == 0)
1897 return -EINVAL;
NeilBrownece5cff2009-12-14 12:49:56 +11001898 if (mddev->bitmap_info.external == 0 &&
1899 mddev->major_version == 0 &&
NeilBrown43a70502009-12-14 12:49:55 +11001900 offset != mddev->bitmap_info.default_offset)
1901 return -EINVAL;
1902 mddev->bitmap_info.offset = offset;
1903 if (mddev->pers) {
1904 mddev->pers->quiesce(mddev, 1);
1905 rv = bitmap_create(mddev);
1906 if (rv) {
1907 bitmap_destroy(mddev);
1908 mddev->bitmap_info.offset = 0;
1909 }
1910 mddev->pers->quiesce(mddev, 0);
1911 if (rv)
1912 return rv;
1913 }
1914 }
1915 }
1916 if (!mddev->external) {
1917 /* Ensure new bitmap info is stored in
1918 * metadata promptly.
1919 */
1920 set_bit(MD_CHANGE_DEVS, &mddev->flags);
1921 md_wakeup_thread(mddev->thread);
1922 }
1923 return len;
1924}
1925
1926static struct md_sysfs_entry bitmap_location =
1927__ATTR(location, S_IRUGO|S_IWUSR, location_show, location_store);
1928
1929static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11001930timeout_show(struct mddev *mddev, char *page)
NeilBrown43a70502009-12-14 12:49:55 +11001931{
1932 ssize_t len;
1933 unsigned long secs = mddev->bitmap_info.daemon_sleep / HZ;
1934 unsigned long jifs = mddev->bitmap_info.daemon_sleep % HZ;
NeilBrownac2f40b2010-06-01 19:37:31 +10001935
NeilBrown43a70502009-12-14 12:49:55 +11001936 len = sprintf(page, "%lu", secs);
1937 if (jifs)
1938 len += sprintf(page+len, ".%03u", jiffies_to_msecs(jifs));
1939 len += sprintf(page+len, "\n");
1940 return len;
1941}
1942
1943static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11001944timeout_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrown43a70502009-12-14 12:49:55 +11001945{
1946 /* timeout can be set at any time */
1947 unsigned long timeout;
1948 int rv = strict_strtoul_scaled(buf, &timeout, 4);
1949 if (rv)
1950 return rv;
1951
1952 /* just to make sure we don't overflow... */
1953 if (timeout >= LONG_MAX / HZ)
1954 return -EINVAL;
1955
1956 timeout = timeout * HZ / 10000;
1957
1958 if (timeout >= MAX_SCHEDULE_TIMEOUT)
1959 timeout = MAX_SCHEDULE_TIMEOUT-1;
1960 if (timeout < 1)
1961 timeout = 1;
1962 mddev->bitmap_info.daemon_sleep = timeout;
1963 if (mddev->thread) {
1964 /* if thread->timeout is MAX_SCHEDULE_TIMEOUT, then
1965 * the bitmap is all clean and we don't need to
1966 * adjust the timeout right now
1967 */
1968 if (mddev->thread->timeout < MAX_SCHEDULE_TIMEOUT) {
1969 mddev->thread->timeout = timeout;
1970 md_wakeup_thread(mddev->thread);
1971 }
1972 }
1973 return len;
1974}
1975
1976static struct md_sysfs_entry bitmap_timeout =
1977__ATTR(time_base, S_IRUGO|S_IWUSR, timeout_show, timeout_store);
1978
1979static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11001980backlog_show(struct mddev *mddev, char *page)
NeilBrown43a70502009-12-14 12:49:55 +11001981{
1982 return sprintf(page, "%lu\n", mddev->bitmap_info.max_write_behind);
1983}
1984
1985static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11001986backlog_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrown43a70502009-12-14 12:49:55 +11001987{
1988 unsigned long backlog;
1989 int rv = strict_strtoul(buf, 10, &backlog);
1990 if (rv)
1991 return rv;
1992 if (backlog > COUNTER_MAX)
1993 return -EINVAL;
1994 mddev->bitmap_info.max_write_behind = backlog;
1995 return len;
1996}
1997
1998static struct md_sysfs_entry bitmap_backlog =
1999__ATTR(backlog, S_IRUGO|S_IWUSR, backlog_show, backlog_store);
2000
2001static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002002chunksize_show(struct mddev *mddev, char *page)
NeilBrown43a70502009-12-14 12:49:55 +11002003{
2004 return sprintf(page, "%lu\n", mddev->bitmap_info.chunksize);
2005}
2006
2007static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002008chunksize_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrown43a70502009-12-14 12:49:55 +11002009{
2010 /* Can only be changed when no bitmap is active */
2011 int rv;
2012 unsigned long csize;
2013 if (mddev->bitmap)
2014 return -EBUSY;
2015 rv = strict_strtoul(buf, 10, &csize);
2016 if (rv)
2017 return rv;
2018 if (csize < 512 ||
2019 !is_power_of_2(csize))
2020 return -EINVAL;
2021 mddev->bitmap_info.chunksize = csize;
2022 return len;
2023}
2024
2025static struct md_sysfs_entry bitmap_chunksize =
2026__ATTR(chunksize, S_IRUGO|S_IWUSR, chunksize_show, chunksize_store);
2027
NeilBrownfd01b882011-10-11 16:47:53 +11002028static ssize_t metadata_show(struct mddev *mddev, char *page)
NeilBrownece5cff2009-12-14 12:49:56 +11002029{
2030 return sprintf(page, "%s\n", (mddev->bitmap_info.external
2031 ? "external" : "internal"));
2032}
2033
NeilBrownfd01b882011-10-11 16:47:53 +11002034static ssize_t metadata_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrownece5cff2009-12-14 12:49:56 +11002035{
2036 if (mddev->bitmap ||
2037 mddev->bitmap_info.file ||
2038 mddev->bitmap_info.offset)
2039 return -EBUSY;
2040 if (strncmp(buf, "external", 8) == 0)
2041 mddev->bitmap_info.external = 1;
2042 else if (strncmp(buf, "internal", 8) == 0)
2043 mddev->bitmap_info.external = 0;
2044 else
2045 return -EINVAL;
2046 return len;
2047}
2048
2049static struct md_sysfs_entry bitmap_metadata =
2050__ATTR(metadata, S_IRUGO|S_IWUSR, metadata_show, metadata_store);
2051
NeilBrownfd01b882011-10-11 16:47:53 +11002052static ssize_t can_clear_show(struct mddev *mddev, char *page)
NeilBrownece5cff2009-12-14 12:49:56 +11002053{
2054 int len;
2055 if (mddev->bitmap)
2056 len = sprintf(page, "%s\n", (mddev->bitmap->need_sync ?
2057 "false" : "true"));
2058 else
2059 len = sprintf(page, "\n");
2060 return len;
2061}
2062
NeilBrownfd01b882011-10-11 16:47:53 +11002063static ssize_t can_clear_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrownece5cff2009-12-14 12:49:56 +11002064{
2065 if (mddev->bitmap == NULL)
2066 return -ENOENT;
2067 if (strncmp(buf, "false", 5) == 0)
2068 mddev->bitmap->need_sync = 1;
2069 else if (strncmp(buf, "true", 4) == 0) {
2070 if (mddev->degraded)
2071 return -EBUSY;
2072 mddev->bitmap->need_sync = 0;
2073 } else
2074 return -EINVAL;
2075 return len;
2076}
2077
2078static struct md_sysfs_entry bitmap_can_clear =
2079__ATTR(can_clear, S_IRUGO|S_IWUSR, can_clear_show, can_clear_store);
2080
Paul Clements696fcd52010-03-08 16:02:37 +11002081static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002082behind_writes_used_show(struct mddev *mddev, char *page)
Paul Clements696fcd52010-03-08 16:02:37 +11002083{
2084 if (mddev->bitmap == NULL)
2085 return sprintf(page, "0\n");
2086 return sprintf(page, "%lu\n",
2087 mddev->bitmap->behind_writes_used);
2088}
2089
2090static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002091behind_writes_used_reset(struct mddev *mddev, const char *buf, size_t len)
Paul Clements696fcd52010-03-08 16:02:37 +11002092{
2093 if (mddev->bitmap)
2094 mddev->bitmap->behind_writes_used = 0;
2095 return len;
2096}
2097
2098static struct md_sysfs_entry max_backlog_used =
2099__ATTR(max_backlog_used, S_IRUGO | S_IWUSR,
2100 behind_writes_used_show, behind_writes_used_reset);
2101
NeilBrown43a70502009-12-14 12:49:55 +11002102static struct attribute *md_bitmap_attrs[] = {
2103 &bitmap_location.attr,
2104 &bitmap_timeout.attr,
2105 &bitmap_backlog.attr,
2106 &bitmap_chunksize.attr,
NeilBrownece5cff2009-12-14 12:49:56 +11002107 &bitmap_metadata.attr,
2108 &bitmap_can_clear.attr,
Paul Clements696fcd52010-03-08 16:02:37 +11002109 &max_backlog_used.attr,
NeilBrown43a70502009-12-14 12:49:55 +11002110 NULL
2111};
2112struct attribute_group md_bitmap_group = {
2113 .name = "bitmap",
2114 .attrs = md_bitmap_attrs,
2115};
2116