locking/rwsem: Disable preemption in all down_read*() and up_read() code paths
[ Upstream commit3f5245538a
] Commit:91d2a812df
("locking/rwsem: Make handoff writer optimistically spin on owner") ... assumes that when the owner field is changed to NULL, the lock will become free soon. But commit:48dfb5d256
("locking/rwsem: Disable preemption while trying for rwsem lock") ... disabled preemption when acquiring rwsem for write. However, preemption has not yet been disabled when acquiring a read lock on a rwsem. So a reader can add a RWSEM_READER_BIAS to count without setting owner to signal a reader, got preempted out by a RT task which then spins in the writer slowpath as owner remains NULL leading to live lock. One easy way to fix this problem is to disable preemption at all the down_read*() and up_read() code paths as implemented in this patch. Fixes:91d2a812df
("locking/rwsem: Make handoff writer optimistically spin on owner") Reported-by: Mukesh Ojha <quic_mojha@quicinc.com> Suggested-by: Peter Zijlstra <peterz@infradead.org> Signed-off-by: Waiman Long <longman@redhat.com> Signed-off-by: Ingo Molnar <mingo@kernel.org> Link: https://lore.kernel.org/r/20230126003628.365092-3-longman@redhat.com Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
Родитель
ab4d47a343
Коммит
3f5ec3c335
|
@ -1045,7 +1045,7 @@ queue:
|
|||
/* Ordered by sem->wait_lock against rwsem_mark_wake(). */
|
||||
break;
|
||||
}
|
||||
schedule();
|
||||
schedule_preempt_disabled();
|
||||
lockevent_inc(rwsem_sleep_reader);
|
||||
}
|
||||
|
||||
|
@ -1224,14 +1224,20 @@ static struct rw_semaphore *rwsem_downgrade_wake(struct rw_semaphore *sem)
|
|||
*/
|
||||
static inline int __down_read_common(struct rw_semaphore *sem, int state)
|
||||
{
|
||||
int ret = 0;
|
||||
long count;
|
||||
|
||||
preempt_disable();
|
||||
if (!rwsem_read_trylock(sem, &count)) {
|
||||
if (IS_ERR(rwsem_down_read_slowpath(sem, count, state)))
|
||||
return -EINTR;
|
||||
if (IS_ERR(rwsem_down_read_slowpath(sem, count, state))) {
|
||||
ret = -EINTR;
|
||||
goto out;
|
||||
}
|
||||
DEBUG_RWSEMS_WARN_ON(!is_rwsem_reader_owned(sem), sem);
|
||||
}
|
||||
return 0;
|
||||
out:
|
||||
preempt_enable();
|
||||
return ret;
|
||||
}
|
||||
|
||||
static inline void __down_read(struct rw_semaphore *sem)
|
||||
|
@ -1251,19 +1257,23 @@ static inline int __down_read_killable(struct rw_semaphore *sem)
|
|||
|
||||
static inline int __down_read_trylock(struct rw_semaphore *sem)
|
||||
{
|
||||
int ret = 0;
|
||||
long tmp;
|
||||
|
||||
DEBUG_RWSEMS_WARN_ON(sem->magic != sem, sem);
|
||||
|
||||
preempt_disable();
|
||||
tmp = atomic_long_read(&sem->count);
|
||||
while (!(tmp & RWSEM_READ_FAILED_MASK)) {
|
||||
if (atomic_long_try_cmpxchg_acquire(&sem->count, &tmp,
|
||||
tmp + RWSEM_READER_BIAS)) {
|
||||
rwsem_set_reader_owned(sem);
|
||||
return 1;
|
||||
ret = 1;
|
||||
break;
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
preempt_enable();
|
||||
return ret;
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -1305,6 +1315,7 @@ static inline void __up_read(struct rw_semaphore *sem)
|
|||
DEBUG_RWSEMS_WARN_ON(sem->magic != sem, sem);
|
||||
DEBUG_RWSEMS_WARN_ON(!is_rwsem_reader_owned(sem), sem);
|
||||
|
||||
preempt_disable();
|
||||
rwsem_clear_reader_owned(sem);
|
||||
tmp = atomic_long_add_return_release(-RWSEM_READER_BIAS, &sem->count);
|
||||
DEBUG_RWSEMS_WARN_ON(tmp < 0, sem);
|
||||
|
@ -1313,6 +1324,7 @@ static inline void __up_read(struct rw_semaphore *sem)
|
|||
clear_nonspinnable(sem);
|
||||
rwsem_wake(sem);
|
||||
}
|
||||
preempt_enable();
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -1630,6 +1642,12 @@ void down_read_non_owner(struct rw_semaphore *sem)
|
|||
{
|
||||
might_sleep();
|
||||
__down_read(sem);
|
||||
/*
|
||||
* The owner value for a reader-owned lock is mostly for debugging
|
||||
* purpose only and is not critical to the correct functioning of
|
||||
* rwsem. So it is perfectly fine to set it in a preempt-enabled
|
||||
* context here.
|
||||
*/
|
||||
__rwsem_set_reader_owned(sem, NULL);
|
||||
}
|
||||
EXPORT_SYMBOL(down_read_non_owner);
|
||||
|
|
Загрузка…
Ссылка в новой задаче