diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-10 14:11:47 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-10 14:11:47 -0400 |
| commit | b0af205afb111e17ac8db64c3b9c4f2c332de92a (patch) | |
| tree | 3999a2ffbd36e9d1cc6ca30e6b9d6280f4e50116 /include/linux | |
| parent | 73f6aa4d44ab6157badc456ddfa05b31e58de5f0 (diff) | |
| parent | 0c2322e4ce144e130c03d813fe92de3798662c5e (diff) | |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/agk/linux-2.6-dm
* git://git.kernel.org/pub/scm/linux/kernel/git/agk/linux-2.6-dm:
dm: detect lost queue
dm: publish dm_vcalloc
dm: publish dm_table_unplug_all
dm: publish dm_get_mapinfo
dm: export struct dm_dev
dm crypt: avoid unnecessary wait when splitting bio
dm crypt: tidy ctx pending
dm crypt: fix async inc_pending
dm crypt: move dec_pending on error into write_io_submit
dm crypt: remove inc_pending from write_io_submit
dm crypt: tidy write loop pending
dm crypt: tidy crypt alloc
dm crypt: tidy inc pending
dm exception store: use chunk_t for_areas
dm exception store: introduce area_location function
dm raid1: kcopyd should stop on error if errors handled
dm mpath: remove is_active from struct dm_path
dm mpath: use more error codes
Fixed up trivial conflict in drivers/md/dm-mpath.c manually.
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/device-mapper.h | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/include/linux/device-mapper.h b/include/linux/device-mapper.h index a90222e3297d..08d783592b73 100644 --- a/include/linux/device-mapper.h +++ b/include/linux/device-mapper.h | |||
| @@ -13,7 +13,6 @@ | |||
| 13 | 13 | ||
| 14 | struct dm_target; | 14 | struct dm_target; |
| 15 | struct dm_table; | 15 | struct dm_table; |
| 16 | struct dm_dev; | ||
| 17 | struct mapped_device; | 16 | struct mapped_device; |
| 18 | struct bio_vec; | 17 | struct bio_vec; |
| 19 | 18 | ||
| @@ -84,6 +83,12 @@ void dm_error(const char *message); | |||
| 84 | */ | 83 | */ |
| 85 | void dm_set_device_limits(struct dm_target *ti, struct block_device *bdev); | 84 | void dm_set_device_limits(struct dm_target *ti, struct block_device *bdev); |
| 86 | 85 | ||
| 86 | struct dm_dev { | ||
| 87 | struct block_device *bdev; | ||
| 88 | int mode; | ||
| 89 | char name[16]; | ||
| 90 | }; | ||
| 91 | |||
| 87 | /* | 92 | /* |
| 88 | * Constructors should call these functions to ensure destination devices | 93 | * Constructors should call these functions to ensure destination devices |
| 89 | * are opened/closed correctly. | 94 | * are opened/closed correctly. |
| @@ -202,6 +207,7 @@ int dm_copy_name_and_uuid(struct mapped_device *md, char *name, char *uuid); | |||
| 202 | struct gendisk *dm_disk(struct mapped_device *md); | 207 | struct gendisk *dm_disk(struct mapped_device *md); |
| 203 | int dm_suspended(struct mapped_device *md); | 208 | int dm_suspended(struct mapped_device *md); |
| 204 | int dm_noflush_suspending(struct dm_target *ti); | 209 | int dm_noflush_suspending(struct dm_target *ti); |
| 210 | union map_info *dm_get_mapinfo(struct bio *bio); | ||
| 205 | 211 | ||
| 206 | /* | 212 | /* |
| 207 | * Geometry functions. | 213 | * Geometry functions. |
| @@ -232,6 +238,11 @@ int dm_table_add_target(struct dm_table *t, const char *type, | |||
| 232 | int dm_table_complete(struct dm_table *t); | 238 | int dm_table_complete(struct dm_table *t); |
| 233 | 239 | ||
| 234 | /* | 240 | /* |
| 241 | * Unplug all devices in a table. | ||
| 242 | */ | ||
| 243 | void dm_table_unplug_all(struct dm_table *t); | ||
| 244 | |||
| 245 | /* | ||
| 235 | * Table reference counting. | 246 | * Table reference counting. |
| 236 | */ | 247 | */ |
| 237 | struct dm_table *dm_get_table(struct mapped_device *md); | 248 | struct dm_table *dm_get_table(struct mapped_device *md); |
| @@ -256,6 +267,11 @@ void dm_table_event(struct dm_table *t); | |||
| 256 | */ | 267 | */ |
| 257 | int dm_swap_table(struct mapped_device *md, struct dm_table *t); | 268 | int dm_swap_table(struct mapped_device *md, struct dm_table *t); |
| 258 | 269 | ||
| 270 | /* | ||
| 271 | * A wrapper around vmalloc. | ||
| 272 | */ | ||
| 273 | void *dm_vcalloc(unsigned long nmemb, unsigned long elem_size); | ||
| 274 | |||
| 259 | /*----------------------------------------------------------------- | 275 | /*----------------------------------------------------------------- |
| 260 | * Macros. | 276 | * Macros. |
| 261 | *---------------------------------------------------------------*/ | 277 | *---------------------------------------------------------------*/ |
