lkml.org 
[lkml]   [2019]   [Apr]   [18]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH v5 18/18] locking/rwsem: Remove redundant computation of writer lock word
    Date
    On 64-bit architectures, each rwsem writer will have its unique lock
    word for acquiring the lock. Right now, the writer code recomputes the
    lock word every time it tries to acquire the lock. This is a waste of
    time. The lock word is now cached and reused when it is needed.

    When CONFIG_RWSEM_OWNER_COUNT isn't defined, the extra constant argument
    to rwsem_try_write_lock() and rwsem_try_write_lock_unqueued() should
    be optimized out by the compiler.

    Signed-off-by: Waiman Long <longman@redhat.com>
    ---
    kernel/locking/rwsem.c | 21 ++++++++++++---------
    1 file changed, 12 insertions(+), 9 deletions(-)

    diff --git a/kernel/locking/rwsem.c b/kernel/locking/rwsem.c
    index 2dc975f7eb8e..19d8fbd50d17 100644
    --- a/kernel/locking/rwsem.c
    +++ b/kernel/locking/rwsem.c
    @@ -578,6 +578,7 @@ static void __rwsem_mark_wake(struct rw_semaphore *sem,
    * bit is set or the lock is acquired with handoff bit cleared.
    */
    static inline bool rwsem_try_write_lock(long count, struct rw_semaphore *sem,
    + const long wlock,
    enum writer_wait_state wstate)
    {
    long new;
    @@ -594,8 +595,7 @@ static inline bool rwsem_try_write_lock(long count, struct rw_semaphore *sem,
    return false;
    new = count | RWSEM_FLAG_HANDOFF;
    } else {
    - new = (count | RWSEM_WRITER_LOCKED) &
    - ~RWSEM_FLAG_HANDOFF;
    + new = (count | wlock) & ~RWSEM_FLAG_HANDOFF;

    if (list_is_singular(&sem->wait_list))
    new &= ~RWSEM_FLAG_WAITERS;
    @@ -641,13 +641,14 @@ static inline bool rwsem_try_read_lock_unqueued(struct rw_semaphore *sem)
    /*
    * Try to acquire write lock before the writer has been put on wait queue.
    */
    -static inline bool rwsem_try_write_lock_unqueued(struct rw_semaphore *sem)
    +static inline bool rwsem_try_write_lock_unqueued(struct rw_semaphore *sem,
    + const long wlock)
    {
    long count = atomic_long_read(&sem->count);

    while (!(count & (RWSEM_LOCK_MASK|RWSEM_FLAG_HANDOFF))) {
    if (atomic_long_try_cmpxchg_acquire(&sem->count, &count,
    - count | RWSEM_WRITER_LOCKED)) {
    + count | wlock)) {
    rwsem_set_owner(sem);
    lockevent_inc(rwsem_opt_wlock);
    return true;
    @@ -813,7 +814,7 @@ static inline u64 rwsem_rspin_threshold(struct rw_semaphore *sem)
    return sched_clock() + delta;
    }

    -static bool rwsem_optimistic_spin(struct rw_semaphore *sem, bool wlock)
    +static bool rwsem_optimistic_spin(struct rw_semaphore *sem, const long wlock)
    {
    bool taken = false;
    int prev_owner_state = OWNER_NULL;
    @@ -841,7 +842,7 @@ static bool rwsem_optimistic_spin(struct rw_semaphore *sem, bool wlock)
    /*
    * Try to acquire the lock
    */
    - taken = wlock ? rwsem_try_write_lock_unqueued(sem)
    + taken = wlock ? rwsem_try_write_lock_unqueued(sem, wlock)
    : rwsem_try_read_lock_unqueued(sem);

    if (taken)
    @@ -957,7 +958,8 @@ static inline bool rwsem_can_spin_on_owner(struct rw_semaphore *sem, bool wr)
    return false;
    }

    -static inline bool rwsem_optimistic_spin(struct rw_semaphore *sem, bool wlock)
    +static inline bool rwsem_optimistic_spin(struct rw_semaphore *sem,
    + const long wlock)
    {
    return false;
    }
    @@ -1122,10 +1124,11 @@ rwsem_down_write_slowpath(struct rw_semaphore *sem, int state)
    struct rwsem_waiter waiter;
    struct rw_semaphore *ret = sem;
    DEFINE_WAKE_Q(wake_q);
    + const long wlock = RWSEM_WRITER_LOCKED;

    /* do optimistic spinning and steal lock if possible */
    if (rwsem_can_spin_on_owner(sem, true) &&
    - rwsem_optimistic_spin(sem, true))
    + rwsem_optimistic_spin(sem, wlock))
    return sem;

    /*
    @@ -1193,7 +1196,7 @@ rwsem_down_write_slowpath(struct rw_semaphore *sem, int state)
    /* wait until we successfully acquire the lock */
    set_current_state(state);
    while (true) {
    - if (rwsem_try_write_lock(count, sem, wstate))
    + if (rwsem_try_write_lock(count, sem, wlock, wstate))
    break;

    raw_spin_unlock_irq(&sem->wait_lock);
    --
    2.18.1
    \
     
     \ /
      Last update: 2019-04-19 01:48    [W:4.130 / U:0.264 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site