#include <linux/blkdev.h>
#include <linux/module.h>
#include <linux/errno.h>
#include <linux/slab.h>
#include <linux/init.h>
#include <linux/timer.h>
#include <linux/sched.h>
#include <linux/list.h>
#include <linux/file.h>
#include <linux/mount.h>
#include <linux/buffer_head.h>
#include <linux/seq_file.h>
#include "md.h"
#include "bitmap.h"
Go to the source code of this file.
|
void | bitmap_update_sb (struct bitmap *bitmap) |
|
void | bitmap_print_sb (struct bitmap *bitmap) |
|
void | bitmap_unplug (struct bitmap *bitmap) |
|
| EXPORT_SYMBOL (bitmap_unplug) |
|
void | bitmap_write_all (struct bitmap *bitmap) |
|
void | bitmap_daemon_work (struct mddev *mddev) |
|
int | bitmap_startwrite (struct bitmap *bitmap, sector_t offset, unsigned long sectors, int behind) |
|
| EXPORT_SYMBOL (bitmap_startwrite) |
|
void | bitmap_endwrite (struct bitmap *bitmap, sector_t offset, unsigned long sectors, int success, int behind) |
|
| EXPORT_SYMBOL (bitmap_endwrite) |
|
int | bitmap_start_sync (struct bitmap *bitmap, sector_t offset, sector_t *blocks, int degraded) |
|
| EXPORT_SYMBOL (bitmap_start_sync) |
|
void | bitmap_end_sync (struct bitmap *bitmap, sector_t offset, sector_t *blocks, int aborted) |
|
| EXPORT_SYMBOL (bitmap_end_sync) |
|
void | bitmap_close_sync (struct bitmap *bitmap) |
|
| EXPORT_SYMBOL (bitmap_close_sync) |
|
void | bitmap_cond_end_sync (struct bitmap *bitmap, sector_t sector) |
|
| EXPORT_SYMBOL (bitmap_cond_end_sync) |
|
void | bitmap_dirty_bits (struct bitmap *bitmap, unsigned long s, unsigned long e) |
|
void | bitmap_flush (struct mddev *mddev) |
|
void | bitmap_destroy (struct mddev *mddev) |
|
int | bitmap_create (struct mddev *mddev) |
|
int | bitmap_load (struct mddev *mddev) |
|
| EXPORT_SYMBOL_GPL (bitmap_load) |
|
void | bitmap_status (struct seq_file *seq, struct bitmap *bitmap) |
|
int | bitmap_resize (struct bitmap *bitmap, sector_t blocks, int chunksize, int init) |
|
| EXPORT_SYMBOL_GPL (bitmap_resize) |
|
- Enumerator:
BITMAP_PAGE_DIRTY |
|
BITMAP_PAGE_PENDING |
|
BITMAP_PAGE_NEEDWRITE |
|
Definition at line 794 of file bitmap.c.
Initial value:= {
.name = "bitmap",
.attrs = md_bitmap_attrs,
}
Definition at line 2266 of file bitmap.c.