lkml.org 
[lkml]   [2008]   [Dec]   [11]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH][RFC 13/23]: Export of alloc_io_context() function
Jens Axboe wrote:
> On Wed, Dec 10 2008, Vladislav Bolkhovitin wrote:
>> This patch exports alloc_io_context() function. For performance reasons
>> SCST queues commands using a pool of IO threads. It is considerably
>> better for performance (>30% increase on sequential reads) if threads in
>> a pool have the same IO context. Since SCST can be built as a module,
>> it needs alloc_io_context() function exported.
>>
>> Signed-off-by: Vladislav Bolkhovitin <vst@vlnb.net>
>> ---
>> block/blk-ioc.c | 1 +
>> 1 file changed, 1 insertion(+)
>>
>> diff -upkr linux-2.6.27.2/block/blk-ioc.c linux-2.6.27.2/block/blk-ioc.c
>> --- linux-2.6.27.2/block/blk-ioc.c 2008-10-10 02:13:53.000000000 +0400
>> +++ linux-2.6.27.2/block/blk-ioc.c 2008-11-25 21:27:01.000000000 +0300
>> @@ -105,6 +105,7 @@ struct io_context *alloc_io_context(gfp_
>>
>> return ret;
>> }
>> +EXPORT_SYMBOL(alloc_io_context);
>
> Why is this needed, can't you just use CLONE_IO?

There are two reasons for that:

1. kthread interface doesn't support passing CLONE_IO flag.

2. Each (virtual) device has own pool of threads, which serves it.
Threads in each such pools should have a common IO context, but
different pools should have different IO contexts. So, it would be
necessary to implement two levels start of IO threads in each pool. At
first, one thread would be started. Then it would call get_io_context()
to gain io_context. Then it would create the remaining threads with
CLONE_IO flag. Definitely, it's a lot more complicated than a simple
call of alloc_io_context() and assignment of the returned context to
each just created thread in a loop before they were ran.

Thanks,
Vlad



\
 
 \ /
  Last update: 2008-12-11 19:21    [W:0.142 / U:1.540 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site