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).
18 #include <linux/blkdev.h>
19 #include <linux/module.h>
20 #include <linux/errno.h>
21 #include <linux/slab.h>
22 #include <linux/init.h>
23 #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>
29 #include <linux/seq_file.h>
33 static inline char *bmname(struct bitmap
*bitmap
)
35 return bitmap
->mddev
? mdname(bitmap
->mddev
) : "mdX";
39 * check a page and, if necessary, allocate it (or hijack it if the alloc fails)
41 * 1) check to see if this page is allocated, if it's not then try to alloc
42 * 2) if the alloc fails, set the page's hijacked flag so we'll use the
43 * page pointer directly as a counter
45 * if we find our page, we increment the page's refcount so that it stays
46 * allocated while we're using it
48 static int bitmap_checkpage(struct bitmap_counts
*bitmap
,
49 unsigned long page
, int create
)
50 __releases(bitmap
->lock
)
51 __acquires(bitmap
->lock
)
53 unsigned char *mappage
;
55 if (page
>= bitmap
->pages
) {
56 /* This can happen if bitmap_start_sync goes beyond
57 * End-of-device while looking for a whole page.
63 if (bitmap
->bp
[page
].hijacked
) /* it's hijacked, don't try to alloc */
66 if (bitmap
->bp
[page
].map
) /* page is already allocated, just return */
72 /* this page has not been allocated yet */
74 spin_unlock_irq(&bitmap
->lock
);
75 /* It is possible that this is being called inside a
76 * prepare_to_wait/finish_wait loop from raid5c:make_request().
77 * In general it is not permitted to sleep in that context as it
78 * can cause the loop to spin freely.
79 * That doesn't apply here as we can only reach this point
81 * When this function completes, either bp[page].map or
82 * bp[page].hijacked. In either case, this function will
83 * abort before getting to this point again. So there is
84 * no risk of a free-spin, and so it is safe to assert
85 * that sleeping here is allowed.
87 sched_annotate_sleep();
88 mappage
= kzalloc(PAGE_SIZE
, GFP_NOIO
);
89 spin_lock_irq(&bitmap
->lock
);
91 if (mappage
== NULL
) {
92 pr_debug("md/bitmap: map page allocation failed, hijacking\n");
93 /* failed - set the hijacked flag so that we can use the
94 * pointer as a counter */
95 if (!bitmap
->bp
[page
].map
)
96 bitmap
->bp
[page
].hijacked
= 1;
97 } else if (bitmap
->bp
[page
].map
||
98 bitmap
->bp
[page
].hijacked
) {
99 /* somebody beat us to getting the page */
104 /* no page was in place and we have one, so install it */
106 bitmap
->bp
[page
].map
= mappage
;
107 bitmap
->missing_pages
--;
112 /* if page is completely empty, put it back on the free list, or dealloc it */
113 /* if page was hijacked, unmark the flag so it might get alloced next time */
114 /* Note: lock should be held when calling this */
115 static void bitmap_checkfree(struct bitmap_counts
*bitmap
, unsigned long page
)
119 if (bitmap
->bp
[page
].count
) /* page is still busy */
122 /* page is no longer in use, it can be released */
124 if (bitmap
->bp
[page
].hijacked
) { /* page was hijacked, undo this now */
125 bitmap
->bp
[page
].hijacked
= 0;
126 bitmap
->bp
[page
].map
= NULL
;
128 /* normal case, free the page */
129 ptr
= bitmap
->bp
[page
].map
;
130 bitmap
->bp
[page
].map
= NULL
;
131 bitmap
->missing_pages
++;
137 * bitmap file handling - read and write the bitmap file and its superblock
141 * basic page I/O operations
144 /* IO operations when bitmap is stored near all superblocks */
145 static int read_sb_page(struct mddev
*mddev
, loff_t offset
,
147 unsigned long index
, int size
)
149 /* choose a good rdev and read the page from there */
151 struct md_rdev
*rdev
;
154 rdev_for_each(rdev
, mddev
) {
155 if (! test_bit(In_sync
, &rdev
->flags
)
156 || test_bit(Faulty
, &rdev
->flags
))
159 target
= offset
+ index
* (PAGE_SIZE
/512);
161 if (sync_page_io(rdev
, target
,
162 roundup(size
, bdev_logical_block_size(rdev
->bdev
)),
171 static struct md_rdev
*next_active_rdev(struct md_rdev
*rdev
, struct mddev
*mddev
)
173 /* Iterate the disks of an mddev, using rcu to protect access to the
174 * linked list, and raising the refcount of devices we return to ensure
175 * they don't disappear while in use.
176 * As devices are only added or removed when raid_disk is < 0 and
177 * nr_pending is 0 and In_sync is clear, the entries we return will
178 * still be in the same position on the list when we re-enter
179 * list_for_each_entry_continue_rcu.
183 /* start at the beginning */
184 rdev
= list_entry_rcu(&mddev
->disks
, struct md_rdev
, same_set
);
186 /* release the previous rdev and start from there. */
187 rdev_dec_pending(rdev
, mddev
);
189 list_for_each_entry_continue_rcu(rdev
, &mddev
->disks
, same_set
) {
190 if (rdev
->raid_disk
>= 0 &&
191 !test_bit(Faulty
, &rdev
->flags
)) {
192 /* this is a usable devices */
193 atomic_inc(&rdev
->nr_pending
);
202 static int write_sb_page(struct bitmap
*bitmap
, struct page
*page
, int wait
)
204 struct md_rdev
*rdev
= NULL
;
205 struct block_device
*bdev
;
206 struct mddev
*mddev
= bitmap
->mddev
;
207 struct bitmap_storage
*store
= &bitmap
->storage
;
209 while ((rdev
= next_active_rdev(rdev
, mddev
)) != NULL
) {
210 int size
= PAGE_SIZE
;
211 loff_t offset
= mddev
->bitmap_info
.offset
;
213 bdev
= (rdev
->meta_bdev
) ? rdev
->meta_bdev
: rdev
->bdev
;
215 if (page
->index
== store
->file_pages
-1) {
216 int last_page_size
= store
->bytes
& (PAGE_SIZE
-1);
217 if (last_page_size
== 0)
218 last_page_size
= PAGE_SIZE
;
219 size
= roundup(last_page_size
,
220 bdev_logical_block_size(bdev
));
222 /* Just make sure we aren't corrupting data or
225 if (mddev
->external
) {
226 /* Bitmap could be anywhere. */
227 if (rdev
->sb_start
+ offset
+ (page
->index
231 rdev
->sb_start
+ offset
232 < (rdev
->data_offset
+ mddev
->dev_sectors
235 } else if (offset
< 0) {
236 /* DATA BITMAP METADATA */
238 + (long)(page
->index
* (PAGE_SIZE
/512))
240 /* bitmap runs in to metadata */
242 if (rdev
->data_offset
+ mddev
->dev_sectors
243 > rdev
->sb_start
+ offset
)
244 /* data runs in to bitmap */
246 } else if (rdev
->sb_start
< rdev
->data_offset
) {
247 /* METADATA BITMAP DATA */
250 + page
->index
*(PAGE_SIZE
/512) + size
/512
252 /* bitmap runs in to data */
255 /* DATA METADATA BITMAP - no problems */
257 md_super_write(mddev
, rdev
,
258 rdev
->sb_start
+ offset
259 + page
->index
* (PAGE_SIZE
/512),
265 md_super_wait(mddev
);
272 static void bitmap_file_kick(struct bitmap
*bitmap
);
274 * write out a page to a file
276 static void write_page(struct bitmap
*bitmap
, struct page
*page
, int wait
)
278 struct buffer_head
*bh
;
280 if (bitmap
->storage
.file
== NULL
) {
281 switch (write_sb_page(bitmap
, page
, wait
)) {
283 set_bit(BITMAP_WRITE_ERROR
, &bitmap
->flags
);
287 bh
= page_buffers(page
);
289 while (bh
&& bh
->b_blocknr
) {
290 atomic_inc(&bitmap
->pending_writes
);
291 set_buffer_locked(bh
);
292 set_buffer_mapped(bh
);
293 submit_bh(WRITE
| REQ_SYNC
, bh
);
294 bh
= bh
->b_this_page
;
298 wait_event(bitmap
->write_wait
,
299 atomic_read(&bitmap
->pending_writes
)==0);
301 if (test_bit(BITMAP_WRITE_ERROR
, &bitmap
->flags
))
302 bitmap_file_kick(bitmap
);
305 static void end_bitmap_write(struct buffer_head
*bh
, int uptodate
)
307 struct bitmap
*bitmap
= bh
->b_private
;
310 set_bit(BITMAP_WRITE_ERROR
, &bitmap
->flags
);
311 if (atomic_dec_and_test(&bitmap
->pending_writes
))
312 wake_up(&bitmap
->write_wait
);
315 /* copied from buffer.c */
317 __clear_page_buffers(struct page
*page
)
319 ClearPagePrivate(page
);
320 set_page_private(page
, 0);
321 page_cache_release(page
);
323 static void free_buffers(struct page
*page
)
325 struct buffer_head
*bh
;
327 if (!PagePrivate(page
))
330 bh
= page_buffers(page
);
332 struct buffer_head
*next
= bh
->b_this_page
;
333 free_buffer_head(bh
);
336 __clear_page_buffers(page
);
340 /* read a page from a file.
341 * We both read the page, and attach buffers to the page to record the
342 * address of each block (using bmap). These addresses will be used
343 * to write the block later, completely bypassing the filesystem.
344 * This usage is similar to how swap files are handled, and allows us
345 * to write to a file with no concerns of memory allocation failing.
347 static int read_page(struct file
*file
, unsigned long index
,
348 struct bitmap
*bitmap
,
353 struct inode
*inode
= file_inode(file
);
354 struct buffer_head
*bh
;
357 pr_debug("read bitmap file (%dB @ %llu)\n", (int)PAGE_SIZE
,
358 (unsigned long long)index
<< PAGE_SHIFT
);
360 bh
= alloc_page_buffers(page
, 1<<inode
->i_blkbits
, 0);
365 attach_page_buffers(page
, bh
);
366 block
= index
<< (PAGE_SHIFT
- inode
->i_blkbits
);
371 bh
->b_blocknr
= bmap(inode
, block
);
372 if (bh
->b_blocknr
== 0) {
373 /* Cannot use this file! */
377 bh
->b_bdev
= inode
->i_sb
->s_bdev
;
378 if (count
< (1<<inode
->i_blkbits
))
381 count
-= (1<<inode
->i_blkbits
);
383 bh
->b_end_io
= end_bitmap_write
;
384 bh
->b_private
= bitmap
;
385 atomic_inc(&bitmap
->pending_writes
);
386 set_buffer_locked(bh
);
387 set_buffer_mapped(bh
);
391 bh
= bh
->b_this_page
;
395 wait_event(bitmap
->write_wait
,
396 atomic_read(&bitmap
->pending_writes
)==0);
397 if (test_bit(BITMAP_WRITE_ERROR
, &bitmap
->flags
))
401 printk(KERN_ALERT
"md: bitmap read error: (%dB @ %llu): %d\n",
403 (unsigned long long)index
<< PAGE_SHIFT
,
409 * bitmap file superblock operations
412 /* update the event counter and sync the superblock to disk */
413 void bitmap_update_sb(struct bitmap
*bitmap
)
417 if (!bitmap
|| !bitmap
->mddev
) /* no bitmap for this array */
419 if (bitmap
->mddev
->bitmap_info
.external
)
421 if (!bitmap
->storage
.sb_page
) /* no superblock */
423 sb
= kmap_atomic(bitmap
->storage
.sb_page
);
424 sb
->events
= cpu_to_le64(bitmap
->mddev
->events
);
425 if (bitmap
->mddev
->events
< bitmap
->events_cleared
)
426 /* rocking back to read-only */
427 bitmap
->events_cleared
= bitmap
->mddev
->events
;
428 sb
->events_cleared
= cpu_to_le64(bitmap
->events_cleared
);
429 sb
->state
= cpu_to_le32(bitmap
->flags
);
430 /* Just in case these have been changed via sysfs: */
431 sb
->daemon_sleep
= cpu_to_le32(bitmap
->mddev
->bitmap_info
.daemon_sleep
/HZ
);
432 sb
->write_behind
= cpu_to_le32(bitmap
->mddev
->bitmap_info
.max_write_behind
);
433 /* This might have been changed by a reshape */
434 sb
->sync_size
= cpu_to_le64(bitmap
->mddev
->resync_max_sectors
);
435 sb
->chunksize
= cpu_to_le32(bitmap
->mddev
->bitmap_info
.chunksize
);
436 sb
->sectors_reserved
= cpu_to_le32(bitmap
->mddev
->
439 write_page(bitmap
, bitmap
->storage
.sb_page
, 1);
442 /* print out the bitmap file superblock */
443 void bitmap_print_sb(struct bitmap
*bitmap
)
447 if (!bitmap
|| !bitmap
->storage
.sb_page
)
449 sb
= kmap_atomic(bitmap
->storage
.sb_page
);
450 printk(KERN_DEBUG
"%s: bitmap file superblock:\n", bmname(bitmap
));
451 printk(KERN_DEBUG
" magic: %08x\n", le32_to_cpu(sb
->magic
));
452 printk(KERN_DEBUG
" version: %d\n", le32_to_cpu(sb
->version
));
453 printk(KERN_DEBUG
" uuid: %08x.%08x.%08x.%08x\n",
454 *(__u32
*)(sb
->uuid
+0),
455 *(__u32
*)(sb
->uuid
+4),
456 *(__u32
*)(sb
->uuid
+8),
457 *(__u32
*)(sb
->uuid
+12));
458 printk(KERN_DEBUG
" events: %llu\n",
459 (unsigned long long) le64_to_cpu(sb
->events
));
460 printk(KERN_DEBUG
"events cleared: %llu\n",
461 (unsigned long long) le64_to_cpu(sb
->events_cleared
));
462 printk(KERN_DEBUG
" state: %08x\n", le32_to_cpu(sb
->state
));
463 printk(KERN_DEBUG
" chunksize: %d B\n", le32_to_cpu(sb
->chunksize
));
464 printk(KERN_DEBUG
" daemon sleep: %ds\n", le32_to_cpu(sb
->daemon_sleep
));
465 printk(KERN_DEBUG
" sync size: %llu KB\n",
466 (unsigned long long)le64_to_cpu(sb
->sync_size
)/2);
467 printk(KERN_DEBUG
"max write behind: %d\n", le32_to_cpu(sb
->write_behind
));
475 * This function is somewhat the reverse of bitmap_read_sb. bitmap_read_sb
476 * reads and verifies the on-disk bitmap superblock and populates bitmap_info.
477 * This function verifies 'bitmap_info' and populates the on-disk bitmap
478 * structure, which is to be written to disk.
480 * Returns: 0 on success, -Exxx on error
482 static int bitmap_new_disk_sb(struct bitmap
*bitmap
)
485 unsigned long chunksize
, daemon_sleep
, write_behind
;
487 bitmap
->storage
.sb_page
= alloc_page(GFP_KERNEL
);
488 if (bitmap
->storage
.sb_page
== NULL
)
490 bitmap
->storage
.sb_page
->index
= 0;
492 sb
= kmap_atomic(bitmap
->storage
.sb_page
);
494 sb
->magic
= cpu_to_le32(BITMAP_MAGIC
);
495 sb
->version
= cpu_to_le32(BITMAP_MAJOR_HI
);
497 chunksize
= bitmap
->mddev
->bitmap_info
.chunksize
;
499 if (!is_power_of_2(chunksize
)) {
501 printk(KERN_ERR
"bitmap chunksize not a power of 2\n");
504 sb
->chunksize
= cpu_to_le32(chunksize
);
506 daemon_sleep
= bitmap
->mddev
->bitmap_info
.daemon_sleep
;
508 (daemon_sleep
< 1) || (daemon_sleep
> MAX_SCHEDULE_TIMEOUT
)) {
509 printk(KERN_INFO
"Choosing daemon_sleep default (5 sec)\n");
510 daemon_sleep
= 5 * HZ
;
512 sb
->daemon_sleep
= cpu_to_le32(daemon_sleep
);
513 bitmap
->mddev
->bitmap_info
.daemon_sleep
= daemon_sleep
;
516 * FIXME: write_behind for RAID1. If not specified, what
517 * is a good choice? We choose COUNTER_MAX / 2 arbitrarily.
519 write_behind
= bitmap
->mddev
->bitmap_info
.max_write_behind
;
520 if (write_behind
> COUNTER_MAX
)
521 write_behind
= COUNTER_MAX
/ 2;
522 sb
->write_behind
= cpu_to_le32(write_behind
);
523 bitmap
->mddev
->bitmap_info
.max_write_behind
= write_behind
;
525 /* keep the array size field of the bitmap superblock up to date */
526 sb
->sync_size
= cpu_to_le64(bitmap
->mddev
->resync_max_sectors
);
528 memcpy(sb
->uuid
, bitmap
->mddev
->uuid
, 16);
530 set_bit(BITMAP_STALE
, &bitmap
->flags
);
531 sb
->state
= cpu_to_le32(bitmap
->flags
);
532 bitmap
->events_cleared
= bitmap
->mddev
->events
;
533 sb
->events_cleared
= cpu_to_le64(bitmap
->mddev
->events
);
540 /* read the superblock from the bitmap file and initialize some bitmap fields */
541 static int bitmap_read_sb(struct bitmap
*bitmap
)
545 unsigned long chunksize
, daemon_sleep
, write_behind
;
546 unsigned long long events
;
547 unsigned long sectors_reserved
= 0;
549 struct page
*sb_page
;
551 if (!bitmap
->storage
.file
&& !bitmap
->mddev
->bitmap_info
.offset
) {
552 chunksize
= 128 * 1024 * 1024;
553 daemon_sleep
= 5 * HZ
;
555 set_bit(BITMAP_STALE
, &bitmap
->flags
);
559 /* page 0 is the superblock, read it... */
560 sb_page
= alloc_page(GFP_KERNEL
);
563 bitmap
->storage
.sb_page
= sb_page
;
565 if (bitmap
->storage
.file
) {
566 loff_t isize
= i_size_read(bitmap
->storage
.file
->f_mapping
->host
);
567 int bytes
= isize
> PAGE_SIZE
? PAGE_SIZE
: isize
;
569 err
= read_page(bitmap
->storage
.file
, 0,
570 bitmap
, bytes
, sb_page
);
572 err
= read_sb_page(bitmap
->mddev
,
573 bitmap
->mddev
->bitmap_info
.offset
,
575 0, sizeof(bitmap_super_t
));
580 sb
= kmap_atomic(sb_page
);
582 chunksize
= le32_to_cpu(sb
->chunksize
);
583 daemon_sleep
= le32_to_cpu(sb
->daemon_sleep
) * HZ
;
584 write_behind
= le32_to_cpu(sb
->write_behind
);
585 sectors_reserved
= le32_to_cpu(sb
->sectors_reserved
);
587 /* verify that the bitmap-specific fields are valid */
588 if (sb
->magic
!= cpu_to_le32(BITMAP_MAGIC
))
589 reason
= "bad magic";
590 else if (le32_to_cpu(sb
->version
) < BITMAP_MAJOR_LO
||
591 le32_to_cpu(sb
->version
) > BITMAP_MAJOR_HI
)
592 reason
= "unrecognized superblock version";
593 else if (chunksize
< 512)
594 reason
= "bitmap chunksize too small";
595 else if (!is_power_of_2(chunksize
))
596 reason
= "bitmap chunksize not a power of 2";
597 else if (daemon_sleep
< 1 || daemon_sleep
> MAX_SCHEDULE_TIMEOUT
)
598 reason
= "daemon sleep period out of range";
599 else if (write_behind
> COUNTER_MAX
)
600 reason
= "write-behind limit out of range (0 - 16383)";
602 printk(KERN_INFO
"%s: invalid bitmap file superblock: %s\n",
603 bmname(bitmap
), reason
);
607 /* keep the array size field of the bitmap superblock up to date */
608 sb
->sync_size
= cpu_to_le64(bitmap
->mddev
->resync_max_sectors
);
610 if (bitmap
->mddev
->persistent
) {
612 * We have a persistent array superblock, so compare the
613 * bitmap's UUID and event counter to the mddev's
615 if (memcmp(sb
->uuid
, bitmap
->mddev
->uuid
, 16)) {
617 "%s: bitmap superblock UUID mismatch\n",
621 events
= le64_to_cpu(sb
->events
);
622 if (events
< bitmap
->mddev
->events
) {
624 "%s: bitmap file is out of date (%llu < %llu) "
625 "-- forcing full recovery\n",
626 bmname(bitmap
), events
,
627 (unsigned long long) bitmap
->mddev
->events
);
628 set_bit(BITMAP_STALE
, &bitmap
->flags
);
632 /* assign fields using values from superblock */
633 bitmap
->flags
|= le32_to_cpu(sb
->state
);
634 if (le32_to_cpu(sb
->version
) == BITMAP_MAJOR_HOSTENDIAN
)
635 set_bit(BITMAP_HOSTENDIAN
, &bitmap
->flags
);
636 bitmap
->events_cleared
= le64_to_cpu(sb
->events_cleared
);
641 if (test_bit(BITMAP_STALE
, &bitmap
->flags
))
642 bitmap
->events_cleared
= bitmap
->mddev
->events
;
643 bitmap
->mddev
->bitmap_info
.chunksize
= chunksize
;
644 bitmap
->mddev
->bitmap_info
.daemon_sleep
= daemon_sleep
;
645 bitmap
->mddev
->bitmap_info
.max_write_behind
= write_behind
;
646 if (bitmap
->mddev
->bitmap_info
.space
== 0 ||
647 bitmap
->mddev
->bitmap_info
.space
> sectors_reserved
)
648 bitmap
->mddev
->bitmap_info
.space
= sectors_reserved
;
650 bitmap_print_sb(bitmap
);
655 * general bitmap file operations
661 * Use one bit per "chunk" (block set). We do the disk I/O on the bitmap
662 * file a page at a time. There's a superblock at the start of the file.
664 /* calculate the index of the page that contains this bit */
665 static inline unsigned long file_page_index(struct bitmap_storage
*store
,
669 chunk
+= sizeof(bitmap_super_t
) << 3;
670 return chunk
>> PAGE_BIT_SHIFT
;
673 /* calculate the (bit) offset of this bit within a page */
674 static inline unsigned long file_page_offset(struct bitmap_storage
*store
,
678 chunk
+= sizeof(bitmap_super_t
) << 3;
679 return chunk
& (PAGE_BITS
- 1);
683 * return a pointer to the page in the filemap that contains the given bit
686 static inline struct page
*filemap_get_page(struct bitmap_storage
*store
,
689 if (file_page_index(store
, chunk
) >= store
->file_pages
)
691 return store
->filemap
[file_page_index(store
, chunk
)];
694 static int bitmap_storage_alloc(struct bitmap_storage
*store
,
695 unsigned long chunks
, int with_super
)
698 unsigned long num_pages
;
701 bytes
= DIV_ROUND_UP(chunks
, 8);
703 bytes
+= sizeof(bitmap_super_t
);
705 num_pages
= DIV_ROUND_UP(bytes
, PAGE_SIZE
);
707 store
->filemap
= kmalloc(sizeof(struct page
*)
708 * num_pages
, GFP_KERNEL
);
712 if (with_super
&& !store
->sb_page
) {
713 store
->sb_page
= alloc_page(GFP_KERNEL
|__GFP_ZERO
);
714 if (store
->sb_page
== NULL
)
716 store
->sb_page
->index
= 0;
719 if (store
->sb_page
) {
720 store
->filemap
[0] = store
->sb_page
;
723 for ( ; pnum
< num_pages
; pnum
++) {
724 store
->filemap
[pnum
] = alloc_page(GFP_KERNEL
|__GFP_ZERO
);
725 if (!store
->filemap
[pnum
]) {
726 store
->file_pages
= pnum
;
729 store
->filemap
[pnum
]->index
= pnum
;
731 store
->file_pages
= pnum
;
733 /* We need 4 bits per page, rounded up to a multiple
734 * of sizeof(unsigned long) */
735 store
->filemap_attr
= kzalloc(
736 roundup(DIV_ROUND_UP(num_pages
*4, 8), sizeof(unsigned long)),
738 if (!store
->filemap_attr
)
741 store
->bytes
= bytes
;
746 static void bitmap_file_unmap(struct bitmap_storage
*store
)
748 struct page
**map
, *sb_page
;
753 map
= store
->filemap
;
754 pages
= store
->file_pages
;
755 sb_page
= store
->sb_page
;
758 if (map
[pages
] != sb_page
) /* 0 is sb_page, release it below */
759 free_buffers(map
[pages
]);
761 kfree(store
->filemap_attr
);
764 free_buffers(sb_page
);
767 struct inode
*inode
= file_inode(file
);
768 invalidate_mapping_pages(inode
->i_mapping
, 0, -1);
774 * bitmap_file_kick - if an error occurs while manipulating the bitmap file
775 * then it is no longer reliable, so we stop using it and we mark the file
776 * as failed in the superblock
778 static void bitmap_file_kick(struct bitmap
*bitmap
)
780 char *path
, *ptr
= NULL
;
782 if (!test_and_set_bit(BITMAP_STALE
, &bitmap
->flags
)) {
783 bitmap_update_sb(bitmap
);
785 if (bitmap
->storage
.file
) {
786 path
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
788 ptr
= d_path(&bitmap
->storage
.file
->f_path
,
792 "%s: kicking failed bitmap file %s from array!\n",
793 bmname(bitmap
), IS_ERR(ptr
) ? "" : ptr
);
798 "%s: disabling internal bitmap due to errors\n",
803 enum bitmap_page_attr
{
804 BITMAP_PAGE_DIRTY
= 0, /* there are set bits that need to be synced */
805 BITMAP_PAGE_PENDING
= 1, /* there are bits that are being cleaned.
806 * i.e. counter is 1 or 2. */
807 BITMAP_PAGE_NEEDWRITE
= 2, /* there are cleared bits that need to be synced */
810 static inline void set_page_attr(struct bitmap
*bitmap
, int pnum
,
811 enum bitmap_page_attr attr
)
813 set_bit((pnum
<<2) + attr
, bitmap
->storage
.filemap_attr
);
816 static inline void clear_page_attr(struct bitmap
*bitmap
, int pnum
,
817 enum bitmap_page_attr attr
)
819 clear_bit((pnum
<<2) + attr
, bitmap
->storage
.filemap_attr
);
822 static inline int test_page_attr(struct bitmap
*bitmap
, int pnum
,
823 enum bitmap_page_attr attr
)
825 return test_bit((pnum
<<2) + attr
, bitmap
->storage
.filemap_attr
);
828 static inline int test_and_clear_page_attr(struct bitmap
*bitmap
, int pnum
,
829 enum bitmap_page_attr attr
)
831 return test_and_clear_bit((pnum
<<2) + attr
,
832 bitmap
->storage
.filemap_attr
);
835 * bitmap_file_set_bit -- called before performing a write to the md device
836 * to set (and eventually sync) a particular bit in the bitmap file
838 * we set the bit immediately, then we record the page number so that
839 * when an unplug occurs, we can flush the dirty pages out to disk
841 static void bitmap_file_set_bit(struct bitmap
*bitmap
, sector_t block
)
846 unsigned long chunk
= block
>> bitmap
->counts
.chunkshift
;
848 page
= filemap_get_page(&bitmap
->storage
, chunk
);
851 bit
= file_page_offset(&bitmap
->storage
, chunk
);
854 kaddr
= kmap_atomic(page
);
855 if (test_bit(BITMAP_HOSTENDIAN
, &bitmap
->flags
))
858 set_bit_le(bit
, kaddr
);
859 kunmap_atomic(kaddr
);
860 pr_debug("set file bit %lu page %lu\n", bit
, page
->index
);
861 /* record page number so it gets flushed to disk when unplug occurs */
862 set_page_attr(bitmap
, page
->index
, BITMAP_PAGE_DIRTY
);
865 static void bitmap_file_clear_bit(struct bitmap
*bitmap
, sector_t block
)
870 unsigned long chunk
= block
>> bitmap
->counts
.chunkshift
;
872 page
= filemap_get_page(&bitmap
->storage
, chunk
);
875 bit
= file_page_offset(&bitmap
->storage
, chunk
);
876 paddr
= kmap_atomic(page
);
877 if (test_bit(BITMAP_HOSTENDIAN
, &bitmap
->flags
))
878 clear_bit(bit
, paddr
);
880 clear_bit_le(bit
, paddr
);
881 kunmap_atomic(paddr
);
882 if (!test_page_attr(bitmap
, page
->index
, BITMAP_PAGE_NEEDWRITE
)) {
883 set_page_attr(bitmap
, page
->index
, BITMAP_PAGE_PENDING
);
884 bitmap
->allclean
= 0;
888 /* this gets called when the md device is ready to unplug its underlying
889 * (slave) device queues -- before we let any writes go down, we need to
890 * sync the dirty pages of the bitmap file to disk */
891 void bitmap_unplug(struct bitmap
*bitmap
)
894 int dirty
, need_write
;
896 if (!bitmap
|| !bitmap
->storage
.filemap
||
897 test_bit(BITMAP_STALE
, &bitmap
->flags
))
900 /* look at each page to see if there are any set bits that need to be
901 * flushed out to disk */
902 for (i
= 0; i
< bitmap
->storage
.file_pages
; i
++) {
903 if (!bitmap
->storage
.filemap
)
905 dirty
= test_and_clear_page_attr(bitmap
, i
, BITMAP_PAGE_DIRTY
);
906 need_write
= test_and_clear_page_attr(bitmap
, i
,
907 BITMAP_PAGE_NEEDWRITE
);
908 if (dirty
|| need_write
) {
909 clear_page_attr(bitmap
, i
, BITMAP_PAGE_PENDING
);
910 write_page(bitmap
, bitmap
->storage
.filemap
[i
], 0);
913 if (bitmap
->storage
.file
)
914 wait_event(bitmap
->write_wait
,
915 atomic_read(&bitmap
->pending_writes
)==0);
917 md_super_wait(bitmap
->mddev
);
919 if (test_bit(BITMAP_WRITE_ERROR
, &bitmap
->flags
))
920 bitmap_file_kick(bitmap
);
922 EXPORT_SYMBOL(bitmap_unplug
);
924 static void bitmap_set_memory_bits(struct bitmap
*bitmap
, sector_t offset
, int needed
);
925 /* * bitmap_init_from_disk -- called at bitmap_create time to initialize
926 * the in-memory bitmap from the on-disk bitmap -- also, sets up the
927 * memory mapping of the bitmap file
929 * if there's no bitmap file, or if the bitmap file had been
930 * previously kicked from the array, we mark all the bits as
931 * 1's in order to cause a full resync.
933 * We ignore all bits for sectors that end earlier than 'start'.
934 * This is used when reading an out-of-date bitmap...
936 static int bitmap_init_from_disk(struct bitmap
*bitmap
, sector_t start
)
938 unsigned long i
, chunks
, index
, oldindex
, bit
;
939 struct page
*page
= NULL
;
940 unsigned long bit_cnt
= 0;
942 unsigned long offset
;
946 struct bitmap_storage
*store
= &bitmap
->storage
;
948 chunks
= bitmap
->counts
.chunks
;
951 if (!file
&& !bitmap
->mddev
->bitmap_info
.offset
) {
952 /* No permanent bitmap - fill with '1s'. */
953 store
->filemap
= NULL
;
954 store
->file_pages
= 0;
955 for (i
= 0; i
< chunks
; i
++) {
956 /* if the disk bit is set, set the memory bit */
957 int needed
= ((sector_t
)(i
+1) << (bitmap
->counts
.chunkshift
)
959 bitmap_set_memory_bits(bitmap
,
960 (sector_t
)i
<< bitmap
->counts
.chunkshift
,
966 outofdate
= test_bit(BITMAP_STALE
, &bitmap
->flags
);
968 printk(KERN_INFO
"%s: bitmap file is out of date, doing full "
969 "recovery\n", bmname(bitmap
));
971 if (file
&& i_size_read(file
->f_mapping
->host
) < store
->bytes
) {
972 printk(KERN_INFO
"%s: bitmap file too short %lu < %lu\n",
974 (unsigned long) i_size_read(file
->f_mapping
->host
),
981 if (!bitmap
->mddev
->bitmap_info
.external
)
982 offset
= sizeof(bitmap_super_t
);
984 for (i
= 0; i
< chunks
; i
++) {
986 index
= file_page_index(&bitmap
->storage
, i
);
987 bit
= file_page_offset(&bitmap
->storage
, i
);
988 if (index
!= oldindex
) { /* this is a new page, read it in */
990 /* unmap the old page, we're done with it */
991 if (index
== store
->file_pages
-1)
992 count
= store
->bytes
- index
* PAGE_SIZE
;
995 page
= store
->filemap
[index
];
997 ret
= read_page(file
, index
, bitmap
,
1002 bitmap
->mddev
->bitmap_info
.offset
,
1013 * if bitmap is out of date, dirty the
1014 * whole page and write it out
1016 paddr
= kmap_atomic(page
);
1017 memset(paddr
+ offset
, 0xff,
1018 PAGE_SIZE
- offset
);
1019 kunmap_atomic(paddr
);
1020 write_page(bitmap
, page
, 1);
1023 if (test_bit(BITMAP_WRITE_ERROR
,
1028 paddr
= kmap_atomic(page
);
1029 if (test_bit(BITMAP_HOSTENDIAN
, &bitmap
->flags
))
1030 b
= test_bit(bit
, paddr
);
1032 b
= test_bit_le(bit
, paddr
);
1033 kunmap_atomic(paddr
);
1035 /* if the disk bit is set, set the memory bit */
1036 int needed
= ((sector_t
)(i
+1) << bitmap
->counts
.chunkshift
1038 bitmap_set_memory_bits(bitmap
,
1039 (sector_t
)i
<< bitmap
->counts
.chunkshift
,
1046 printk(KERN_INFO
"%s: bitmap initialized from disk: "
1047 "read %lu pages, set %lu of %lu bits\n",
1048 bmname(bitmap
), store
->file_pages
,
1054 printk(KERN_INFO
"%s: bitmap initialisation failed: %d\n",
1055 bmname(bitmap
), ret
);
1059 void bitmap_write_all(struct bitmap
*bitmap
)
1061 /* We don't actually write all bitmap blocks here,
1062 * just flag them as needing to be written
1066 if (!bitmap
|| !bitmap
->storage
.filemap
)
1068 if (bitmap
->storage
.file
)
1069 /* Only one copy, so nothing needed */
1072 for (i
= 0; i
< bitmap
->storage
.file_pages
; i
++)
1073 set_page_attr(bitmap
, i
,
1074 BITMAP_PAGE_NEEDWRITE
);
1075 bitmap
->allclean
= 0;
1078 static void bitmap_count_page(struct bitmap_counts
*bitmap
,
1079 sector_t offset
, int inc
)
1081 sector_t chunk
= offset
>> bitmap
->chunkshift
;
1082 unsigned long page
= chunk
>> PAGE_COUNTER_SHIFT
;
1083 bitmap
->bp
[page
].count
+= inc
;
1084 bitmap_checkfree(bitmap
, page
);
1087 static void bitmap_set_pending(struct bitmap_counts
*bitmap
, sector_t offset
)
1089 sector_t chunk
= offset
>> bitmap
->chunkshift
;
1090 unsigned long page
= chunk
>> PAGE_COUNTER_SHIFT
;
1091 struct bitmap_page
*bp
= &bitmap
->bp
[page
];
1097 static bitmap_counter_t
*bitmap_get_counter(struct bitmap_counts
*bitmap
,
1098 sector_t offset
, sector_t
*blocks
,
1102 * bitmap daemon -- periodically wakes up to clean bits and flush pages
1106 void bitmap_daemon_work(struct mddev
*mddev
)
1108 struct bitmap
*bitmap
;
1110 unsigned long nextpage
;
1112 struct bitmap_counts
*counts
;
1114 /* Use a mutex to guard daemon_work against
1117 mutex_lock(&mddev
->bitmap_info
.mutex
);
1118 bitmap
= mddev
->bitmap
;
1119 if (bitmap
== NULL
) {
1120 mutex_unlock(&mddev
->bitmap_info
.mutex
);
1123 if (time_before(jiffies
, bitmap
->daemon_lastrun
1124 + mddev
->bitmap_info
.daemon_sleep
))
1127 bitmap
->daemon_lastrun
= jiffies
;
1128 if (bitmap
->allclean
) {
1129 mddev
->thread
->timeout
= MAX_SCHEDULE_TIMEOUT
;
1132 bitmap
->allclean
= 1;
1134 /* Any file-page which is PENDING now needs to be written.
1135 * So set NEEDWRITE now, then after we make any last-minute changes
1138 for (j
= 0; j
< bitmap
->storage
.file_pages
; j
++)
1139 if (test_and_clear_page_attr(bitmap
, j
,
1140 BITMAP_PAGE_PENDING
))
1141 set_page_attr(bitmap
, j
,
1142 BITMAP_PAGE_NEEDWRITE
);
1144 if (bitmap
->need_sync
&&
1145 mddev
->bitmap_info
.external
== 0) {
1146 /* Arrange for superblock update as well as
1149 bitmap
->need_sync
= 0;
1150 if (bitmap
->storage
.filemap
) {
1151 sb
= kmap_atomic(bitmap
->storage
.sb_page
);
1152 sb
->events_cleared
=
1153 cpu_to_le64(bitmap
->events_cleared
);
1155 set_page_attr(bitmap
, 0,
1156 BITMAP_PAGE_NEEDWRITE
);
1159 /* Now look at the bitmap counters and if any are '2' or '1',
1160 * decrement and handle accordingly.
1162 counts
= &bitmap
->counts
;
1163 spin_lock_irq(&counts
->lock
);
1165 for (j
= 0; j
< counts
->chunks
; j
++) {
1166 bitmap_counter_t
*bmc
;
1167 sector_t block
= (sector_t
)j
<< counts
->chunkshift
;
1169 if (j
== nextpage
) {
1170 nextpage
+= PAGE_COUNTER_RATIO
;
1171 if (!counts
->bp
[j
>> PAGE_COUNTER_SHIFT
].pending
) {
1172 j
|= PAGE_COUNTER_MASK
;
1175 counts
->bp
[j
>> PAGE_COUNTER_SHIFT
].pending
= 0;
1177 bmc
= bitmap_get_counter(counts
,
1182 j
|= PAGE_COUNTER_MASK
;
1185 if (*bmc
== 1 && !bitmap
->need_sync
) {
1186 /* We can clear the bit */
1188 bitmap_count_page(counts
, block
, -1);
1189 bitmap_file_clear_bit(bitmap
, block
);
1190 } else if (*bmc
&& *bmc
<= 2) {
1192 bitmap_set_pending(counts
, block
);
1193 bitmap
->allclean
= 0;
1196 spin_unlock_irq(&counts
->lock
);
1198 /* Now start writeout on any page in NEEDWRITE that isn't DIRTY.
1199 * DIRTY pages need to be written by bitmap_unplug so it can wait
1201 * If we find any DIRTY page we stop there and let bitmap_unplug
1202 * handle all the rest. This is important in the case where
1203 * the first blocking holds the superblock and it has been updated.
1204 * We mustn't write any other blocks before the superblock.
1207 j
< bitmap
->storage
.file_pages
1208 && !test_bit(BITMAP_STALE
, &bitmap
->flags
);
1211 if (test_page_attr(bitmap
, j
,
1213 /* bitmap_unplug will handle the rest */
1215 if (test_and_clear_page_attr(bitmap
, j
,
1216 BITMAP_PAGE_NEEDWRITE
)) {
1217 write_page(bitmap
, bitmap
->storage
.filemap
[j
], 0);
1222 if (bitmap
->allclean
== 0)
1223 mddev
->thread
->timeout
=
1224 mddev
->bitmap_info
.daemon_sleep
;
1225 mutex_unlock(&mddev
->bitmap_info
.mutex
);
1228 static bitmap_counter_t
*bitmap_get_counter(struct bitmap_counts
*bitmap
,
1229 sector_t offset
, sector_t
*blocks
,
1231 __releases(bitmap
->lock
)
1232 __acquires(bitmap
->lock
)
1234 /* If 'create', we might release the lock and reclaim it.
1235 * The lock must have been taken with interrupts enabled.
1236 * If !create, we don't release the lock.
1238 sector_t chunk
= offset
>> bitmap
->chunkshift
;
1239 unsigned long page
= chunk
>> PAGE_COUNTER_SHIFT
;
1240 unsigned long pageoff
= (chunk
& PAGE_COUNTER_MASK
) << COUNTER_BYTE_SHIFT
;
1244 err
= bitmap_checkpage(bitmap
, page
, create
);
1246 if (bitmap
->bp
[page
].hijacked
||
1247 bitmap
->bp
[page
].map
== NULL
)
1248 csize
= ((sector_t
)1) << (bitmap
->chunkshift
+
1249 PAGE_COUNTER_SHIFT
- 1);
1251 csize
= ((sector_t
)1) << bitmap
->chunkshift
;
1252 *blocks
= csize
- (offset
& (csize
- 1));
1257 /* now locked ... */
1259 if (bitmap
->bp
[page
].hijacked
) { /* hijacked pointer */
1260 /* should we use the first or second counter field
1261 * of the hijacked pointer? */
1262 int hi
= (pageoff
> PAGE_COUNTER_MASK
);
1263 return &((bitmap_counter_t
*)
1264 &bitmap
->bp
[page
].map
)[hi
];
1265 } else /* page is allocated */
1266 return (bitmap_counter_t
*)
1267 &(bitmap
->bp
[page
].map
[pageoff
]);
1270 int bitmap_startwrite(struct bitmap
*bitmap
, sector_t offset
, unsigned long sectors
, int behind
)
1277 atomic_inc(&bitmap
->behind_writes
);
1278 bw
= atomic_read(&bitmap
->behind_writes
);
1279 if (bw
> bitmap
->behind_writes_used
)
1280 bitmap
->behind_writes_used
= bw
;
1282 pr_debug("inc write-behind count %d/%lu\n",
1283 bw
, bitmap
->mddev
->bitmap_info
.max_write_behind
);
1288 bitmap_counter_t
*bmc
;
1290 spin_lock_irq(&bitmap
->counts
.lock
);
1291 bmc
= bitmap_get_counter(&bitmap
->counts
, offset
, &blocks
, 1);
1293 spin_unlock_irq(&bitmap
->counts
.lock
);
1297 if (unlikely(COUNTER(*bmc
) == COUNTER_MAX
)) {
1298 DEFINE_WAIT(__wait
);
1299 /* note that it is safe to do the prepare_to_wait
1300 * after the test as long as we do it before dropping
1303 prepare_to_wait(&bitmap
->overflow_wait
, &__wait
,
1304 TASK_UNINTERRUPTIBLE
);
1305 spin_unlock_irq(&bitmap
->counts
.lock
);
1307 finish_wait(&bitmap
->overflow_wait
, &__wait
);
1313 bitmap_file_set_bit(bitmap
, offset
);
1314 bitmap_count_page(&bitmap
->counts
, offset
, 1);
1322 spin_unlock_irq(&bitmap
->counts
.lock
);
1325 if (sectors
> blocks
)
1332 EXPORT_SYMBOL(bitmap_startwrite
);
1334 void bitmap_endwrite(struct bitmap
*bitmap
, sector_t offset
, unsigned long sectors
,
1335 int success
, int behind
)
1340 if (atomic_dec_and_test(&bitmap
->behind_writes
))
1341 wake_up(&bitmap
->behind_wait
);
1342 pr_debug("dec write-behind count %d/%lu\n",
1343 atomic_read(&bitmap
->behind_writes
),
1344 bitmap
->mddev
->bitmap_info
.max_write_behind
);
1349 unsigned long flags
;
1350 bitmap_counter_t
*bmc
;
1352 spin_lock_irqsave(&bitmap
->counts
.lock
, flags
);
1353 bmc
= bitmap_get_counter(&bitmap
->counts
, offset
, &blocks
, 0);
1355 spin_unlock_irqrestore(&bitmap
->counts
.lock
, flags
);
1359 if (success
&& !bitmap
->mddev
->degraded
&&
1360 bitmap
->events_cleared
< bitmap
->mddev
->events
) {
1361 bitmap
->events_cleared
= bitmap
->mddev
->events
;
1362 bitmap
->need_sync
= 1;
1363 sysfs_notify_dirent_safe(bitmap
->sysfs_can_clear
);
1366 if (!success
&& !NEEDED(*bmc
))
1367 *bmc
|= NEEDED_MASK
;
1369 if (COUNTER(*bmc
) == COUNTER_MAX
)
1370 wake_up(&bitmap
->overflow_wait
);
1374 bitmap_set_pending(&bitmap
->counts
, offset
);
1375 bitmap
->allclean
= 0;
1377 spin_unlock_irqrestore(&bitmap
->counts
.lock
, flags
);
1379 if (sectors
> blocks
)
1385 EXPORT_SYMBOL(bitmap_endwrite
);
1387 static int __bitmap_start_sync(struct bitmap
*bitmap
, sector_t offset
, sector_t
*blocks
,
1390 bitmap_counter_t
*bmc
;
1392 if (bitmap
== NULL
) {/* FIXME or bitmap set as 'failed' */
1394 return 1; /* always resync if no bitmap */
1396 spin_lock_irq(&bitmap
->counts
.lock
);
1397 bmc
= bitmap_get_counter(&bitmap
->counts
, offset
, blocks
, 0);
1403 else if (NEEDED(*bmc
)) {
1405 if (!degraded
) { /* don't set/clear bits if degraded */
1406 *bmc
|= RESYNC_MASK
;
1407 *bmc
&= ~NEEDED_MASK
;
1411 spin_unlock_irq(&bitmap
->counts
.lock
);
1415 int bitmap_start_sync(struct bitmap
*bitmap
, sector_t offset
, sector_t
*blocks
,
1418 /* bitmap_start_sync must always report on multiples of whole
1419 * pages, otherwise resync (which is very PAGE_SIZE based) will
1421 * So call __bitmap_start_sync repeatedly (if needed) until
1422 * At least PAGE_SIZE>>9 blocks are covered.
1423 * Return the 'or' of the result.
1429 while (*blocks
< (PAGE_SIZE
>>9)) {
1430 rv
|= __bitmap_start_sync(bitmap
, offset
,
1431 &blocks1
, degraded
);
1437 EXPORT_SYMBOL(bitmap_start_sync
);
1439 void bitmap_end_sync(struct bitmap
*bitmap
, sector_t offset
, sector_t
*blocks
, int aborted
)
1441 bitmap_counter_t
*bmc
;
1442 unsigned long flags
;
1444 if (bitmap
== NULL
) {
1448 spin_lock_irqsave(&bitmap
->counts
.lock
, flags
);
1449 bmc
= bitmap_get_counter(&bitmap
->counts
, offset
, blocks
, 0);
1454 *bmc
&= ~RESYNC_MASK
;
1456 if (!NEEDED(*bmc
) && aborted
)
1457 *bmc
|= NEEDED_MASK
;
1460 bitmap_set_pending(&bitmap
->counts
, offset
);
1461 bitmap
->allclean
= 0;
1466 spin_unlock_irqrestore(&bitmap
->counts
.lock
, flags
);
1468 EXPORT_SYMBOL(bitmap_end_sync
);
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);
1485 EXPORT_SYMBOL(bitmap_close_sync
);
1487 void bitmap_cond_end_sync(struct bitmap
*bitmap
, sector_t sector
)
1495 bitmap
->last_end_sync
= jiffies
;
1498 if (time_before(jiffies
, (bitmap
->last_end_sync
1499 + bitmap
->mddev
->bitmap_info
.daemon_sleep
)))
1501 wait_event(bitmap
->mddev
->recovery_wait
,
1502 atomic_read(&bitmap
->mddev
->recovery_active
) == 0);
1504 bitmap
->mddev
->curr_resync_completed
= sector
;
1505 set_bit(MD_CHANGE_CLEAN
, &bitmap
->mddev
->flags
);
1506 sector
&= ~((1ULL << bitmap
->counts
.chunkshift
) - 1);
1508 while (s
< sector
&& s
< bitmap
->mddev
->resync_max_sectors
) {
1509 bitmap_end_sync(bitmap
, s
, &blocks
, 0);
1512 bitmap
->last_end_sync
= jiffies
;
1513 sysfs_notify(&bitmap
->mddev
->kobj
, NULL
, "sync_completed");
1515 EXPORT_SYMBOL(bitmap_cond_end_sync
);
1517 static void bitmap_set_memory_bits(struct bitmap
*bitmap
, sector_t offset
, int needed
)
1519 /* For each chunk covered by any of these sectors, set the
1520 * counter to 2 and possibly set resync_needed. They should all
1521 * be 0 at this point
1525 bitmap_counter_t
*bmc
;
1526 spin_lock_irq(&bitmap
->counts
.lock
);
1527 bmc
= bitmap_get_counter(&bitmap
->counts
, offset
, &secs
, 1);
1529 spin_unlock_irq(&bitmap
->counts
.lock
);
1533 *bmc
= 2 | (needed
? NEEDED_MASK
: 0);
1534 bitmap_count_page(&bitmap
->counts
, offset
, 1);
1535 bitmap_set_pending(&bitmap
->counts
, offset
);
1536 bitmap
->allclean
= 0;
1538 spin_unlock_irq(&bitmap
->counts
.lock
);
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
<< bitmap
->counts
.chunkshift
;
1548 bitmap_set_memory_bits(bitmap
, sec
, 1);
1549 bitmap_file_set_bit(bitmap
, sec
);
1550 if (sec
< bitmap
->mddev
->recovery_cp
)
1551 /* We are asserting that the array is dirty,
1552 * so move the recovery_cp address back so
1553 * that it is obvious that it is dirty
1555 bitmap
->mddev
->recovery_cp
= sec
;
1560 * flush out any pending updates
1562 void bitmap_flush(struct mddev
*mddev
)
1564 struct bitmap
*bitmap
= mddev
->bitmap
;
1567 if (!bitmap
) /* there was no bitmap */
1570 /* run the daemon_work three time to ensure everything is flushed
1573 sleep
= mddev
->bitmap_info
.daemon_sleep
* 2;
1574 bitmap
->daemon_lastrun
-= sleep
;
1575 bitmap_daemon_work(mddev
);
1576 bitmap
->daemon_lastrun
-= sleep
;
1577 bitmap_daemon_work(mddev
);
1578 bitmap
->daemon_lastrun
-= sleep
;
1579 bitmap_daemon_work(mddev
);
1580 bitmap_update_sb(bitmap
);
1584 * free memory that was allocated
1586 static void bitmap_free(struct bitmap
*bitmap
)
1588 unsigned long k
, pages
;
1589 struct bitmap_page
*bp
;
1591 if (!bitmap
) /* there was no bitmap */
1594 /* Shouldn't be needed - but just in case.... */
1595 wait_event(bitmap
->write_wait
,
1596 atomic_read(&bitmap
->pending_writes
) == 0);
1598 /* release the bitmap file */
1599 bitmap_file_unmap(&bitmap
->storage
);
1601 bp
= bitmap
->counts
.bp
;
1602 pages
= bitmap
->counts
.pages
;
1604 /* free all allocated memory */
1606 if (bp
) /* deallocate the page memory */
1607 for (k
= 0; k
< pages
; k
++)
1608 if (bp
[k
].map
&& !bp
[k
].hijacked
)
1614 void bitmap_destroy(struct mddev
*mddev
)
1616 struct bitmap
*bitmap
= mddev
->bitmap
;
1618 if (!bitmap
) /* there was no bitmap */
1621 mutex_lock(&mddev
->bitmap_info
.mutex
);
1622 spin_lock(&mddev
->lock
);
1623 mddev
->bitmap
= NULL
; /* disconnect from the md device */
1624 spin_unlock(&mddev
->lock
);
1625 mutex_unlock(&mddev
->bitmap_info
.mutex
);
1627 mddev
->thread
->timeout
= MAX_SCHEDULE_TIMEOUT
;
1629 if (bitmap
->sysfs_can_clear
)
1630 sysfs_put(bitmap
->sysfs_can_clear
);
1632 bitmap_free(bitmap
);
1636 * initialize the bitmap structure
1637 * if this returns an error, bitmap_destroy must be called to do clean up
1639 int bitmap_create(struct mddev
*mddev
)
1641 struct bitmap
*bitmap
;
1642 sector_t blocks
= mddev
->resync_max_sectors
;
1643 struct file
*file
= mddev
->bitmap_info
.file
;
1645 struct kernfs_node
*bm
= NULL
;
1647 BUILD_BUG_ON(sizeof(bitmap_super_t
) != 256);
1649 BUG_ON(file
&& mddev
->bitmap_info
.offset
);
1651 bitmap
= kzalloc(sizeof(*bitmap
), GFP_KERNEL
);
1655 spin_lock_init(&bitmap
->counts
.lock
);
1656 atomic_set(&bitmap
->pending_writes
, 0);
1657 init_waitqueue_head(&bitmap
->write_wait
);
1658 init_waitqueue_head(&bitmap
->overflow_wait
);
1659 init_waitqueue_head(&bitmap
->behind_wait
);
1661 bitmap
->mddev
= mddev
;
1664 bm
= sysfs_get_dirent(mddev
->kobj
.sd
, "bitmap");
1666 bitmap
->sysfs_can_clear
= sysfs_get_dirent(bm
, "can_clear");
1669 bitmap
->sysfs_can_clear
= NULL
;
1671 bitmap
->storage
.file
= file
;
1674 /* As future accesses to this file will use bmap,
1675 * and bypass the page cache, we must sync the file
1680 /* read superblock from bitmap file (this sets mddev->bitmap_info.chunksize) */
1681 if (!mddev
->bitmap_info
.external
) {
1683 * If 'MD_ARRAY_FIRST_USE' is set, then device-mapper is
1684 * instructing us to create a new on-disk bitmap instance.
1686 if (test_and_clear_bit(MD_ARRAY_FIRST_USE
, &mddev
->flags
))
1687 err
= bitmap_new_disk_sb(bitmap
);
1689 err
= bitmap_read_sb(bitmap
);
1692 if (mddev
->bitmap_info
.chunksize
== 0 ||
1693 mddev
->bitmap_info
.daemon_sleep
== 0)
1694 /* chunksize and time_base need to be
1701 bitmap
->daemon_lastrun
= jiffies
;
1702 err
= bitmap_resize(bitmap
, blocks
, mddev
->bitmap_info
.chunksize
, 1);
1706 printk(KERN_INFO
"created bitmap (%lu pages) for device %s\n",
1707 bitmap
->counts
.pages
, bmname(bitmap
));
1709 mddev
->bitmap
= bitmap
;
1710 return test_bit(BITMAP_WRITE_ERROR
, &bitmap
->flags
) ? -EIO
: 0;
1713 bitmap_free(bitmap
);
1717 int bitmap_load(struct mddev
*mddev
)
1721 sector_t sector
= 0;
1722 struct bitmap
*bitmap
= mddev
->bitmap
;
1727 /* Clear out old bitmap info first: Either there is none, or we
1728 * are resuming after someone else has possibly changed things,
1729 * so we should forget old cached info.
1730 * All chunks should be clean, but some might need_sync.
1732 while (sector
< mddev
->resync_max_sectors
) {
1734 bitmap_start_sync(bitmap
, sector
, &blocks
, 0);
1737 bitmap_close_sync(bitmap
);
1739 if (mddev
->degraded
== 0
1740 || bitmap
->events_cleared
== mddev
->events
)
1741 /* no need to keep dirty bits to optimise a
1742 * re-add of a missing device */
1743 start
= mddev
->recovery_cp
;
1745 mutex_lock(&mddev
->bitmap_info
.mutex
);
1746 err
= bitmap_init_from_disk(bitmap
, start
);
1747 mutex_unlock(&mddev
->bitmap_info
.mutex
);
1751 clear_bit(BITMAP_STALE
, &bitmap
->flags
);
1753 /* Kick recovery in case any bits were set */
1754 set_bit(MD_RECOVERY_NEEDED
, &bitmap
->mddev
->recovery
);
1756 mddev
->thread
->timeout
= mddev
->bitmap_info
.daemon_sleep
;
1757 md_wakeup_thread(mddev
->thread
);
1759 bitmap_update_sb(bitmap
);
1761 if (test_bit(BITMAP_WRITE_ERROR
, &bitmap
->flags
))
1766 EXPORT_SYMBOL_GPL(bitmap_load
);
1768 void bitmap_status(struct seq_file
*seq
, struct bitmap
*bitmap
)
1770 unsigned long chunk_kb
;
1771 struct bitmap_counts
*counts
;
1776 counts
= &bitmap
->counts
;
1778 chunk_kb
= bitmap
->mddev
->bitmap_info
.chunksize
>> 10;
1779 seq_printf(seq
, "bitmap: %lu/%lu pages [%luKB], "
1781 counts
->pages
- counts
->missing_pages
,
1783 (counts
->pages
- counts
->missing_pages
)
1784 << (PAGE_SHIFT
- 10),
1785 chunk_kb
? chunk_kb
: bitmap
->mddev
->bitmap_info
.chunksize
,
1786 chunk_kb
? "KB" : "B");
1787 if (bitmap
->storage
.file
) {
1788 seq_printf(seq
, ", file: ");
1789 seq_path(seq
, &bitmap
->storage
.file
->f_path
, " \t\n");
1792 seq_printf(seq
, "\n");
1795 int bitmap_resize(struct bitmap
*bitmap
, sector_t blocks
,
1796 int chunksize
, int init
)
1798 /* If chunk_size is 0, choose an appropriate chunk size.
1799 * Then possibly allocate new storage space.
1800 * Then quiesce, copy bits, replace bitmap, and re-start
1802 * This function is called both to set up the initial bitmap
1803 * and to resize the bitmap while the array is active.
1804 * If this happens as a result of the array being resized,
1805 * chunksize will be zero, and we need to choose a suitable
1806 * chunksize, otherwise we use what we are given.
1808 struct bitmap_storage store
;
1809 struct bitmap_counts old_counts
;
1810 unsigned long chunks
;
1812 sector_t old_blocks
, new_blocks
;
1816 struct bitmap_page
*new_bp
;
1818 if (chunksize
== 0) {
1819 /* If there is enough space, leave the chunk size unchanged,
1820 * else increase by factor of two until there is enough space.
1823 long space
= bitmap
->mddev
->bitmap_info
.space
;
1826 /* We don't know how much space there is, so limit
1827 * to current size - in sectors.
1829 bytes
= DIV_ROUND_UP(bitmap
->counts
.chunks
, 8);
1830 if (!bitmap
->mddev
->bitmap_info
.external
)
1831 bytes
+= sizeof(bitmap_super_t
);
1832 space
= DIV_ROUND_UP(bytes
, 512);
1833 bitmap
->mddev
->bitmap_info
.space
= space
;
1835 chunkshift
= bitmap
->counts
.chunkshift
;
1838 /* 'chunkshift' is shift from block size to chunk size */
1840 chunks
= DIV_ROUND_UP_SECTOR_T(blocks
, 1 << chunkshift
);
1841 bytes
= DIV_ROUND_UP(chunks
, 8);
1842 if (!bitmap
->mddev
->bitmap_info
.external
)
1843 bytes
+= sizeof(bitmap_super_t
);
1844 } while (bytes
> (space
<< 9));
1846 chunkshift
= ffz(~chunksize
) - BITMAP_BLOCK_SHIFT
;
1848 chunks
= DIV_ROUND_UP_SECTOR_T(blocks
, 1 << chunkshift
);
1849 memset(&store
, 0, sizeof(store
));
1850 if (bitmap
->mddev
->bitmap_info
.offset
|| bitmap
->mddev
->bitmap_info
.file
)
1851 ret
= bitmap_storage_alloc(&store
, chunks
,
1852 !bitmap
->mddev
->bitmap_info
.external
);
1856 pages
= DIV_ROUND_UP(chunks
, PAGE_COUNTER_RATIO
);
1858 new_bp
= kzalloc(pages
* sizeof(*new_bp
), GFP_KERNEL
);
1861 bitmap_file_unmap(&store
);
1866 bitmap
->mddev
->pers
->quiesce(bitmap
->mddev
, 1);
1868 store
.file
= bitmap
->storage
.file
;
1869 bitmap
->storage
.file
= NULL
;
1871 if (store
.sb_page
&& bitmap
->storage
.sb_page
)
1872 memcpy(page_address(store
.sb_page
),
1873 page_address(bitmap
->storage
.sb_page
),
1874 sizeof(bitmap_super_t
));
1875 bitmap_file_unmap(&bitmap
->storage
);
1876 bitmap
->storage
= store
;
1878 old_counts
= bitmap
->counts
;
1879 bitmap
->counts
.bp
= new_bp
;
1880 bitmap
->counts
.pages
= pages
;
1881 bitmap
->counts
.missing_pages
= pages
;
1882 bitmap
->counts
.chunkshift
= chunkshift
;
1883 bitmap
->counts
.chunks
= chunks
;
1884 bitmap
->mddev
->bitmap_info
.chunksize
= 1 << (chunkshift
+
1885 BITMAP_BLOCK_SHIFT
);
1887 blocks
= min(old_counts
.chunks
<< old_counts
.chunkshift
,
1888 chunks
<< chunkshift
);
1890 spin_lock_irq(&bitmap
->counts
.lock
);
1891 for (block
= 0; block
< blocks
; ) {
1892 bitmap_counter_t
*bmc_old
, *bmc_new
;
1895 bmc_old
= bitmap_get_counter(&old_counts
, block
,
1897 set
= bmc_old
&& NEEDED(*bmc_old
);
1900 bmc_new
= bitmap_get_counter(&bitmap
->counts
, block
,
1902 if (*bmc_new
== 0) {
1903 /* need to set on-disk bits too. */
1904 sector_t end
= block
+ new_blocks
;
1905 sector_t start
= block
>> chunkshift
;
1906 start
<<= chunkshift
;
1907 while (start
< end
) {
1908 bitmap_file_set_bit(bitmap
, block
);
1909 start
+= 1 << chunkshift
;
1912 bitmap_count_page(&bitmap
->counts
,
1914 bitmap_set_pending(&bitmap
->counts
,
1917 *bmc_new
|= NEEDED_MASK
;
1918 if (new_blocks
< old_blocks
)
1919 old_blocks
= new_blocks
;
1921 block
+= old_blocks
;
1926 while (block
< (chunks
<< chunkshift
)) {
1927 bitmap_counter_t
*bmc
;
1928 bmc
= bitmap_get_counter(&bitmap
->counts
, block
,
1931 /* new space. It needs to be resynced, so
1932 * we set NEEDED_MASK.
1935 *bmc
= NEEDED_MASK
| 2;
1936 bitmap_count_page(&bitmap
->counts
,
1938 bitmap_set_pending(&bitmap
->counts
,
1942 block
+= new_blocks
;
1944 for (i
= 0; i
< bitmap
->storage
.file_pages
; i
++)
1945 set_page_attr(bitmap
, i
, BITMAP_PAGE_DIRTY
);
1947 spin_unlock_irq(&bitmap
->counts
.lock
);
1950 bitmap_unplug(bitmap
);
1951 bitmap
->mddev
->pers
->quiesce(bitmap
->mddev
, 0);
1957 EXPORT_SYMBOL_GPL(bitmap_resize
);
1960 location_show(struct mddev
*mddev
, char *page
)
1963 if (mddev
->bitmap_info
.file
)
1964 len
= sprintf(page
, "file");
1965 else if (mddev
->bitmap_info
.offset
)
1966 len
= sprintf(page
, "%+lld", (long long)mddev
->bitmap_info
.offset
);
1968 len
= sprintf(page
, "none");
1969 len
+= sprintf(page
+len
, "\n");
1974 location_store(struct mddev
*mddev
, const char *buf
, size_t len
)
1978 if (!mddev
->pers
->quiesce
)
1980 if (mddev
->recovery
|| mddev
->sync_thread
)
1984 if (mddev
->bitmap
|| mddev
->bitmap_info
.file
||
1985 mddev
->bitmap_info
.offset
) {
1986 /* bitmap already configured. Only option is to clear it */
1987 if (strncmp(buf
, "none", 4) != 0)
1990 mddev
->pers
->quiesce(mddev
, 1);
1991 bitmap_destroy(mddev
);
1992 mddev
->pers
->quiesce(mddev
, 0);
1994 mddev
->bitmap_info
.offset
= 0;
1995 if (mddev
->bitmap_info
.file
) {
1996 struct file
*f
= mddev
->bitmap_info
.file
;
1997 mddev
->bitmap_info
.file
= NULL
;
2001 /* No bitmap, OK to set a location */
2003 if (strncmp(buf
, "none", 4) == 0)
2004 /* nothing to be done */;
2005 else if (strncmp(buf
, "file:", 5) == 0) {
2006 /* Not supported yet */
2011 rv
= kstrtoll(buf
+1, 10, &offset
);
2013 rv
= kstrtoll(buf
, 10, &offset
);
2018 if (mddev
->bitmap_info
.external
== 0 &&
2019 mddev
->major_version
== 0 &&
2020 offset
!= mddev
->bitmap_info
.default_offset
)
2022 mddev
->bitmap_info
.offset
= offset
;
2024 mddev
->pers
->quiesce(mddev
, 1);
2025 rv
= bitmap_create(mddev
);
2027 rv
= bitmap_load(mddev
);
2029 bitmap_destroy(mddev
);
2030 mddev
->bitmap_info
.offset
= 0;
2032 mddev
->pers
->quiesce(mddev
, 0);
2038 if (!mddev
->external
) {
2039 /* Ensure new bitmap info is stored in
2040 * metadata promptly.
2042 set_bit(MD_CHANGE_DEVS
, &mddev
->flags
);
2043 md_wakeup_thread(mddev
->thread
);
2048 static struct md_sysfs_entry bitmap_location
=
2049 __ATTR(location
, S_IRUGO
|S_IWUSR
, location_show
, location_store
);
2051 /* 'bitmap/space' is the space available at 'location' for the
2052 * bitmap. This allows the kernel to know when it is safe to
2053 * resize the bitmap to match a resized array.
2056 space_show(struct mddev
*mddev
, char *page
)
2058 return sprintf(page
, "%lu\n", mddev
->bitmap_info
.space
);
2062 space_store(struct mddev
*mddev
, const char *buf
, size_t len
)
2064 unsigned long sectors
;
2067 rv
= kstrtoul(buf
, 10, §ors
);
2074 if (mddev
->bitmap
&&
2075 sectors
< (mddev
->bitmap
->storage
.bytes
+ 511) >> 9)
2076 return -EFBIG
; /* Bitmap is too big for this small space */
2078 /* could make sure it isn't too big, but that isn't really
2079 * needed - user-space should be careful.
2081 mddev
->bitmap_info
.space
= sectors
;
2085 static struct md_sysfs_entry bitmap_space
=
2086 __ATTR(space
, S_IRUGO
|S_IWUSR
, space_show
, space_store
);
2089 timeout_show(struct mddev
*mddev
, char *page
)
2092 unsigned long secs
= mddev
->bitmap_info
.daemon_sleep
/ HZ
;
2093 unsigned long jifs
= mddev
->bitmap_info
.daemon_sleep
% HZ
;
2095 len
= sprintf(page
, "%lu", secs
);
2097 len
+= sprintf(page
+len
, ".%03u", jiffies_to_msecs(jifs
));
2098 len
+= sprintf(page
+len
, "\n");
2103 timeout_store(struct mddev
*mddev
, const char *buf
, size_t len
)
2105 /* timeout can be set at any time */
2106 unsigned long timeout
;
2107 int rv
= strict_strtoul_scaled(buf
, &timeout
, 4);
2111 /* just to make sure we don't overflow... */
2112 if (timeout
>= LONG_MAX
/ HZ
)
2115 timeout
= timeout
* HZ
/ 10000;
2117 if (timeout
>= MAX_SCHEDULE_TIMEOUT
)
2118 timeout
= MAX_SCHEDULE_TIMEOUT
-1;
2121 mddev
->bitmap_info
.daemon_sleep
= timeout
;
2122 if (mddev
->thread
) {
2123 /* if thread->timeout is MAX_SCHEDULE_TIMEOUT, then
2124 * the bitmap is all clean and we don't need to
2125 * adjust the timeout right now
2127 if (mddev
->thread
->timeout
< MAX_SCHEDULE_TIMEOUT
) {
2128 mddev
->thread
->timeout
= timeout
;
2129 md_wakeup_thread(mddev
->thread
);
2135 static struct md_sysfs_entry bitmap_timeout
=
2136 __ATTR(time_base
, S_IRUGO
|S_IWUSR
, timeout_show
, timeout_store
);
2139 backlog_show(struct mddev
*mddev
, char *page
)
2141 return sprintf(page
, "%lu\n", mddev
->bitmap_info
.max_write_behind
);
2145 backlog_store(struct mddev
*mddev
, const char *buf
, size_t len
)
2147 unsigned long backlog
;
2148 int rv
= kstrtoul(buf
, 10, &backlog
);
2151 if (backlog
> COUNTER_MAX
)
2153 mddev
->bitmap_info
.max_write_behind
= backlog
;
2157 static struct md_sysfs_entry bitmap_backlog
=
2158 __ATTR(backlog
, S_IRUGO
|S_IWUSR
, backlog_show
, backlog_store
);
2161 chunksize_show(struct mddev
*mddev
, char *page
)
2163 return sprintf(page
, "%lu\n", mddev
->bitmap_info
.chunksize
);
2167 chunksize_store(struct mddev
*mddev
, const char *buf
, size_t len
)
2169 /* Can only be changed when no bitmap is active */
2171 unsigned long csize
;
2174 rv
= kstrtoul(buf
, 10, &csize
);
2178 !is_power_of_2(csize
))
2180 mddev
->bitmap_info
.chunksize
= csize
;
2184 static struct md_sysfs_entry bitmap_chunksize
=
2185 __ATTR(chunksize
, S_IRUGO
|S_IWUSR
, chunksize_show
, chunksize_store
);
2187 static ssize_t
metadata_show(struct mddev
*mddev
, char *page
)
2189 return sprintf(page
, "%s\n", (mddev
->bitmap_info
.external
2190 ? "external" : "internal"));
2193 static ssize_t
metadata_store(struct mddev
*mddev
, const char *buf
, size_t len
)
2195 if (mddev
->bitmap
||
2196 mddev
->bitmap_info
.file
||
2197 mddev
->bitmap_info
.offset
)
2199 if (strncmp(buf
, "external", 8) == 0)
2200 mddev
->bitmap_info
.external
= 1;
2201 else if (strncmp(buf
, "internal", 8) == 0)
2202 mddev
->bitmap_info
.external
= 0;
2208 static struct md_sysfs_entry bitmap_metadata
=
2209 __ATTR(metadata
, S_IRUGO
|S_IWUSR
, metadata_show
, metadata_store
);
2211 static ssize_t
can_clear_show(struct mddev
*mddev
, char *page
)
2214 spin_lock(&mddev
->lock
);
2216 len
= sprintf(page
, "%s\n", (mddev
->bitmap
->need_sync
?
2219 len
= sprintf(page
, "\n");
2220 spin_unlock(&mddev
->lock
);
2224 static ssize_t
can_clear_store(struct mddev
*mddev
, const char *buf
, size_t len
)
2226 if (mddev
->bitmap
== NULL
)
2228 if (strncmp(buf
, "false", 5) == 0)
2229 mddev
->bitmap
->need_sync
= 1;
2230 else if (strncmp(buf
, "true", 4) == 0) {
2231 if (mddev
->degraded
)
2233 mddev
->bitmap
->need_sync
= 0;
2239 static struct md_sysfs_entry bitmap_can_clear
=
2240 __ATTR(can_clear
, S_IRUGO
|S_IWUSR
, can_clear_show
, can_clear_store
);
2243 behind_writes_used_show(struct mddev
*mddev
, char *page
)
2246 spin_lock(&mddev
->lock
);
2247 if (mddev
->bitmap
== NULL
)
2248 ret
= sprintf(page
, "0\n");
2250 ret
= sprintf(page
, "%lu\n",
2251 mddev
->bitmap
->behind_writes_used
);
2252 spin_unlock(&mddev
->lock
);
2257 behind_writes_used_reset(struct mddev
*mddev
, const char *buf
, size_t len
)
2260 mddev
->bitmap
->behind_writes_used
= 0;
2264 static struct md_sysfs_entry max_backlog_used
=
2265 __ATTR(max_backlog_used
, S_IRUGO
| S_IWUSR
,
2266 behind_writes_used_show
, behind_writes_used_reset
);
2268 static struct attribute
*md_bitmap_attrs
[] = {
2269 &bitmap_location
.attr
,
2271 &bitmap_timeout
.attr
,
2272 &bitmap_backlog
.attr
,
2273 &bitmap_chunksize
.attr
,
2274 &bitmap_metadata
.attr
,
2275 &bitmap_can_clear
.attr
,
2276 &max_backlog_used
.attr
,
2279 struct attribute_group md_bitmap_group
= {
2281 .attrs
= md_bitmap_attrs
,