diff options
author | Mikulas Patocka <mpatocka@redhat.com> | 2009-12-10 18:51:57 -0500 |
---|---|---|
committer | Alasdair G Kergon <agk@redhat.com> | 2009-12-10 18:51:57 -0500 |
commit | 952b355760c196ec014dd0b6878f85a11496e3da (patch) | |
tree | 0a6907fa6dce2bac8afdc2efea774f19bdbb9a17 /drivers/md/dm.c | |
parent | 542da317668c35036e8471822a564b609d05af66 (diff) |
dm io: use slab for struct io
Allocate "struct io" from a slab.
This patch changes dm-io, so that "struct io" is allocated from a slab cache.
It used to be allocated with kmalloc. Allocating from a slab will be needed
for the next patch, because it requires a special alignment of "struct io"
and kmalloc cannot meet this alignment.
Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Signed-off-by: Alasdair G Kergon <agk@redhat.com>
Diffstat (limited to 'drivers/md/dm.c')
-rw-r--r-- | drivers/md/dm.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/md/dm.c b/drivers/md/dm.c index 724efc63904d..473f0c3c0192 100644 --- a/drivers/md/dm.c +++ b/drivers/md/dm.c | |||
@@ -275,6 +275,7 @@ static int (*_inits[])(void) __initdata = { | |||
275 | dm_target_init, | 275 | dm_target_init, |
276 | dm_linear_init, | 276 | dm_linear_init, |
277 | dm_stripe_init, | 277 | dm_stripe_init, |
278 | dm_io_init, | ||
278 | dm_kcopyd_init, | 279 | dm_kcopyd_init, |
279 | dm_interface_init, | 280 | dm_interface_init, |
280 | }; | 281 | }; |
@@ -284,6 +285,7 @@ static void (*_exits[])(void) = { | |||
284 | dm_target_exit, | 285 | dm_target_exit, |
285 | dm_linear_exit, | 286 | dm_linear_exit, |
286 | dm_stripe_exit, | 287 | dm_stripe_exit, |
288 | dm_io_exit, | ||
287 | dm_kcopyd_exit, | 289 | dm_kcopyd_exit, |
288 | dm_interface_exit, | 290 | dm_interface_exit, |
289 | }; | 291 | }; |