This repository was archived by the owner on Jan 13, 2024. It is now read-only.
Commit d037a27
rtmutex: use a trylock for waiter lock in trylock
Mike Galbraith captered the following:
| >hardkernel#11 [ffff88017b243e90] _raw_spin_lock at ffffffff815d2596
| >hardkernel#12 [ffff88017b243e90] rt_mutex_trylock at ffffffff815d15be
| >hardkernel#13 [ffff88017b243eb0] get_next_timer_interrupt at ffffffff81063b42
| >hardkernel#14 [ffff88017b243f00] tick_nohz_stop_sched_tick at ffffffff810bd1fd
| >hardkernel#15 [ffff88017b243f70] tick_nohz_irq_exit at ffffffff810bd7d2
| >hardkernel#16 [ffff88017b243f90] irq_exit at ffffffff8105b02d
| >hardkernel#17 [ffff88017b243fb0] reschedule_interrupt at ffffffff815db3dd
| >--- <IRQ stack> ---
| >hardkernel#18 [ffff88017a2a9bc8] reschedule_interrupt at ffffffff815db3dd
| > [exception RIP: task_blocks_on_rt_mutex+51]
| >hardkernel#19 [ffff88017a2a9ce0] rt_spin_lock_slowlock at ffffffff815d183c
| >hardkernel#20 [ffff88017a2a9da0] lock_timer_base.isra.35 at ffffffff81061cbf
| >hardkernel#21 [ffff88017a2a9dd0] schedule_timeout at ffffffff815cf1ce
| >hardkernel#22 [ffff88017a2a9e50] rcu_gp_kthread at ffffffff810f9bbb
| >hardkernel#23 [ffff88017a2a9ed0] kthread at ffffffff810796d5
| >hardkernel#24 [ffff88017a2a9f50] ret_from_fork at ffffffff815da04c
lock_timer_base() does a try_lock() which deadlocks on the waiter lock
not the lock itself.
This patch takes the waiter_lock with trylock so it should work from interrupt
context as well. If the fastpath doesn't work and the waiter_lock itself is
taken then it seems that the lock itself taken.
This patch also adds a "rt_spin_try_unlock" to keep lockdep happy. If we
managed to take the wait_lock in the first place we should also be able
to take it in the unlock path.
Cc: stable-rt@vger.kernel.org
Reported-by: Mike Galbraith <bitbucket@online.de>
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>1 parent cb40dc0 commit d037a27
3 files changed
Lines changed: 29 additions & 5 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
| 25 | + | |
25 | 26 | | |
26 | 27 | | |
27 | 28 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
801 | 801 | | |
802 | 802 | | |
803 | 803 | | |
804 | | - | |
| 804 | + | |
805 | 805 | | |
806 | | - | |
807 | | - | |
808 | 806 | | |
809 | 807 | | |
810 | 808 | | |
| |||
823 | 821 | | |
824 | 822 | | |
825 | 823 | | |
| 824 | + | |
| 825 | + | |
| 826 | + | |
| 827 | + | |
| 828 | + | |
| 829 | + | |
| 830 | + | |
| 831 | + | |
| 832 | + | |
| 833 | + | |
| 834 | + | |
| 835 | + | |
| 836 | + | |
| 837 | + | |
| 838 | + | |
| 839 | + | |
| 840 | + | |
826 | 841 | | |
827 | 842 | | |
828 | 843 | | |
| |||
853 | 868 | | |
854 | 869 | | |
855 | 870 | | |
| 871 | + | |
| 872 | + | |
| 873 | + | |
| 874 | + | |
| 875 | + | |
| 876 | + | |
| 877 | + | |
856 | 878 | | |
857 | 879 | | |
858 | 880 | | |
| |||
1056 | 1078 | | |
1057 | 1079 | | |
1058 | 1080 | | |
1059 | | - | |
| 1081 | + | |
| 1082 | + | |
1060 | 1083 | | |
1061 | 1084 | | |
1062 | 1085 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1398 | 1398 | | |
1399 | 1399 | | |
1400 | 1400 | | |
1401 | | - | |
| 1401 | + | |
1402 | 1402 | | |
1403 | 1403 | | |
1404 | 1404 | | |
| |||
0 commit comments