blockdev: turn a rw semaphore into a percpu rw semaphore
authorMikulas Patocka <mpatocka@redhat.com>
Wed, 26 Sep 2012 05:46:43 +0000 (07:46 +0200)
committerJens Axboe <axboe@kernel.dk>
Wed, 26 Sep 2012 05:46:43 +0000 (07:46 +0200)
commit62ac665ff9fc07497ca524bd20d6a96893d11071
treedfd697e488fde4b46f1cb2ebfb380bb881115827
parentb87570f5d349661814b262dd5fc40787700f80d6
blockdev: turn a rw semaphore into a percpu rw semaphore

This avoids cache line bouncing when many processes lock the semaphore
for read.

New percpu lock implementation

The lock consists of an array of percpu unsigned integers, a boolean
variable and a mutex.

When we take the lock for read, we enter rcu read section, check for a
"locked" variable. If it is false, we increase a percpu counter on the
current cpu and exit the rcu section. If "locked" is true, we exit the
rcu section, take the mutex and drop it (this waits until a writer
finished) and retry.

Unlocking for read just decreases percpu variable. Note that we can
unlock on a difference cpu than where we locked, in this case the
counter underflows. The sum of all percpu counters represents the number
of processes that hold the lock for read.

When we need to lock for write, we take the mutex, set "locked" variable
to true and synchronize rcu. Since RCU has been synchronized, no
processes can create new read locks. We wait until the sum of percpu
counters is zero - when it is, there are no readers in the critical
section.

Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Documentation/percpu-rw-semaphore.txt [new file with mode: 0644]
fs/block_dev.c
include/linux/fs.h
include/linux/percpu-rwsem.h [new file with mode: 0644]