lkml.org 
[lkml]   [2005]   [Sep]   [25]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH linux-2.6 01/04] brsem: implement big reader semaphore

Hello, Nick.

Nick Piggin wrote:
> Tejun Heo wrote:
>
>> Other than local_bh_disable/enable(), all brsem read ops do are
>>
>> 1. accessing sem->idx
>> 2. calculate per-cpu rcnt address from sem->idx
>> 3. do one branch on the value of per-cpu rcnt
>> 4. inc/dec per-cpu rcnt
>>
>> So, it does access one more cachline and, yeap, there is one branch
>> for bh enabling and several more inside local_bh_enable. I'll try to
>> get some benchmark numbers for comparison.
>>
>
> Well local_bh_disable touches the preempt count too, although we
> can probably assume that's hot in cache.
>
> You might also find yours has a bigger icache footprint as well.
>
>> I'm thinking about adding down_read(&xxx->s_umount) to write(2) and
>> compare normal rwsem and brsem performance by repeitively writing
>> short data into a file on a UP machine. Do you have better ideas?
>>
>
> To be honest I'd say that you wouldn't be able to measure it if
> you're going through a regular system call path, although such
> a measurement certainly won't hurt.
>
> I don't have a better idea though. I don't think a busy loop
> microbenchmark is going to be very informative either, it might
> actually give a measurable difference but that difference
> probably won't be too representitive of real use :\
>

I did a busy-loop microbenchmark, and I think it's informative enough. :-)

The following command is run on three versions - vanilla version, one
with read_down/up(->s_umount) added to vfs_write(), and one with
brsem_read_down/up(->s_umount) added to vfs_write().

# time -p dd if=/dev/zero of=out bs=32 count=10M

The test is run three times and the results are averaged.

a. vanilla

real 58.63
user 5.61
sys 52.37

b. rwsem

real 59.24
user 6.06
sys 52.29

c. brsem

real 61.74
user 5.78
sys 55.04

I don't think brsem has any chance of being faster than rwsem if it's
slower in this micro benchmark. One weird thing is that the result of
rwsem consistently showed higher user time and lower system time than
vanilla (no synchronization) case, maybe oprofiling will tell something.

Anyways, you were absolutely right. My brsem was a pretty stupid idea
after all. Let's hope at least I learned something from it. :-(

Thanks a lot.

--
tejun
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2005-09-25 12:14    [W:2.716 / U:0.008 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site