2 * bitmap.c two-level bitmap (C) Peter T. Breuer (ptb@ot.uc3m.es) 2003
4 * bitmap_create - sets up the bitmap structure
5 * bitmap_destroy - destroys the bitmap structure
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
15 * flush after percent set rather than just time based. (maybe both).
16 * wait if count gets too high, wake when it drops to half.
19 #include <linux/blkdev.h>
20 #include <linux/module.h>
21 #include <linux/errno.h>
22 #include <linux/slab.h>
23 #include <linux/init.h>
24 #include <linux/timer.h>
25 #include <linux/sched.h>
26 #include <linux/list.h>
27 #include <linux/file.h>
28 #include <linux/mount.h>
29 #include <linux/buffer_head.h>
38 /* these are for debugging purposes only! */
40 /* define one and only one of these */
41 #define INJECT_FAULTS_1 0 /* cause bitmap_alloc_page to fail always */
42 #define INJECT_FAULTS_2 0 /* cause bitmap file to be kicked when first bit set*/
43 #define INJECT_FAULTS_3 0 /* treat bitmap file as kicked at init time */
44 #define INJECT_FAULTS_4 0 /* undef */
45 #define INJECT_FAULTS_5 0 /* undef */
46 #define INJECT_FAULTS_6 0
48 /* if these are defined, the driver will fail! debug only */
49 #define INJECT_FATAL_FAULT_1 0 /* fail kmalloc, causing bitmap_create to fail */
50 #define INJECT_FATAL_FAULT_2 0 /* undef */
51 #define INJECT_FATAL_FAULT_3 0 /* undef */
54 //#define DPRINTK PRINTK /* set this NULL to avoid verbose debug output */
55 #define DPRINTK(x...) do { } while(0)
59 # define PRINTK(x...) printk(KERN_DEBUG x)
65 static inline char * bmname(struct bitmap
*bitmap
)
67 return bitmap
->mddev
? mdname(bitmap
->mddev
) : "mdX";
72 * just a placeholder - calls kmalloc for bitmap pages
74 static unsigned char *bitmap_alloc_page(struct bitmap
*bitmap
)
78 #ifdef INJECT_FAULTS_1
81 page
= kmalloc(PAGE_SIZE
, GFP_NOIO
);
84 printk("%s: bitmap_alloc_page FAILED\n", bmname(bitmap
));
86 PRINTK("%s: bitmap_alloc_page: allocated page at %p\n",
87 bmname(bitmap
), page
);
92 * for now just a placeholder -- just calls kfree for bitmap pages
94 static void bitmap_free_page(struct bitmap
*bitmap
, unsigned char *page
)
96 PRINTK("%s: bitmap_free_page: free page %p\n", bmname(bitmap
), page
);
101 * check a page and, if necessary, allocate it (or hijack it if the alloc fails)
103 * 1) check to see if this page is allocated, if it's not then try to alloc
104 * 2) if the alloc fails, set the page's hijacked flag so we'll use the
105 * page pointer directly as a counter
107 * if we find our page, we increment the page's refcount so that it stays
108 * allocated while we're using it
110 static int bitmap_checkpage(struct bitmap
*bitmap
, unsigned long page
, int create
)
111 __releases(bitmap
->lock
)
112 __acquires(bitmap
->lock
)
114 unsigned char *mappage
;
116 if (page
>= bitmap
->pages
) {
117 /* This can happen if bitmap_start_sync goes beyond
118 * End-of-device while looking for a whole page.
125 if (bitmap
->bp
[page
].hijacked
) /* it's hijacked, don't try to alloc */
128 if (bitmap
->bp
[page
].map
) /* page is already allocated, just return */
134 spin_unlock_irq(&bitmap
->lock
);
136 /* this page has not been allocated yet */
138 if ((mappage
= bitmap_alloc_page(bitmap
)) == NULL
) {
139 PRINTK("%s: bitmap map page allocation failed, hijacking\n",
141 /* failed - set the hijacked flag so that we can use the
142 * pointer as a counter */
143 spin_lock_irq(&bitmap
->lock
);
144 if (!bitmap
->bp
[page
].map
)
145 bitmap
->bp
[page
].hijacked
= 1;
151 spin_lock_irq(&bitmap
->lock
);
153 /* recheck the page */
155 if (bitmap
->bp
[page
].map
|| bitmap
->bp
[page
].hijacked
) {
156 /* somebody beat us to getting the page */
157 bitmap_free_page(bitmap
, mappage
);
161 /* no page was in place and we have one, so install it */
163 memset(mappage
, 0, PAGE_SIZE
);
164 bitmap
->bp
[page
].map
= mappage
;
165 bitmap
->missing_pages
--;
171 /* if page is completely empty, put it back on the free list, or dealloc it */
172 /* if page was hijacked, unmark the flag so it might get alloced next time */
173 /* Note: lock should be held when calling this */
174 static void bitmap_checkfree(struct bitmap
*bitmap
, unsigned long page
)
178 if (bitmap
->bp
[page
].count
) /* page is still busy */
181 /* page is no longer in use, it can be released */
183 if (bitmap
->bp
[page
].hijacked
) { /* page was hijacked, undo this now */
184 bitmap
->bp
[page
].hijacked
= 0;
185 bitmap
->bp
[page
].map
= NULL
;
189 /* normal case, free the page */
192 /* actually ... let's not. We will probably need the page again exactly when
193 * memory is tight and we are flusing to disk
197 ptr
= bitmap
->bp
[page
].map
;
198 bitmap
->bp
[page
].map
= NULL
;
199 bitmap
->missing_pages
++;
200 bitmap_free_page(bitmap
, ptr
);
207 * bitmap file handling - read and write the bitmap file and its superblock
211 * basic page I/O operations
214 /* IO operations when bitmap is stored near all superblocks */
215 static struct page
*read_sb_page(mddev_t
*mddev
, loff_t offset
,
217 unsigned long index
, int size
)
219 /* choose a good rdev and read the page from there */
225 page
= alloc_page(GFP_KERNEL
);
227 return ERR_PTR(-ENOMEM
);
229 list_for_each_entry(rdev
, &mddev
->disks
, same_set
) {
230 if (! test_bit(In_sync
, &rdev
->flags
)
231 || test_bit(Faulty
, &rdev
->flags
))
234 target
= rdev
->sb_start
+ offset
+ index
* (PAGE_SIZE
/512);
236 if (sync_page_io(rdev
->bdev
, target
,
237 roundup(size
, bdev_logical_block_size(rdev
->bdev
)),
240 attach_page_buffers(page
, NULL
); /* so that free_buffer will
245 return ERR_PTR(-EIO
);
249 static mdk_rdev_t
*next_active_rdev(mdk_rdev_t
*rdev
, mddev_t
*mddev
)
251 /* Iterate the disks of an mddev, using rcu to protect access to the
252 * linked list, and raising the refcount of devices we return to ensure
253 * they don't disappear while in use.
254 * As devices are only added or removed when raid_disk is < 0 and
255 * nr_pending is 0 and In_sync is clear, the entries we return will
256 * still be in the same position on the list when we re-enter
257 * list_for_each_continue_rcu.
259 struct list_head
*pos
;
262 /* start at the beginning */
265 /* release the previous rdev and start from there. */
266 rdev_dec_pending(rdev
, mddev
);
267 pos
= &rdev
->same_set
;
269 list_for_each_continue_rcu(pos
, &mddev
->disks
) {
270 rdev
= list_entry(pos
, mdk_rdev_t
, same_set
);
271 if (rdev
->raid_disk
>= 0 &&
272 !test_bit(Faulty
, &rdev
->flags
)) {
273 /* this is a usable devices */
274 atomic_inc(&rdev
->nr_pending
);
283 static int write_sb_page(struct bitmap
*bitmap
, struct page
*page
, int wait
)
285 mdk_rdev_t
*rdev
= NULL
;
286 mddev_t
*mddev
= bitmap
->mddev
;
288 while ((rdev
= next_active_rdev(rdev
, mddev
)) != NULL
) {
289 int size
= PAGE_SIZE
;
290 loff_t offset
= mddev
->bitmap_info
.offset
;
291 if (page
->index
== bitmap
->file_pages
-1)
292 size
= roundup(bitmap
->last_page_size
,
293 bdev_logical_block_size(rdev
->bdev
));
294 /* Just make sure we aren't corrupting data or
297 if (mddev
->external
) {
298 /* Bitmap could be anywhere. */
299 if (rdev
->sb_start
+ offset
+ (page
->index
*(PAGE_SIZE
/512)) >
301 rdev
->sb_start
+ offset
<
302 rdev
->data_offset
+ mddev
->dev_sectors
+
305 } else if (offset
< 0) {
306 /* DATA BITMAP METADATA */
308 + (long)(page
->index
* (PAGE_SIZE
/512))
310 /* bitmap runs in to metadata */
312 if (rdev
->data_offset
+ mddev
->dev_sectors
313 > rdev
->sb_start
+ offset
)
314 /* data runs in to bitmap */
316 } else if (rdev
->sb_start
< rdev
->data_offset
) {
317 /* METADATA BITMAP DATA */
320 + page
->index
*(PAGE_SIZE
/512) + size
/512
322 /* bitmap runs in to data */
325 /* DATA METADATA BITMAP - no problems */
327 md_super_write(mddev
, rdev
,
328 rdev
->sb_start
+ offset
329 + page
->index
* (PAGE_SIZE
/512),
335 md_super_wait(mddev
);
342 static void bitmap_file_kick(struct bitmap
*bitmap
);
344 * write out a page to a file
346 static void write_page(struct bitmap
*bitmap
, struct page
*page
, int wait
)
348 struct buffer_head
*bh
;
350 if (bitmap
->file
== NULL
) {
351 switch (write_sb_page(bitmap
, page
, wait
)) {
353 bitmap
->flags
|= BITMAP_WRITE_ERROR
;
357 bh
= page_buffers(page
);
359 while (bh
&& bh
->b_blocknr
) {
360 atomic_inc(&bitmap
->pending_writes
);
361 set_buffer_locked(bh
);
362 set_buffer_mapped(bh
);
363 submit_bh(WRITE
, bh
);
364 bh
= bh
->b_this_page
;
368 wait_event(bitmap
->write_wait
,
369 atomic_read(&bitmap
->pending_writes
)==0);
372 if (bitmap
->flags
& BITMAP_WRITE_ERROR
)
373 bitmap_file_kick(bitmap
);
376 static void end_bitmap_write(struct buffer_head
*bh
, int uptodate
)
378 struct bitmap
*bitmap
= bh
->b_private
;
382 spin_lock_irqsave(&bitmap
->lock
, flags
);
383 bitmap
->flags
|= BITMAP_WRITE_ERROR
;
384 spin_unlock_irqrestore(&bitmap
->lock
, flags
);
386 if (atomic_dec_and_test(&bitmap
->pending_writes
))
387 wake_up(&bitmap
->write_wait
);
390 /* copied from buffer.c */
392 __clear_page_buffers(struct page
*page
)
394 ClearPagePrivate(page
);
395 set_page_private(page
, 0);
396 page_cache_release(page
);
398 static void free_buffers(struct page
*page
)
400 struct buffer_head
*bh
= page_buffers(page
);
403 struct buffer_head
*next
= bh
->b_this_page
;
404 free_buffer_head(bh
);
407 __clear_page_buffers(page
);
411 /* read a page from a file.
412 * We both read the page, and attach buffers to the page to record the
413 * address of each block (using bmap). These addresses will be used
414 * to write the block later, completely bypassing the filesystem.
415 * This usage is similar to how swap files are handled, and allows us
416 * to write to a file with no concerns of memory allocation failing.
418 static struct page
*read_page(struct file
*file
, unsigned long index
,
419 struct bitmap
*bitmap
,
422 struct page
*page
= NULL
;
423 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
424 struct buffer_head
*bh
;
427 PRINTK("read bitmap file (%dB @ %Lu)\n", (int)PAGE_SIZE
,
428 (unsigned long long)index
<< PAGE_SHIFT
);
430 page
= alloc_page(GFP_KERNEL
);
432 page
= ERR_PTR(-ENOMEM
);
436 bh
= alloc_page_buffers(page
, 1<<inode
->i_blkbits
, 0);
439 page
= ERR_PTR(-ENOMEM
);
442 attach_page_buffers(page
, bh
);
443 block
= index
<< (PAGE_SHIFT
- inode
->i_blkbits
);
448 bh
->b_blocknr
= bmap(inode
, block
);
449 if (bh
->b_blocknr
== 0) {
450 /* Cannot use this file! */
452 page
= ERR_PTR(-EINVAL
);
455 bh
->b_bdev
= inode
->i_sb
->s_bdev
;
456 if (count
< (1<<inode
->i_blkbits
))
459 count
-= (1<<inode
->i_blkbits
);
461 bh
->b_end_io
= end_bitmap_write
;
462 bh
->b_private
= bitmap
;
463 atomic_inc(&bitmap
->pending_writes
);
464 set_buffer_locked(bh
);
465 set_buffer_mapped(bh
);
469 bh
= bh
->b_this_page
;
473 wait_event(bitmap
->write_wait
,
474 atomic_read(&bitmap
->pending_writes
)==0);
475 if (bitmap
->flags
& BITMAP_WRITE_ERROR
) {
477 page
= ERR_PTR(-EIO
);
481 printk(KERN_ALERT
"md: bitmap read error: (%dB @ %Lu): %ld\n",
483 (unsigned long long)index
<< PAGE_SHIFT
,
489 * bitmap file superblock operations
492 /* update the event counter and sync the superblock to disk */
493 void bitmap_update_sb(struct bitmap
*bitmap
)
498 if (!bitmap
|| !bitmap
->mddev
) /* no bitmap for this array */
500 spin_lock_irqsave(&bitmap
->lock
, flags
);
501 if (!bitmap
->sb_page
) { /* no superblock */
502 spin_unlock_irqrestore(&bitmap
->lock
, flags
);
505 spin_unlock_irqrestore(&bitmap
->lock
, flags
);
506 sb
= (bitmap_super_t
*)kmap_atomic(bitmap
->sb_page
, KM_USER0
);
507 sb
->events
= cpu_to_le64(bitmap
->mddev
->events
);
508 if (bitmap
->mddev
->events
< bitmap
->events_cleared
) {
509 /* rocking back to read-only */
510 bitmap
->events_cleared
= bitmap
->mddev
->events
;
511 sb
->events_cleared
= cpu_to_le64(bitmap
->events_cleared
);
513 /* Just in case these have been changed via sysfs: */
514 sb
->daemon_sleep
= cpu_to_le32(bitmap
->mddev
->bitmap_info
.daemon_sleep
/HZ
);
515 sb
->write_behind
= cpu_to_le32(bitmap
->mddev
->bitmap_info
.max_write_behind
);
516 kunmap_atomic(sb
, KM_USER0
);
517 write_page(bitmap
, bitmap
->sb_page
, 1);
520 /* print out the bitmap file superblock */
521 void bitmap_print_sb(struct bitmap
*bitmap
)
525 if (!bitmap
|| !bitmap
->sb_page
)
527 sb
= (bitmap_super_t
*)kmap_atomic(bitmap
->sb_page
, KM_USER0
);
528 printk(KERN_DEBUG
"%s: bitmap file superblock:\n", bmname(bitmap
));
529 printk(KERN_DEBUG
" magic: %08x\n", le32_to_cpu(sb
->magic
));
530 printk(KERN_DEBUG
" version: %d\n", le32_to_cpu(sb
->version
));
531 printk(KERN_DEBUG
" uuid: %08x.%08x.%08x.%08x\n",
532 *(__u32
*)(sb
->uuid
+0),
533 *(__u32
*)(sb
->uuid
+4),
534 *(__u32
*)(sb
->uuid
+8),
535 *(__u32
*)(sb
->uuid
+12));
536 printk(KERN_DEBUG
" events: %llu\n",
537 (unsigned long long) le64_to_cpu(sb
->events
));
538 printk(KERN_DEBUG
"events cleared: %llu\n",
539 (unsigned long long) le64_to_cpu(sb
->events_cleared
));
540 printk(KERN_DEBUG
" state: %08x\n", le32_to_cpu(sb
->state
));
541 printk(KERN_DEBUG
" chunksize: %d B\n", le32_to_cpu(sb
->chunksize
));
542 printk(KERN_DEBUG
" daemon sleep: %ds\n", le32_to_cpu(sb
->daemon_sleep
));
543 printk(KERN_DEBUG
" sync size: %llu KB\n",
544 (unsigned long long)le64_to_cpu(sb
->sync_size
)/2);
545 printk(KERN_DEBUG
"max write behind: %d\n", le32_to_cpu(sb
->write_behind
));
546 kunmap_atomic(sb
, KM_USER0
);
549 /* read the superblock from the bitmap file and initialize some bitmap fields */
550 static int bitmap_read_sb(struct bitmap
*bitmap
)
554 unsigned long chunksize
, daemon_sleep
, write_behind
;
555 unsigned long long events
;
558 /* page 0 is the superblock, read it... */
560 loff_t isize
= i_size_read(bitmap
->file
->f_mapping
->host
);
561 int bytes
= isize
> PAGE_SIZE
? PAGE_SIZE
: isize
;
563 bitmap
->sb_page
= read_page(bitmap
->file
, 0, bitmap
, bytes
);
565 bitmap
->sb_page
= read_sb_page(bitmap
->mddev
,
566 bitmap
->mddev
->bitmap_info
.offset
,
568 0, sizeof(bitmap_super_t
));
570 if (IS_ERR(bitmap
->sb_page
)) {
571 err
= PTR_ERR(bitmap
->sb_page
);
572 bitmap
->sb_page
= NULL
;
576 sb
= (bitmap_super_t
*)kmap_atomic(bitmap
->sb_page
, KM_USER0
);
578 chunksize
= le32_to_cpu(sb
->chunksize
);
579 daemon_sleep
= le32_to_cpu(sb
->daemon_sleep
) * HZ
;
580 write_behind
= le32_to_cpu(sb
->write_behind
);
582 /* verify that the bitmap-specific fields are valid */
583 if (sb
->magic
!= cpu_to_le32(BITMAP_MAGIC
))
584 reason
= "bad magic";
585 else if (le32_to_cpu(sb
->version
) < BITMAP_MAJOR_LO
||
586 le32_to_cpu(sb
->version
) > BITMAP_MAJOR_HI
)
587 reason
= "unrecognized superblock version";
588 else if (chunksize
< 512)
589 reason
= "bitmap chunksize too small";
590 else if ((1 << ffz(~chunksize
)) != chunksize
)
591 reason
= "bitmap chunksize not a power of 2";
592 else if (daemon_sleep
< 1 || daemon_sleep
> MAX_SCHEDULE_TIMEOUT
)
593 reason
= "daemon sleep period out of range";
594 else if (write_behind
> COUNTER_MAX
)
595 reason
= "write-behind limit out of range (0 - 16383)";
597 printk(KERN_INFO
"%s: invalid bitmap file superblock: %s\n",
598 bmname(bitmap
), reason
);
602 /* keep the array size field of the bitmap superblock up to date */
603 sb
->sync_size
= cpu_to_le64(bitmap
->mddev
->resync_max_sectors
);
605 if (!bitmap
->mddev
->persistent
)
609 * if we have a persistent array superblock, compare the
610 * bitmap's UUID and event counter to the mddev's
612 if (memcmp(sb
->uuid
, bitmap
->mddev
->uuid
, 16)) {
613 printk(KERN_INFO
"%s: bitmap superblock UUID mismatch\n",
617 events
= le64_to_cpu(sb
->events
);
618 if (events
< bitmap
->mddev
->events
) {
619 printk(KERN_INFO
"%s: bitmap file is out of date (%llu < %llu) "
620 "-- forcing full recovery\n", bmname(bitmap
), events
,
621 (unsigned long long) bitmap
->mddev
->events
);
622 sb
->state
|= cpu_to_le32(BITMAP_STALE
);
625 /* assign fields using values from superblock */
626 bitmap
->mddev
->bitmap_info
.chunksize
= chunksize
;
627 bitmap
->mddev
->bitmap_info
.daemon_sleep
= daemon_sleep
;
628 bitmap
->daemon_lastrun
= jiffies
;
629 bitmap
->mddev
->bitmap_info
.max_write_behind
= write_behind
;
630 bitmap
->flags
|= le32_to_cpu(sb
->state
);
631 if (le32_to_cpu(sb
->version
) == BITMAP_MAJOR_HOSTENDIAN
)
632 bitmap
->flags
|= BITMAP_HOSTENDIAN
;
633 bitmap
->events_cleared
= le64_to_cpu(sb
->events_cleared
);
634 if (sb
->state
& cpu_to_le32(BITMAP_STALE
))
635 bitmap
->events_cleared
= bitmap
->mddev
->events
;
638 kunmap_atomic(sb
, KM_USER0
);
640 bitmap_print_sb(bitmap
);
644 enum bitmap_mask_op
{
649 /* record the state of the bitmap in the superblock. Return the old value */
650 static int bitmap_mask_state(struct bitmap
*bitmap
, enum bitmap_state bits
,
651 enum bitmap_mask_op op
)
657 spin_lock_irqsave(&bitmap
->lock
, flags
);
658 if (!bitmap
->sb_page
) { /* can't set the state */
659 spin_unlock_irqrestore(&bitmap
->lock
, flags
);
662 spin_unlock_irqrestore(&bitmap
->lock
, flags
);
663 sb
= (bitmap_super_t
*)kmap_atomic(bitmap
->sb_page
, KM_USER0
);
664 old
= le32_to_cpu(sb
->state
) & bits
;
666 case MASK_SET
: sb
->state
|= cpu_to_le32(bits
);
668 case MASK_UNSET
: sb
->state
&= cpu_to_le32(~bits
);
672 kunmap_atomic(sb
, KM_USER0
);
677 * general bitmap file operations
680 /* calculate the index of the page that contains this bit */
681 static inline unsigned long file_page_index(unsigned long chunk
)
683 return CHUNK_BIT_OFFSET(chunk
) >> PAGE_BIT_SHIFT
;
686 /* calculate the (bit) offset of this bit within a page */
687 static inline unsigned long file_page_offset(unsigned long chunk
)
689 return CHUNK_BIT_OFFSET(chunk
) & (PAGE_BITS
- 1);
693 * return a pointer to the page in the filemap that contains the given bit
695 * this lookup is complicated by the fact that the bitmap sb might be exactly
696 * 1 page (e.g., x86) or less than 1 page -- so the bitmap might start on page
699 static inline struct page
*filemap_get_page(struct bitmap
*bitmap
,
702 if (file_page_index(chunk
) >= bitmap
->file_pages
) return NULL
;
703 return bitmap
->filemap
[file_page_index(chunk
) - file_page_index(0)];
707 static void bitmap_file_unmap(struct bitmap
*bitmap
)
709 struct page
**map
, *sb_page
;
714 spin_lock_irqsave(&bitmap
->lock
, flags
);
715 map
= bitmap
->filemap
;
716 bitmap
->filemap
= NULL
;
717 attr
= bitmap
->filemap_attr
;
718 bitmap
->filemap_attr
= NULL
;
719 pages
= bitmap
->file_pages
;
720 bitmap
->file_pages
= 0;
721 sb_page
= bitmap
->sb_page
;
722 bitmap
->sb_page
= NULL
;
723 spin_unlock_irqrestore(&bitmap
->lock
, flags
);
726 if (map
[pages
]->index
!= 0) /* 0 is sb_page, release it below */
727 free_buffers(map
[pages
]);
732 free_buffers(sb_page
);
735 static void bitmap_file_put(struct bitmap
*bitmap
)
740 spin_lock_irqsave(&bitmap
->lock
, flags
);
743 spin_unlock_irqrestore(&bitmap
->lock
, flags
);
746 wait_event(bitmap
->write_wait
,
747 atomic_read(&bitmap
->pending_writes
)==0);
748 bitmap_file_unmap(bitmap
);
751 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
752 invalidate_mapping_pages(inode
->i_mapping
, 0, -1);
759 * bitmap_file_kick - if an error occurs while manipulating the bitmap file
760 * then it is no longer reliable, so we stop using it and we mark the file
761 * as failed in the superblock
763 static void bitmap_file_kick(struct bitmap
*bitmap
)
765 char *path
, *ptr
= NULL
;
767 if (bitmap_mask_state(bitmap
, BITMAP_STALE
, MASK_SET
) == 0) {
768 bitmap_update_sb(bitmap
);
771 path
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
773 ptr
= d_path(&bitmap
->file
->f_path
, path
,
778 "%s: kicking failed bitmap file %s from array!\n",
779 bmname(bitmap
), IS_ERR(ptr
) ? "" : ptr
);
784 "%s: disabling internal bitmap due to errors\n",
788 bitmap_file_put(bitmap
);
793 enum bitmap_page_attr
{
794 BITMAP_PAGE_DIRTY
= 0, // there are set bits that need to be synced
795 BITMAP_PAGE_CLEAN
= 1, // there are bits that might need to be cleared
796 BITMAP_PAGE_NEEDWRITE
=2, // there are cleared bits that need to be synced
799 static inline void set_page_attr(struct bitmap
*bitmap
, struct page
*page
,
800 enum bitmap_page_attr attr
)
802 __set_bit((page
->index
<<2) + attr
, bitmap
->filemap_attr
);
805 static inline void clear_page_attr(struct bitmap
*bitmap
, struct page
*page
,
806 enum bitmap_page_attr attr
)
808 __clear_bit((page
->index
<<2) + attr
, bitmap
->filemap_attr
);
811 static inline unsigned long test_page_attr(struct bitmap
*bitmap
, struct page
*page
,
812 enum bitmap_page_attr attr
)
814 return test_bit((page
->index
<<2) + attr
, bitmap
->filemap_attr
);
818 * bitmap_file_set_bit -- called before performing a write to the md device
819 * to set (and eventually sync) a particular bit in the bitmap file
821 * we set the bit immediately, then we record the page number so that
822 * when an unplug occurs, we can flush the dirty pages out to disk
824 static void bitmap_file_set_bit(struct bitmap
*bitmap
, sector_t block
)
829 unsigned long chunk
= block
>> CHUNK_BLOCK_SHIFT(bitmap
);
831 if (!bitmap
->filemap
) {
835 page
= filemap_get_page(bitmap
, chunk
);
837 bit
= file_page_offset(chunk
);
840 kaddr
= kmap_atomic(page
, KM_USER0
);
841 if (bitmap
->flags
& BITMAP_HOSTENDIAN
)
844 ext2_set_bit(bit
, kaddr
);
845 kunmap_atomic(kaddr
, KM_USER0
);
846 PRINTK("set file bit %lu page %lu\n", bit
, page
->index
);
848 /* record page number so it gets flushed to disk when unplug occurs */
849 set_page_attr(bitmap
, page
, BITMAP_PAGE_DIRTY
);
853 /* this gets called when the md device is ready to unplug its underlying
854 * (slave) device queues -- before we let any writes go down, we need to
855 * sync the dirty pages of the bitmap file to disk */
856 void bitmap_unplug(struct bitmap
*bitmap
)
858 unsigned long i
, flags
;
859 int dirty
, need_write
;
866 /* look at each page to see if there are any set bits that need to be
867 * flushed out to disk */
868 for (i
= 0; i
< bitmap
->file_pages
; i
++) {
869 spin_lock_irqsave(&bitmap
->lock
, flags
);
870 if (!bitmap
->filemap
) {
871 spin_unlock_irqrestore(&bitmap
->lock
, flags
);
874 page
= bitmap
->filemap
[i
];
875 dirty
= test_page_attr(bitmap
, page
, BITMAP_PAGE_DIRTY
);
876 need_write
= test_page_attr(bitmap
, page
, BITMAP_PAGE_NEEDWRITE
);
877 clear_page_attr(bitmap
, page
, BITMAP_PAGE_DIRTY
);
878 clear_page_attr(bitmap
, page
, BITMAP_PAGE_NEEDWRITE
);
881 spin_unlock_irqrestore(&bitmap
->lock
, flags
);
883 if (dirty
| need_write
)
884 write_page(bitmap
, page
, 0);
886 if (wait
) { /* if any writes were performed, we need to wait on them */
888 wait_event(bitmap
->write_wait
,
889 atomic_read(&bitmap
->pending_writes
)==0);
891 md_super_wait(bitmap
->mddev
);
893 if (bitmap
->flags
& BITMAP_WRITE_ERROR
)
894 bitmap_file_kick(bitmap
);
897 static void bitmap_set_memory_bits(struct bitmap
*bitmap
, sector_t offset
, int needed
);
898 /* * bitmap_init_from_disk -- called at bitmap_create time to initialize
899 * the in-memory bitmap from the on-disk bitmap -- also, sets up the
900 * memory mapping of the bitmap file
902 * if there's no bitmap file, or if the bitmap file had been
903 * previously kicked from the array, we mark all the bits as
904 * 1's in order to cause a full resync.
906 * We ignore all bits for sectors that end earlier than 'start'.
907 * This is used when reading an out-of-date bitmap...
909 static int bitmap_init_from_disk(struct bitmap
*bitmap
, sector_t start
)
911 unsigned long i
, chunks
, index
, oldindex
, bit
;
912 struct page
*page
= NULL
, *oldpage
= NULL
;
913 unsigned long num_pages
, bit_cnt
= 0;
915 unsigned long bytes
, offset
;
920 chunks
= bitmap
->chunks
;
923 BUG_ON(!file
&& !bitmap
->mddev
->bitmap_info
.offset
);
925 #ifdef INJECT_FAULTS_3
928 outofdate
= bitmap
->flags
& BITMAP_STALE
;
931 printk(KERN_INFO
"%s: bitmap file is out of date, doing full "
932 "recovery\n", bmname(bitmap
));
934 bytes
= (chunks
+ 7) / 8;
936 num_pages
= (bytes
+ sizeof(bitmap_super_t
) + PAGE_SIZE
- 1) / PAGE_SIZE
;
938 if (file
&& i_size_read(file
->f_mapping
->host
) < bytes
+ sizeof(bitmap_super_t
)) {
939 printk(KERN_INFO
"%s: bitmap file too short %lu < %lu\n",
941 (unsigned long) i_size_read(file
->f_mapping
->host
),
942 bytes
+ sizeof(bitmap_super_t
));
948 bitmap
->filemap
= kmalloc(sizeof(struct page
*) * num_pages
, GFP_KERNEL
);
949 if (!bitmap
->filemap
)
952 /* We need 4 bits per page, rounded up to a multiple of sizeof(unsigned long) */
953 bitmap
->filemap_attr
= kzalloc(
954 roundup( DIV_ROUND_UP(num_pages
*4, 8), sizeof(unsigned long)),
956 if (!bitmap
->filemap_attr
)
961 for (i
= 0; i
< chunks
; i
++) {
963 index
= file_page_index(i
);
964 bit
= file_page_offset(i
);
965 if (index
!= oldindex
) { /* this is a new page, read it in */
967 /* unmap the old page, we're done with it */
968 if (index
== num_pages
-1)
969 count
= bytes
+ sizeof(bitmap_super_t
)
975 * if we're here then the superblock page
976 * contains some bits (PAGE_SIZE != sizeof sb)
977 * we've already read it in, so just use it
979 page
= bitmap
->sb_page
;
980 offset
= sizeof(bitmap_super_t
);
982 read_sb_page(bitmap
->mddev
,
983 bitmap
->mddev
->bitmap_info
.offset
,
987 page
= read_page(file
, index
, bitmap
, count
);
990 page
= read_sb_page(bitmap
->mddev
,
991 bitmap
->mddev
->bitmap_info
.offset
,
996 if (IS_ERR(page
)) { /* read error */
1004 bitmap
->filemap
[bitmap
->file_pages
++] = page
;
1005 bitmap
->last_page_size
= count
;
1009 * if bitmap is out of date, dirty the
1010 * whole page and write it out
1012 paddr
= kmap_atomic(page
, KM_USER0
);
1013 memset(paddr
+ offset
, 0xff,
1014 PAGE_SIZE
- offset
);
1015 kunmap_atomic(paddr
, KM_USER0
);
1016 write_page(bitmap
, page
, 1);
1019 if (bitmap
->flags
& BITMAP_WRITE_ERROR
)
1023 paddr
= kmap_atomic(page
, KM_USER0
);
1024 if (bitmap
->flags
& BITMAP_HOSTENDIAN
)
1025 b
= test_bit(bit
, paddr
);
1027 b
= ext2_test_bit(bit
, paddr
);
1028 kunmap_atomic(paddr
, KM_USER0
);
1030 /* if the disk bit is set, set the memory bit */
1031 int needed
= ((sector_t
)(i
+1) << (CHUNK_BLOCK_SHIFT(bitmap
))
1033 bitmap_set_memory_bits(bitmap
,
1034 (sector_t
)i
<< CHUNK_BLOCK_SHIFT(bitmap
),
1037 set_page_attr(bitmap
, page
, BITMAP_PAGE_CLEAN
);
1041 /* everything went OK */
1043 bitmap_mask_state(bitmap
, BITMAP_STALE
, MASK_UNSET
);
1045 if (bit_cnt
) { /* Kick recovery if any bits were set */
1046 set_bit(MD_RECOVERY_NEEDED
, &bitmap
->mddev
->recovery
);
1047 md_wakeup_thread(bitmap
->mddev
->thread
);
1050 printk(KERN_INFO
"%s: bitmap initialized from disk: "
1051 "read %lu/%lu pages, set %lu bits\n",
1052 bmname(bitmap
), bitmap
->file_pages
, num_pages
, bit_cnt
);
1057 printk(KERN_INFO
"%s: bitmap initialisation failed: %d\n",
1058 bmname(bitmap
), ret
);
1062 void bitmap_write_all(struct bitmap
*bitmap
)
1064 /* We don't actually write all bitmap blocks here,
1065 * just flag them as needing to be written
1069 for (i
=0; i
< bitmap
->file_pages
; i
++)
1070 set_page_attr(bitmap
, bitmap
->filemap
[i
],
1071 BITMAP_PAGE_NEEDWRITE
);
1075 static void bitmap_count_page(struct bitmap
*bitmap
, sector_t offset
, int inc
)
1077 sector_t chunk
= offset
>> CHUNK_BLOCK_SHIFT(bitmap
);
1078 unsigned long page
= chunk
>> PAGE_COUNTER_SHIFT
;
1079 bitmap
->bp
[page
].count
+= inc
;
1081 if (page == 0) printk("count page 0, offset %llu: %d gives %d\n",
1082 (unsigned long long)offset, inc, bitmap->bp[page].count);
1084 bitmap_checkfree(bitmap
, page
);
1086 static bitmap_counter_t
*bitmap_get_counter(struct bitmap
*bitmap
,
1087 sector_t offset
, int *blocks
,
1091 * bitmap daemon -- periodically wakes up to clean bits and flush pages
1095 void bitmap_daemon_work(mddev_t
*mddev
)
1097 struct bitmap
*bitmap
;
1099 unsigned long flags
;
1100 struct page
*page
= NULL
, *lastpage
= NULL
;
1104 /* Use a mutex to guard daemon_work against
1107 mutex_lock(&mddev
->bitmap_info
.mutex
);
1108 bitmap
= mddev
->bitmap
;
1109 if (bitmap
== NULL
) {
1110 mutex_unlock(&mddev
->bitmap_info
.mutex
);
1113 if (time_before(jiffies
, bitmap
->daemon_lastrun
1114 + bitmap
->mddev
->bitmap_info
.daemon_sleep
))
1117 bitmap
->daemon_lastrun
= jiffies
;
1118 if (bitmap
->allclean
) {
1119 bitmap
->mddev
->thread
->timeout
= MAX_SCHEDULE_TIMEOUT
;
1122 bitmap
->allclean
= 1;
1124 spin_lock_irqsave(&bitmap
->lock
, flags
);
1125 for (j
= 0; j
< bitmap
->chunks
; j
++) {
1126 bitmap_counter_t
*bmc
;
1127 if (!bitmap
->filemap
)
1128 /* error or shutdown */
1131 page
= filemap_get_page(bitmap
, j
);
1133 if (page
!= lastpage
) {
1134 /* skip this page unless it's marked as needing cleaning */
1135 if (!test_page_attr(bitmap
, page
, BITMAP_PAGE_CLEAN
)) {
1136 int need_write
= test_page_attr(bitmap
, page
,
1137 BITMAP_PAGE_NEEDWRITE
);
1139 clear_page_attr(bitmap
, page
, BITMAP_PAGE_NEEDWRITE
);
1141 spin_unlock_irqrestore(&bitmap
->lock
, flags
);
1143 write_page(bitmap
, page
, 0);
1144 bitmap
->allclean
= 0;
1146 spin_lock_irqsave(&bitmap
->lock
, flags
);
1147 j
|= (PAGE_BITS
- 1);
1151 /* grab the new page, sync and release the old */
1152 if (lastpage
!= NULL
) {
1153 if (test_page_attr(bitmap
, lastpage
, BITMAP_PAGE_NEEDWRITE
)) {
1154 clear_page_attr(bitmap
, lastpage
, BITMAP_PAGE_NEEDWRITE
);
1155 spin_unlock_irqrestore(&bitmap
->lock
, flags
);
1156 write_page(bitmap
, lastpage
, 0);
1158 set_page_attr(bitmap
, lastpage
, BITMAP_PAGE_NEEDWRITE
);
1159 spin_unlock_irqrestore(&bitmap
->lock
, flags
);
1162 spin_unlock_irqrestore(&bitmap
->lock
, flags
);
1165 /* We are possibly going to clear some bits, so make
1166 * sure that events_cleared is up-to-date.
1168 if (bitmap
->need_sync
) {
1170 bitmap
->need_sync
= 0;
1171 sb
= kmap_atomic(bitmap
->sb_page
, KM_USER0
);
1172 sb
->events_cleared
=
1173 cpu_to_le64(bitmap
->events_cleared
);
1174 kunmap_atomic(sb
, KM_USER0
);
1175 write_page(bitmap
, bitmap
->sb_page
, 1);
1177 spin_lock_irqsave(&bitmap
->lock
, flags
);
1178 clear_page_attr(bitmap
, page
, BITMAP_PAGE_CLEAN
);
1180 bmc
= bitmap_get_counter(bitmap
,
1181 (sector_t
)j
<< CHUNK_BLOCK_SHIFT(bitmap
),
1185 if (j < 100) printk("bitmap: j=%lu, *bmc = 0x%x\n", j, *bmc);
1188 bitmap
->allclean
= 0;
1191 *bmc
=1; /* maybe clear the bit next time */
1192 set_page_attr(bitmap
, page
, BITMAP_PAGE_CLEAN
);
1193 } else if (*bmc
== 1) {
1194 /* we can clear the bit */
1196 bitmap_count_page(bitmap
,
1197 (sector_t
)j
<< CHUNK_BLOCK_SHIFT(bitmap
),
1201 paddr
= kmap_atomic(page
, KM_USER0
);
1202 if (bitmap
->flags
& BITMAP_HOSTENDIAN
)
1203 clear_bit(file_page_offset(j
), paddr
);
1205 ext2_clear_bit(file_page_offset(j
), paddr
);
1206 kunmap_atomic(paddr
, KM_USER0
);
1209 j
|= PAGE_COUNTER_MASK
;
1211 spin_unlock_irqrestore(&bitmap
->lock
, flags
);
1213 /* now sync the final page */
1214 if (lastpage
!= NULL
) {
1215 spin_lock_irqsave(&bitmap
->lock
, flags
);
1216 if (test_page_attr(bitmap
, lastpage
, BITMAP_PAGE_NEEDWRITE
)) {
1217 clear_page_attr(bitmap
, lastpage
, BITMAP_PAGE_NEEDWRITE
);
1218 spin_unlock_irqrestore(&bitmap
->lock
, flags
);
1219 write_page(bitmap
, lastpage
, 0);
1221 set_page_attr(bitmap
, lastpage
, BITMAP_PAGE_NEEDWRITE
);
1222 spin_unlock_irqrestore(&bitmap
->lock
, flags
);
1227 if (bitmap
->allclean
== 0)
1228 bitmap
->mddev
->thread
->timeout
=
1229 bitmap
->mddev
->bitmap_info
.daemon_sleep
;
1230 mutex_unlock(&mddev
->bitmap_info
.mutex
);
1233 static bitmap_counter_t
*bitmap_get_counter(struct bitmap
*bitmap
,
1234 sector_t offset
, int *blocks
,
1236 __releases(bitmap
->lock
)
1237 __acquires(bitmap
->lock
)
1239 /* If 'create', we might release the lock and reclaim it.
1240 * The lock must have been taken with interrupts enabled.
1241 * If !create, we don't release the lock.
1243 sector_t chunk
= offset
>> CHUNK_BLOCK_SHIFT(bitmap
);
1244 unsigned long page
= chunk
>> PAGE_COUNTER_SHIFT
;
1245 unsigned long pageoff
= (chunk
& PAGE_COUNTER_MASK
) << COUNTER_BYTE_SHIFT
;
1248 if (bitmap_checkpage(bitmap
, page
, create
) < 0) {
1249 csize
= ((sector_t
)1) << (CHUNK_BLOCK_SHIFT(bitmap
));
1250 *blocks
= csize
- (offset
& (csize
- 1));
1253 /* now locked ... */
1255 if (bitmap
->bp
[page
].hijacked
) { /* hijacked pointer */
1256 /* should we use the first or second counter field
1257 * of the hijacked pointer? */
1258 int hi
= (pageoff
> PAGE_COUNTER_MASK
);
1259 csize
= ((sector_t
)1) << (CHUNK_BLOCK_SHIFT(bitmap
) +
1260 PAGE_COUNTER_SHIFT
- 1);
1261 *blocks
= csize
- (offset
& (csize
- 1));
1262 return &((bitmap_counter_t
*)
1263 &bitmap
->bp
[page
].map
)[hi
];
1264 } else { /* page is allocated */
1265 csize
= ((sector_t
)1) << (CHUNK_BLOCK_SHIFT(bitmap
));
1266 *blocks
= csize
- (offset
& (csize
- 1));
1267 return (bitmap_counter_t
*)
1268 &(bitmap
->bp
[page
].map
[pageoff
]);
1272 int bitmap_startwrite(struct bitmap
*bitmap
, sector_t offset
, unsigned long sectors
, int behind
)
1274 if (!bitmap
) return 0;
1277 atomic_inc(&bitmap
->behind_writes
);
1278 PRINTK(KERN_DEBUG
"inc write-behind count %d/%d\n",
1279 atomic_read(&bitmap
->behind_writes
), bitmap
->max_write_behind
);
1284 bitmap_counter_t
*bmc
;
1286 spin_lock_irq(&bitmap
->lock
);
1287 bmc
= bitmap_get_counter(bitmap
, offset
, &blocks
, 1);
1289 spin_unlock_irq(&bitmap
->lock
);
1293 if (unlikely((*bmc
& COUNTER_MAX
) == COUNTER_MAX
)) {
1294 DEFINE_WAIT(__wait
);
1295 /* note that it is safe to do the prepare_to_wait
1296 * after the test as long as we do it before dropping
1299 prepare_to_wait(&bitmap
->overflow_wait
, &__wait
,
1300 TASK_UNINTERRUPTIBLE
);
1301 spin_unlock_irq(&bitmap
->lock
);
1302 blk_unplug(bitmap
->mddev
->queue
);
1304 finish_wait(&bitmap
->overflow_wait
, &__wait
);
1310 bitmap_file_set_bit(bitmap
, offset
);
1311 bitmap_count_page(bitmap
,offset
, 1);
1312 blk_plug_device_unlocked(bitmap
->mddev
->queue
);
1320 spin_unlock_irq(&bitmap
->lock
);
1323 if (sectors
> blocks
)
1327 bitmap
->allclean
= 0;
1331 void bitmap_endwrite(struct bitmap
*bitmap
, sector_t offset
, unsigned long sectors
,
1332 int success
, int behind
)
1334 if (!bitmap
) return;
1336 atomic_dec(&bitmap
->behind_writes
);
1337 PRINTK(KERN_DEBUG
"dec write-behind count %d/%d\n",
1338 atomic_read(&bitmap
->behind_writes
), bitmap
->max_write_behind
);
1340 if (bitmap
->mddev
->degraded
)
1341 /* Never clear bits or update events_cleared when degraded */
1346 unsigned long flags
;
1347 bitmap_counter_t
*bmc
;
1349 spin_lock_irqsave(&bitmap
->lock
, flags
);
1350 bmc
= bitmap_get_counter(bitmap
, offset
, &blocks
, 0);
1352 spin_unlock_irqrestore(&bitmap
->lock
, flags
);
1357 bitmap
->events_cleared
< bitmap
->mddev
->events
) {
1358 bitmap
->events_cleared
= bitmap
->mddev
->events
;
1359 bitmap
->need_sync
= 1;
1362 if (!success
&& ! (*bmc
& NEEDED_MASK
))
1363 *bmc
|= NEEDED_MASK
;
1365 if ((*bmc
& COUNTER_MAX
) == COUNTER_MAX
)
1366 wake_up(&bitmap
->overflow_wait
);
1370 set_page_attr(bitmap
,
1371 filemap_get_page(bitmap
, offset
>> CHUNK_BLOCK_SHIFT(bitmap
)),
1374 spin_unlock_irqrestore(&bitmap
->lock
, flags
);
1376 if (sectors
> blocks
)
1382 static int __bitmap_start_sync(struct bitmap
*bitmap
, sector_t offset
, int *blocks
,
1385 bitmap_counter_t
*bmc
;
1387 if (bitmap
== NULL
) {/* FIXME or bitmap set as 'failed' */
1389 return 1; /* always resync if no bitmap */
1391 spin_lock_irq(&bitmap
->lock
);
1392 bmc
= bitmap_get_counter(bitmap
, offset
, blocks
, 0);
1398 else if (NEEDED(*bmc
)) {
1400 if (!degraded
) { /* don't set/clear bits if degraded */
1401 *bmc
|= RESYNC_MASK
;
1402 *bmc
&= ~NEEDED_MASK
;
1406 spin_unlock_irq(&bitmap
->lock
);
1407 bitmap
->allclean
= 0;
1411 int bitmap_start_sync(struct bitmap
*bitmap
, sector_t offset
, int *blocks
,
1414 /* bitmap_start_sync must always report on multiples of whole
1415 * pages, otherwise resync (which is very PAGE_SIZE based) will
1417 * So call __bitmap_start_sync repeatedly (if needed) until
1418 * At least PAGE_SIZE>>9 blocks are covered.
1419 * Return the 'or' of the result.
1425 while (*blocks
< (PAGE_SIZE
>>9)) {
1426 rv
|= __bitmap_start_sync(bitmap
, offset
,
1427 &blocks1
, degraded
);
1434 void bitmap_end_sync(struct bitmap
*bitmap
, sector_t offset
, int *blocks
, int aborted
)
1436 bitmap_counter_t
*bmc
;
1437 unsigned long flags
;
1439 if (offset == 0) printk("bitmap_end_sync 0 (%d)\n", aborted);
1440 */ if (bitmap
== NULL
) {
1444 spin_lock_irqsave(&bitmap
->lock
, flags
);
1445 bmc
= bitmap_get_counter(bitmap
, offset
, blocks
, 0);
1450 if (offset == 0) printk("bitmap_end sync found 0x%x, blocks %d\n", *bmc, *blocks);
1453 *bmc
&= ~RESYNC_MASK
;
1455 if (!NEEDED(*bmc
) && aborted
)
1456 *bmc
|= NEEDED_MASK
;
1459 set_page_attr(bitmap
,
1460 filemap_get_page(bitmap
, offset
>> CHUNK_BLOCK_SHIFT(bitmap
)),
1466 spin_unlock_irqrestore(&bitmap
->lock
, flags
);
1467 bitmap
->allclean
= 0;
1470 void bitmap_close_sync(struct bitmap
*bitmap
)
1472 /* Sync has finished, and any bitmap chunks that weren't synced
1473 * properly have been aborted. It remains to us to clear the
1474 * RESYNC bit wherever it is still on
1476 sector_t sector
= 0;
1480 while (sector
< bitmap
->mddev
->resync_max_sectors
) {
1481 bitmap_end_sync(bitmap
, sector
, &blocks
, 0);
1486 void bitmap_cond_end_sync(struct bitmap
*bitmap
, sector_t sector
)
1494 bitmap
->last_end_sync
= jiffies
;
1497 if (time_before(jiffies
, (bitmap
->last_end_sync
1498 + bitmap
->mddev
->bitmap_info
.daemon_sleep
)))
1500 wait_event(bitmap
->mddev
->recovery_wait
,
1501 atomic_read(&bitmap
->mddev
->recovery_active
) == 0);
1503 bitmap
->mddev
->curr_resync_completed
= bitmap
->mddev
->curr_resync
;
1504 set_bit(MD_CHANGE_CLEAN
, &bitmap
->mddev
->flags
);
1505 sector
&= ~((1ULL << CHUNK_BLOCK_SHIFT(bitmap
)) - 1);
1507 while (s
< sector
&& s
< bitmap
->mddev
->resync_max_sectors
) {
1508 bitmap_end_sync(bitmap
, s
, &blocks
, 0);
1511 bitmap
->last_end_sync
= jiffies
;
1512 sysfs_notify(&bitmap
->mddev
->kobj
, NULL
, "sync_completed");
1515 static void bitmap_set_memory_bits(struct bitmap
*bitmap
, sector_t offset
, int needed
)
1517 /* For each chunk covered by any of these sectors, set the
1518 * counter to 1 and set resync_needed. They should all
1519 * be 0 at this point
1523 bitmap_counter_t
*bmc
;
1524 spin_lock_irq(&bitmap
->lock
);
1525 bmc
= bitmap_get_counter(bitmap
, offset
, &secs
, 1);
1527 spin_unlock_irq(&bitmap
->lock
);
1532 *bmc
= 1 | (needed
?NEEDED_MASK
:0);
1533 bitmap_count_page(bitmap
, offset
, 1);
1534 page
= filemap_get_page(bitmap
, offset
>> CHUNK_BLOCK_SHIFT(bitmap
));
1535 set_page_attr(bitmap
, page
, BITMAP_PAGE_CLEAN
);
1537 spin_unlock_irq(&bitmap
->lock
);
1538 bitmap
->allclean
= 0;
1541 /* dirty the memory and file bits for bitmap chunks "s" to "e" */
1542 void bitmap_dirty_bits(struct bitmap
*bitmap
, unsigned long s
, unsigned long e
)
1544 unsigned long chunk
;
1546 for (chunk
= s
; chunk
<= e
; chunk
++) {
1547 sector_t sec
= (sector_t
)chunk
<< CHUNK_BLOCK_SHIFT(bitmap
);
1548 bitmap_set_memory_bits(bitmap
, sec
, 1);
1549 bitmap_file_set_bit(bitmap
, sec
);
1554 * flush out any pending updates
1556 void bitmap_flush(mddev_t
*mddev
)
1558 struct bitmap
*bitmap
= mddev
->bitmap
;
1561 if (!bitmap
) /* there was no bitmap */
1564 /* run the daemon_work three time to ensure everything is flushed
1567 sleep
= mddev
->bitmap_info
.daemon_sleep
* 2;
1568 bitmap
->daemon_lastrun
-= sleep
;
1569 bitmap_daemon_work(mddev
);
1570 bitmap
->daemon_lastrun
-= sleep
;
1571 bitmap_daemon_work(mddev
);
1572 bitmap
->daemon_lastrun
-= sleep
;
1573 bitmap_daemon_work(mddev
);
1574 bitmap_update_sb(bitmap
);
1578 * free memory that was allocated
1580 static void bitmap_free(struct bitmap
*bitmap
)
1582 unsigned long k
, pages
;
1583 struct bitmap_page
*bp
;
1585 if (!bitmap
) /* there was no bitmap */
1588 /* release the bitmap file and kill the daemon */
1589 bitmap_file_put(bitmap
);
1592 pages
= bitmap
->pages
;
1594 /* free all allocated memory */
1596 if (bp
) /* deallocate the page memory */
1597 for (k
= 0; k
< pages
; k
++)
1598 if (bp
[k
].map
&& !bp
[k
].hijacked
)
1604 void bitmap_destroy(mddev_t
*mddev
)
1606 struct bitmap
*bitmap
= mddev
->bitmap
;
1608 if (!bitmap
) /* there was no bitmap */
1611 mutex_lock(&mddev
->bitmap_info
.mutex
);
1612 mddev
->bitmap
= NULL
; /* disconnect from the md device */
1613 mutex_unlock(&mddev
->bitmap_info
.mutex
);
1615 mddev
->thread
->timeout
= MAX_SCHEDULE_TIMEOUT
;
1617 bitmap_free(bitmap
);
1621 * initialize the bitmap structure
1622 * if this returns an error, bitmap_destroy must be called to do clean up
1624 int bitmap_create(mddev_t
*mddev
)
1626 struct bitmap
*bitmap
;
1627 sector_t blocks
= mddev
->resync_max_sectors
;
1628 unsigned long chunks
;
1629 unsigned long pages
;
1630 struct file
*file
= mddev
->bitmap_info
.file
;
1634 BUILD_BUG_ON(sizeof(bitmap_super_t
) != 256);
1636 if (!file
&& !mddev
->bitmap_info
.offset
) /* bitmap disabled, nothing to do */
1639 BUG_ON(file
&& mddev
->bitmap_info
.offset
);
1641 bitmap
= kzalloc(sizeof(*bitmap
), GFP_KERNEL
);
1645 spin_lock_init(&bitmap
->lock
);
1646 atomic_set(&bitmap
->pending_writes
, 0);
1647 init_waitqueue_head(&bitmap
->write_wait
);
1648 init_waitqueue_head(&bitmap
->overflow_wait
);
1650 bitmap
->mddev
= mddev
;
1652 bitmap
->file
= file
;
1655 /* As future accesses to this file will use bmap,
1656 * and bypass the page cache, we must sync the file
1659 vfs_fsync(file
, file
->f_dentry
, 1);
1661 /* read superblock from bitmap file (this sets mddev->bitmap_info.chunksize) */
1662 err
= bitmap_read_sb(bitmap
);
1666 bitmap
->chunkshift
= ffz(~mddev
->bitmap_info
.chunksize
);
1668 /* now that chunksize and chunkshift are set, we can use these macros */
1669 chunks
= (blocks
+ CHUNK_BLOCK_RATIO(bitmap
) - 1) >>
1670 CHUNK_BLOCK_SHIFT(bitmap
);
1671 pages
= (chunks
+ PAGE_COUNTER_RATIO
- 1) / PAGE_COUNTER_RATIO
;
1675 bitmap
->chunks
= chunks
;
1676 bitmap
->pages
= pages
;
1677 bitmap
->missing_pages
= pages
;
1678 bitmap
->counter_bits
= COUNTER_BITS
;
1680 bitmap
->syncchunk
= ~0UL;
1682 #ifdef INJECT_FATAL_FAULT_1
1685 bitmap
->bp
= kzalloc(pages
* sizeof(*bitmap
->bp
), GFP_KERNEL
);
1691 /* now that we have some pages available, initialize the in-memory
1692 * bitmap from the on-disk bitmap */
1694 if (mddev
->degraded
== 0
1695 || bitmap
->events_cleared
== mddev
->events
)
1696 /* no need to keep dirty bits to optimise a re-add of a missing device */
1697 start
= mddev
->recovery_cp
;
1698 err
= bitmap_init_from_disk(bitmap
, start
);
1703 printk(KERN_INFO
"created bitmap (%lu pages) for device %s\n",
1704 pages
, bmname(bitmap
));
1706 mddev
->bitmap
= bitmap
;
1708 mddev
->thread
->timeout
= mddev
->bitmap_info
.daemon_sleep
;
1709 md_wakeup_thread(mddev
->thread
);
1711 bitmap_update_sb(bitmap
);
1713 return (bitmap
->flags
& BITMAP_WRITE_ERROR
) ? -EIO
: 0;
1716 bitmap_free(bitmap
);
1721 location_show(mddev_t
*mddev
, char *page
)
1724 if (mddev
->bitmap_info
.file
) {
1725 len
= sprintf(page
, "file");
1726 } else if (mddev
->bitmap_info
.offset
) {
1727 len
= sprintf(page
, "%+lld", (long long)mddev
->bitmap_info
.offset
);
1729 len
= sprintf(page
, "none");
1730 len
+= sprintf(page
+len
, "\n");
1735 location_store(mddev_t
*mddev
, const char *buf
, size_t len
)
1739 if (!mddev
->pers
->quiesce
)
1741 if (mddev
->recovery
|| mddev
->sync_thread
)
1745 if (mddev
->bitmap
|| mddev
->bitmap_info
.file
||
1746 mddev
->bitmap_info
.offset
) {
1747 /* bitmap already configured. Only option is to clear it */
1748 if (strncmp(buf
, "none", 4) != 0)
1751 mddev
->pers
->quiesce(mddev
, 1);
1752 bitmap_destroy(mddev
);
1753 mddev
->pers
->quiesce(mddev
, 0);
1755 mddev
->bitmap_info
.offset
= 0;
1756 if (mddev
->bitmap_info
.file
) {
1757 struct file
*f
= mddev
->bitmap_info
.file
;
1758 mddev
->bitmap_info
.file
= NULL
;
1759 restore_bitmap_write_access(f
);
1763 /* No bitmap, OK to set a location */
1765 if (strncmp(buf
, "none", 4) == 0)
1766 /* nothing to be done */;
1767 else if (strncmp(buf
, "file:", 5) == 0) {
1768 /* Not supported yet */
1773 rv
= strict_strtoll(buf
+1, 10, &offset
);
1775 rv
= strict_strtoll(buf
, 10, &offset
);
1780 if (mddev
->major_version
== 0 &&
1781 offset
!= mddev
->bitmap_info
.default_offset
)
1783 mddev
->bitmap_info
.offset
= offset
;
1785 mddev
->pers
->quiesce(mddev
, 1);
1786 rv
= bitmap_create(mddev
);
1788 bitmap_destroy(mddev
);
1789 mddev
->bitmap_info
.offset
= 0;
1791 mddev
->pers
->quiesce(mddev
, 0);
1797 if (!mddev
->external
) {
1798 /* Ensure new bitmap info is stored in
1799 * metadata promptly.
1801 set_bit(MD_CHANGE_DEVS
, &mddev
->flags
);
1802 md_wakeup_thread(mddev
->thread
);
1807 static struct md_sysfs_entry bitmap_location
=
1808 __ATTR(location
, S_IRUGO
|S_IWUSR
, location_show
, location_store
);
1811 timeout_show(mddev_t
*mddev
, char *page
)
1814 unsigned long secs
= mddev
->bitmap_info
.daemon_sleep
/ HZ
;
1815 unsigned long jifs
= mddev
->bitmap_info
.daemon_sleep
% HZ
;
1817 len
= sprintf(page
, "%lu", secs
);
1819 len
+= sprintf(page
+len
, ".%03u", jiffies_to_msecs(jifs
));
1820 len
+= sprintf(page
+len
, "\n");
1825 timeout_store(mddev_t
*mddev
, const char *buf
, size_t len
)
1827 /* timeout can be set at any time */
1828 unsigned long timeout
;
1829 int rv
= strict_strtoul_scaled(buf
, &timeout
, 4);
1833 /* just to make sure we don't overflow... */
1834 if (timeout
>= LONG_MAX
/ HZ
)
1837 timeout
= timeout
* HZ
/ 10000;
1839 if (timeout
>= MAX_SCHEDULE_TIMEOUT
)
1840 timeout
= MAX_SCHEDULE_TIMEOUT
-1;
1843 mddev
->bitmap_info
.daemon_sleep
= timeout
;
1844 if (mddev
->thread
) {
1845 /* if thread->timeout is MAX_SCHEDULE_TIMEOUT, then
1846 * the bitmap is all clean and we don't need to
1847 * adjust the timeout right now
1849 if (mddev
->thread
->timeout
< MAX_SCHEDULE_TIMEOUT
) {
1850 mddev
->thread
->timeout
= timeout
;
1851 md_wakeup_thread(mddev
->thread
);
1857 static struct md_sysfs_entry bitmap_timeout
=
1858 __ATTR(time_base
, S_IRUGO
|S_IWUSR
, timeout_show
, timeout_store
);
1861 backlog_show(mddev_t
*mddev
, char *page
)
1863 return sprintf(page
, "%lu\n", mddev
->bitmap_info
.max_write_behind
);
1867 backlog_store(mddev_t
*mddev
, const char *buf
, size_t len
)
1869 unsigned long backlog
;
1870 int rv
= strict_strtoul(buf
, 10, &backlog
);
1873 if (backlog
> COUNTER_MAX
)
1875 mddev
->bitmap_info
.max_write_behind
= backlog
;
1879 static struct md_sysfs_entry bitmap_backlog
=
1880 __ATTR(backlog
, S_IRUGO
|S_IWUSR
, backlog_show
, backlog_store
);
1883 chunksize_show(mddev_t
*mddev
, char *page
)
1885 return sprintf(page
, "%lu\n", mddev
->bitmap_info
.chunksize
);
1889 chunksize_store(mddev_t
*mddev
, const char *buf
, size_t len
)
1891 /* Can only be changed when no bitmap is active */
1893 unsigned long csize
;
1896 rv
= strict_strtoul(buf
, 10, &csize
);
1900 !is_power_of_2(csize
))
1902 mddev
->bitmap_info
.chunksize
= csize
;
1906 static struct md_sysfs_entry bitmap_chunksize
=
1907 __ATTR(chunksize
, S_IRUGO
|S_IWUSR
, chunksize_show
, chunksize_store
);
1909 static struct attribute
*md_bitmap_attrs
[] = {
1910 &bitmap_location
.attr
,
1911 &bitmap_timeout
.attr
,
1912 &bitmap_backlog
.attr
,
1913 &bitmap_chunksize
.attr
,
1916 struct attribute_group md_bitmap_group
= {
1918 .attrs
= md_bitmap_attrs
,
1922 /* the bitmap API -- for raid personalities */
1923 EXPORT_SYMBOL(bitmap_startwrite
);
1924 EXPORT_SYMBOL(bitmap_endwrite
);
1925 EXPORT_SYMBOL(bitmap_start_sync
);
1926 EXPORT_SYMBOL(bitmap_end_sync
);
1927 EXPORT_SYMBOL(bitmap_unplug
);
1928 EXPORT_SYMBOL(bitmap_close_sync
);
1929 EXPORT_SYMBOL(bitmap_cond_end_sync
);