diff options
author | NeilBrown <neilb@suse.de> | 2009-12-13 20:49:54 -0500 |
---|---|---|
committer | NeilBrown <neilb@suse.de> | 2009-12-13 20:51:41 -0500 |
commit | f6af949c5672115313cc3c976d85b0533f607d7e (patch) | |
tree | 6d00471bd4ee7c3aee67f9ad4c0a3023109b88e0 /drivers/md/md.h | |
parent | 9cd30fdc33cde9ae4ac55a1ccbbb89f3f7b9b2f2 (diff) |
md: support bitmap offset appropriate for external-metadata arrays.
For md arrays were metadata is managed externally, the kernel does not
know about a superblock so the superblock offset is 0.
If we want to have a write-intent-bitmap near the end of the
devices of such an array, we should support sector_t sized offset.
We need offset be possibly negative for when the bitmap is before
the metadata, so use loff_t instead.
Also add sanity check that bitmap does not overlap with data.
Signed-off-by: NeilBrown <neilb@suse.de>
Diffstat (limited to 'drivers/md/md.h')
-rw-r--r-- | drivers/md/md.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/md/md.h b/drivers/md/md.h index 4b07e0ab3841..df692953a12f 100644 --- a/drivers/md/md.h +++ b/drivers/md/md.h | |||
@@ -282,11 +282,13 @@ struct mddev_s | |||
282 | struct bitmap *bitmap; /* the bitmap for the device */ | 282 | struct bitmap *bitmap; /* the bitmap for the device */ |
283 | struct { | 283 | struct { |
284 | struct file *file; /* the bitmap file */ | 284 | struct file *file; /* the bitmap file */ |
285 | long offset; /* offset from superblock of | 285 | loff_t offset; /* offset from superblock of |
286 | * start of bitmap. May be | 286 | * start of bitmap. May be |
287 | * negative, but not '0' | 287 | * negative, but not '0' |
288 | * For external metadata, offset | ||
289 | * from start of device. | ||
288 | */ | 290 | */ |
289 | long default_offset; /* this is the offset to use when | 291 | loff_t default_offset; /* this is the offset to use when |
290 | * hot-adding a bitmap. It should | 292 | * hot-adding a bitmap. It should |
291 | * eventually be settable by sysfs. | 293 | * eventually be settable by sysfs. |
292 | */ | 294 | */ |