lkml.org 
[lkml]   [2008]   [Apr]   [22]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
Subject[RFC][PATCH 5/10] I/O context inheritance
From

The raid1 module makes use of temporary bios to sync physical disks
under the same md device. Make the bios point the iocontext of one of
the kernel threads in the module.

Meanwhile, regular read/write I/O requests will be cloned and may be
handled by one of the kernel threads in the modules. In this case,
the iocontext will be inherited from the source bio.

Signed-off-by: Hirokazu Takahashi <taka@valinux.co.jp>


--- linux-2.6.25.bio0/include/linux/raid/raid1.h 2008-04-22 15:48:32.000000000 +0900
+++ linux-2.6.25/include/linux/raid/raid1.h 2008-04-22 15:52:38.000000000 +0900
@@ -100,6 +100,7 @@ struct r1bio_s {

struct list_head retry_list;
struct bitmap_update *bitmap_update;
+ struct io_context *io_context;
/*
* if the IO is in WRITE direction, then multiple bios are used.
* We choose the number when they are allocated.
--- linux-2.6.25.bio0/drivers/md/raid1.c 2008-04-22 15:48:36.000000000 +0900
+++ linux-2.6.25/drivers/md/raid1.c 2008-04-22 17:18:08.000000000 +0900
@@ -200,6 +200,8 @@ static void put_buf(r1bio_t *r1_bio)
if (bio->bi_end_io)
rdev_dec_pending(conf->mirrors[i].rdev, r1_bio->mddev);
}
+ put_io_context(r1_bio->io_context);
+ r1_bio->io_context = NULL;

mempool_free(r1_bio, conf->r1buf_pool);

@@ -1731,6 +1733,7 @@ static sector_t sync_request(mddev_t *md
r1_bio->sector = sector_nr;
r1_bio->state = 0;
set_bit(R1BIO_IsSync, &r1_bio->state);
+ r1_bio->io_context = ioc_object_link(current->io_context);

for (i=0; i < conf->raid_disks; i++) {
mdk_rdev_t *rdev;
@@ -1747,6 +1750,7 @@ static sector_t sync_request(mddev_t *md
bio->bi_size = 0;
bio->bi_end_io = NULL;
bio->bi_private = NULL;
+ bio->bi_io_context = r1_bio->io_context;

rdev = rcu_dereference(conf->mirrors[i].rdev);
if (rdev == NULL ||
--- linux-2.6.25.bio0/drivers/md/md.c 2008-04-22 15:48:33.000000000 +0900
+++ linux-2.6.25/drivers/md/md.c 2008-04-22 15:52:38.000000000 +0900
@@ -5451,6 +5451,8 @@ void md_do_sync(mddev_t *mddev)
else
desc = "recovery";

+ current->io_context = alloc_io_context(GFP_KERNEL, -1); /*XXX*/
+
/* we overload curr_resync somewhat here.
* 0 == not engaged in resync at all
* 2 == checking that there is no conflict with another sync

\
 
 \ /
  Last update: 2008-04-22 15:57    [W:0.150 / U:0.432 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site