1
2
3
4
5
6
7
8
9
10
11
12
13
14#include <linux/spinlock.h>
15#include <linux/export.h>
16#include <linux/sched/signal.h>
17#include <linux/sched/rt.h>
18#include <linux/sched/deadline.h>
19#include <linux/sched/wake_q.h>
20#include <linux/sched/debug.h>
21#include <linux/timer.h>
22
23#include "rtmutex_common.h"
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52static void
53rt_mutex_set_owner(struct rt_mutex *lock, struct task_struct *owner)
54{
55 unsigned long val = (unsigned long)owner;
56
57 if (rt_mutex_has_waiters(lock))
58 val |= RT_MUTEX_HAS_WAITERS;
59
60 lock->owner = (struct task_struct *)val;
61}
62
63static inline void clear_rt_mutex_waiters(struct rt_mutex *lock)
64{
65 lock->owner = (struct task_struct *)
66 ((unsigned long)lock->owner & ~RT_MUTEX_HAS_WAITERS);
67}
68
69static void fixup_rt_mutex_waiters(struct rt_mutex *lock)
70{
71 unsigned long owner, *p = (unsigned long *) &lock->owner;
72
73 if (rt_mutex_has_waiters(lock))
74 return;
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134 owner = READ_ONCE(*p);
135 if (owner & RT_MUTEX_HAS_WAITERS)
136 WRITE_ONCE(*p, owner & ~RT_MUTEX_HAS_WAITERS);
137}
138
139
140
141
142
143#ifndef CONFIG_DEBUG_RT_MUTEXES
144# define rt_mutex_cmpxchg_relaxed(l,c,n) (cmpxchg_relaxed(&l->owner, c, n) == c)
145# define rt_mutex_cmpxchg_acquire(l,c,n) (cmpxchg_acquire(&l->owner, c, n) == c)
146# define rt_mutex_cmpxchg_release(l,c,n) (cmpxchg_release(&l->owner, c, n) == c)
147
148
149
150
151
152
153static inline void mark_rt_mutex_waiters(struct rt_mutex *lock)
154{
155 unsigned long owner, *p = (unsigned long *) &lock->owner;
156
157 do {
158 owner = *p;
159 } while (cmpxchg_relaxed(p, owner,
160 owner | RT_MUTEX_HAS_WAITERS) != owner);
161}
162
163
164
165
166
167
168
169static inline bool unlock_rt_mutex_safe(struct rt_mutex *lock,
170 unsigned long flags)
171 __releases(lock->wait_lock)
172{
173 struct task_struct *owner = rt_mutex_owner(lock);
174
175 clear_rt_mutex_waiters(lock);
176 raw_spin_unlock_irqrestore(&lock->wait_lock, flags);
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201 return rt_mutex_cmpxchg_release(lock, owner, NULL);
202}
203
204#else
205# define rt_mutex_cmpxchg_relaxed(l,c,n) (0)
206# define rt_mutex_cmpxchg_acquire(l,c,n) (0)
207# define rt_mutex_cmpxchg_release(l,c,n) (0)
208
209static inline void mark_rt_mutex_waiters(struct rt_mutex *lock)
210{
211 lock->owner = (struct task_struct *)
212 ((unsigned long)lock->owner | RT_MUTEX_HAS_WAITERS);
213}
214
215
216
217
218static inline bool unlock_rt_mutex_safe(struct rt_mutex *lock,
219 unsigned long flags)
220 __releases(lock->wait_lock)
221{
222 lock->owner = NULL;
223 raw_spin_unlock_irqrestore(&lock->wait_lock, flags);
224 return true;
225}
226#endif
227
228
229
230
231#define task_to_waiter(p) \
232 &(struct rt_mutex_waiter){ .prio = (p)->prio, .deadline = (p)->dl.deadline }
233
234static inline int
235rt_mutex_waiter_less(struct rt_mutex_waiter *left,
236 struct rt_mutex_waiter *right)
237{
238 if (left->prio < right->prio)
239 return 1;
240
241
242
243
244
245
246
247 if (dl_prio(left->prio))
248 return dl_time_before(left->deadline, right->deadline);
249
250 return 0;
251}
252
253static inline int
254rt_mutex_waiter_equal(struct rt_mutex_waiter *left,
255 struct rt_mutex_waiter *right)
256{
257 if (left->prio != right->prio)
258 return 0;
259
260
261
262
263
264
265
266 if (dl_prio(left->prio))
267 return left->deadline == right->deadline;
268
269 return 1;
270}
271
272static void
273rt_mutex_enqueue(struct rt_mutex *lock, struct rt_mutex_waiter *waiter)
274{
275 struct rb_node **link = &lock->waiters.rb_root.rb_node;
276 struct rb_node *parent = NULL;
277 struct rt_mutex_waiter *entry;
278 bool leftmost = true;
279
280 while (*link) {
281 parent = *link;
282 entry = rb_entry(parent, struct rt_mutex_waiter, tree_entry);
283 if (rt_mutex_waiter_less(waiter, entry)) {
284 link = &parent->rb_left;
285 } else {
286 link = &parent->rb_right;
287 leftmost = false;
288 }
289 }
290
291 rb_link_node(&waiter->tree_entry, parent, link);
292 rb_insert_color_cached(&waiter->tree_entry, &lock->waiters, leftmost);
293}
294
295static void
296rt_mutex_dequeue(struct rt_mutex *lock, struct rt_mutex_waiter *waiter)
297{
298 if (RB_EMPTY_NODE(&waiter->tree_entry))
299 return;
300
301 rb_erase_cached(&waiter->tree_entry, &lock->waiters);
302 RB_CLEAR_NODE(&waiter->tree_entry);
303}
304
305static void
306rt_mutex_enqueue_pi(struct task_struct *task, struct rt_mutex_waiter *waiter)
307{
308 struct rb_node **link = &task->pi_waiters.rb_root.rb_node;
309 struct rb_node *parent = NULL;
310 struct rt_mutex_waiter *entry;
311 bool leftmost = true;
312
313 while (*link) {
314 parent = *link;
315 entry = rb_entry(parent, struct rt_mutex_waiter, pi_tree_entry);
316 if (rt_mutex_waiter_less(waiter, entry)) {
317 link = &parent->rb_left;
318 } else {
319 link = &parent->rb_right;
320 leftmost = false;
321 }
322 }
323
324 rb_link_node(&waiter->pi_tree_entry, parent, link);
325 rb_insert_color_cached(&waiter->pi_tree_entry, &task->pi_waiters, leftmost);
326}
327
328static void
329rt_mutex_dequeue_pi(struct task_struct *task, struct rt_mutex_waiter *waiter)
330{
331 if (RB_EMPTY_NODE(&waiter->pi_tree_entry))
332 return;
333
334 rb_erase_cached(&waiter->pi_tree_entry, &task->pi_waiters);
335 RB_CLEAR_NODE(&waiter->pi_tree_entry);
336}
337
338static void rt_mutex_adjust_prio(struct task_struct *p)
339{
340 struct task_struct *pi_task = NULL;
341
342 lockdep_assert_held(&p->pi_lock);
343
344 if (task_has_pi_waiters(p))
345 pi_task = task_top_pi_waiter(p)->task;
346
347 rt_mutex_setprio(p, pi_task);
348}
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363static bool rt_mutex_cond_detect_deadlock(struct rt_mutex_waiter *waiter,
364 enum rtmutex_chainwalk chwalk)
365{
366
367
368
369
370
371
372
373 return debug_rt_mutex_detect_deadlock(waiter, chwalk);
374}
375
376
377
378
379int max_lock_depth = 1024;
380
381static inline struct rt_mutex *task_blocked_on_lock(struct task_struct *p)
382{
383 return p->pi_blocked_on ? p->pi_blocked_on->lock : NULL;
384}
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449static int rt_mutex_adjust_prio_chain(struct task_struct *task,
450 enum rtmutex_chainwalk chwalk,
451 struct rt_mutex *orig_lock,
452 struct rt_mutex *next_lock,
453 struct rt_mutex_waiter *orig_waiter,
454 struct task_struct *top_task)
455{
456 struct rt_mutex_waiter *waiter, *top_waiter = orig_waiter;
457 struct rt_mutex_waiter *prerequeue_top_waiter;
458 int ret = 0, depth = 0;
459 struct rt_mutex *lock;
460 bool detect_deadlock;
461 bool requeue = true;
462
463 detect_deadlock = rt_mutex_cond_detect_deadlock(orig_waiter, chwalk);
464
465
466
467
468
469
470
471 again:
472
473
474
475 if (++depth > max_lock_depth) {
476 static int prev_max;
477
478
479
480
481
482 if (prev_max != max_lock_depth) {
483 prev_max = max_lock_depth;
484 printk(KERN_WARNING "Maximum lock depth %d reached "
485 "task: %s (%d)\n", max_lock_depth,
486 top_task->comm, task_pid_nr(top_task));
487 }
488 put_task_struct(task);
489
490 return -EDEADLK;
491 }
492
493
494
495
496
497
498
499 retry:
500
501
502
503 raw_spin_lock_irq(&task->pi_lock);
504
505
506
507
508 waiter = task->pi_blocked_on;
509
510
511
512
513
514
515
516
517
518
519 if (!waiter)
520 goto out_unlock_pi;
521
522
523
524
525
526 if (orig_waiter && !rt_mutex_owner(orig_lock))
527 goto out_unlock_pi;
528
529
530
531
532
533
534
535
536
537
538 if (next_lock != waiter->lock)
539 goto out_unlock_pi;
540
541
542
543
544
545
546 if (top_waiter) {
547 if (!task_has_pi_waiters(task))
548 goto out_unlock_pi;
549
550
551
552
553
554
555 if (top_waiter != task_top_pi_waiter(task)) {
556 if (!detect_deadlock)
557 goto out_unlock_pi;
558 else
559 requeue = false;
560 }
561 }
562
563
564
565
566
567
568
569
570 if (rt_mutex_waiter_equal(waiter, task_to_waiter(task))) {
571 if (!detect_deadlock)
572 goto out_unlock_pi;
573 else
574 requeue = false;
575 }
576
577
578
579
580 lock = waiter->lock;
581
582
583
584
585
586 if (!raw_spin_trylock(&lock->wait_lock)) {
587 raw_spin_unlock_irq(&task->pi_lock);
588 cpu_relax();
589 goto retry;
590 }
591
592
593
594
595
596
597
598
599
600
601 if (lock == orig_lock || rt_mutex_owner(lock) == top_task) {
602 debug_rt_mutex_deadlock(chwalk, orig_waiter, lock);
603 raw_spin_unlock(&lock->wait_lock);
604 ret = -EDEADLK;
605 goto out_unlock_pi;
606 }
607
608
609
610
611
612
613
614 if (!requeue) {
615
616
617
618 raw_spin_unlock(&task->pi_lock);
619 put_task_struct(task);
620
621
622
623
624
625 if (!rt_mutex_owner(lock)) {
626 raw_spin_unlock_irq(&lock->wait_lock);
627 return 0;
628 }
629
630
631 task = get_task_struct(rt_mutex_owner(lock));
632 raw_spin_lock(&task->pi_lock);
633
634
635
636
637
638
639
640 next_lock = task_blocked_on_lock(task);
641
642
643
644 top_waiter = rt_mutex_top_waiter(lock);
645
646
647 raw_spin_unlock(&task->pi_lock);
648 raw_spin_unlock_irq(&lock->wait_lock);
649
650
651 if (!next_lock)
652 goto out_put_task;
653 goto again;
654 }
655
656
657
658
659
660
661 prerequeue_top_waiter = rt_mutex_top_waiter(lock);
662
663
664 rt_mutex_dequeue(lock, waiter);
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682 waiter->prio = task->prio;
683 waiter->deadline = task->dl.deadline;
684
685 rt_mutex_enqueue(lock, waiter);
686
687
688 raw_spin_unlock(&task->pi_lock);
689 put_task_struct(task);
690
691
692
693
694
695
696
697
698 if (!rt_mutex_owner(lock)) {
699
700
701
702
703
704 if (prerequeue_top_waiter != rt_mutex_top_waiter(lock))
705 wake_up_process(rt_mutex_top_waiter(lock)->task);
706 raw_spin_unlock_irq(&lock->wait_lock);
707 return 0;
708 }
709
710
711 task = get_task_struct(rt_mutex_owner(lock));
712 raw_spin_lock(&task->pi_lock);
713
714
715 if (waiter == rt_mutex_top_waiter(lock)) {
716
717
718
719
720
721
722 rt_mutex_dequeue_pi(task, prerequeue_top_waiter);
723 rt_mutex_enqueue_pi(task, waiter);
724 rt_mutex_adjust_prio(task);
725
726 } else if (prerequeue_top_waiter == waiter) {
727
728
729
730
731
732
733
734
735
736
737 rt_mutex_dequeue_pi(task, waiter);
738 waiter = rt_mutex_top_waiter(lock);
739 rt_mutex_enqueue_pi(task, waiter);
740 rt_mutex_adjust_prio(task);
741 } else {
742
743
744
745
746 }
747
748
749
750
751
752
753
754
755
756
757
758 next_lock = task_blocked_on_lock(task);
759
760
761
762
763 top_waiter = rt_mutex_top_waiter(lock);
764
765
766 raw_spin_unlock(&task->pi_lock);
767 raw_spin_unlock_irq(&lock->wait_lock);
768
769
770
771
772
773
774
775
776 if (!next_lock)
777 goto out_put_task;
778
779
780
781
782
783
784 if (!detect_deadlock && waiter != top_waiter)
785 goto out_put_task;
786
787 goto again;
788
789 out_unlock_pi:
790 raw_spin_unlock_irq(&task->pi_lock);
791 out_put_task:
792 put_task_struct(task);
793
794 return ret;
795}
796
797
798
799
800
801
802
803
804
805
806
807static int try_to_take_rt_mutex(struct rt_mutex *lock, struct task_struct *task,
808 struct rt_mutex_waiter *waiter)
809{
810 lockdep_assert_held(&lock->wait_lock);
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829 mark_rt_mutex_waiters(lock);
830
831
832
833
834 if (rt_mutex_owner(lock))
835 return 0;
836
837
838
839
840
841
842 if (waiter) {
843
844
845
846
847 if (waiter != rt_mutex_top_waiter(lock))
848 return 0;
849
850
851
852
853
854 rt_mutex_dequeue(lock, waiter);
855
856 } else {
857
858
859
860
861
862
863
864
865 if (rt_mutex_has_waiters(lock)) {
866
867
868
869
870
871 if (!rt_mutex_waiter_less(task_to_waiter(task),
872 rt_mutex_top_waiter(lock)))
873 return 0;
874
875
876
877
878
879
880 } else {
881
882
883
884
885
886
887 goto takeit;
888 }
889 }
890
891
892
893
894
895
896
897 raw_spin_lock(&task->pi_lock);
898 task->pi_blocked_on = NULL;
899
900
901
902
903
904 if (rt_mutex_has_waiters(lock))
905 rt_mutex_enqueue_pi(task, rt_mutex_top_waiter(lock));
906 raw_spin_unlock(&task->pi_lock);
907
908takeit:
909
910 debug_rt_mutex_lock(lock);
911
912
913
914
915
916 rt_mutex_set_owner(lock, task);
917
918 return 1;
919}
920
921
922
923
924
925
926
927
928static int task_blocks_on_rt_mutex(struct rt_mutex *lock,
929 struct rt_mutex_waiter *waiter,
930 struct task_struct *task,
931 enum rtmutex_chainwalk chwalk)
932{
933 struct task_struct *owner = rt_mutex_owner(lock);
934 struct rt_mutex_waiter *top_waiter = waiter;
935 struct rt_mutex *next_lock;
936 int chain_walk = 0, res;
937
938 lockdep_assert_held(&lock->wait_lock);
939
940
941
942
943
944
945
946
947
948
949 if (owner == task)
950 return -EDEADLK;
951
952 raw_spin_lock(&task->pi_lock);
953 waiter->task = task;
954 waiter->lock = lock;
955 waiter->prio = task->prio;
956 waiter->deadline = task->dl.deadline;
957
958
959 if (rt_mutex_has_waiters(lock))
960 top_waiter = rt_mutex_top_waiter(lock);
961 rt_mutex_enqueue(lock, waiter);
962
963 task->pi_blocked_on = waiter;
964
965 raw_spin_unlock(&task->pi_lock);
966
967 if (!owner)
968 return 0;
969
970 raw_spin_lock(&owner->pi_lock);
971 if (waiter == rt_mutex_top_waiter(lock)) {
972 rt_mutex_dequeue_pi(owner, top_waiter);
973 rt_mutex_enqueue_pi(owner, waiter);
974
975 rt_mutex_adjust_prio(owner);
976 if (owner->pi_blocked_on)
977 chain_walk = 1;
978 } else if (rt_mutex_cond_detect_deadlock(waiter, chwalk)) {
979 chain_walk = 1;
980 }
981
982
983 next_lock = task_blocked_on_lock(owner);
984
985 raw_spin_unlock(&owner->pi_lock);
986
987
988
989
990
991 if (!chain_walk || !next_lock)
992 return 0;
993
994
995
996
997
998
999 get_task_struct(owner);
1000
1001 raw_spin_unlock_irq(&lock->wait_lock);
1002
1003 res = rt_mutex_adjust_prio_chain(owner, chwalk, lock,
1004 next_lock, waiter, task);
1005
1006 raw_spin_lock_irq(&lock->wait_lock);
1007
1008 return res;
1009}
1010
1011
1012
1013
1014
1015
1016
1017static void mark_wakeup_next_waiter(struct wake_q_head *wake_q,
1018 struct rt_mutex *lock)
1019{
1020 struct rt_mutex_waiter *waiter;
1021
1022 raw_spin_lock(¤t->pi_lock);
1023
1024 waiter = rt_mutex_top_waiter(lock);
1025
1026
1027
1028
1029
1030
1031
1032
1033 rt_mutex_dequeue_pi(current, waiter);
1034 rt_mutex_adjust_prio(current);
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044 lock->owner = (void *) RT_MUTEX_HAS_WAITERS;
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056 preempt_disable();
1057 wake_q_add(wake_q, waiter->task);
1058 raw_spin_unlock(¤t->pi_lock);
1059}
1060
1061
1062
1063
1064
1065
1066
1067static void remove_waiter(struct rt_mutex *lock,
1068 struct rt_mutex_waiter *waiter)
1069{
1070 bool is_top_waiter = (waiter == rt_mutex_top_waiter(lock));
1071 struct task_struct *owner = rt_mutex_owner(lock);
1072 struct rt_mutex *next_lock;
1073
1074 lockdep_assert_held(&lock->wait_lock);
1075
1076 raw_spin_lock(¤t->pi_lock);
1077 rt_mutex_dequeue(lock, waiter);
1078 current->pi_blocked_on = NULL;
1079 raw_spin_unlock(¤t->pi_lock);
1080
1081
1082
1083
1084
1085 if (!owner || !is_top_waiter)
1086 return;
1087
1088 raw_spin_lock(&owner->pi_lock);
1089
1090 rt_mutex_dequeue_pi(owner, waiter);
1091
1092 if (rt_mutex_has_waiters(lock))
1093 rt_mutex_enqueue_pi(owner, rt_mutex_top_waiter(lock));
1094
1095 rt_mutex_adjust_prio(owner);
1096
1097
1098 next_lock = task_blocked_on_lock(owner);
1099
1100 raw_spin_unlock(&owner->pi_lock);
1101
1102
1103
1104
1105
1106 if (!next_lock)
1107 return;
1108
1109
1110 get_task_struct(owner);
1111
1112 raw_spin_unlock_irq(&lock->wait_lock);
1113
1114 rt_mutex_adjust_prio_chain(owner, RT_MUTEX_MIN_CHAINWALK, lock,
1115 next_lock, NULL, current);
1116
1117 raw_spin_lock_irq(&lock->wait_lock);
1118}
1119
1120
1121
1122
1123
1124
1125void rt_mutex_adjust_pi(struct task_struct *task)
1126{
1127 struct rt_mutex_waiter *waiter;
1128 struct rt_mutex *next_lock;
1129 unsigned long flags;
1130
1131 raw_spin_lock_irqsave(&task->pi_lock, flags);
1132
1133 waiter = task->pi_blocked_on;
1134 if (!waiter || rt_mutex_waiter_equal(waiter, task_to_waiter(task))) {
1135 raw_spin_unlock_irqrestore(&task->pi_lock, flags);
1136 return;
1137 }
1138 next_lock = waiter->lock;
1139 raw_spin_unlock_irqrestore(&task->pi_lock, flags);
1140
1141
1142 get_task_struct(task);
1143
1144 rt_mutex_adjust_prio_chain(task, RT_MUTEX_MIN_CHAINWALK, NULL,
1145 next_lock, NULL, task);
1146}
1147
1148void rt_mutex_init_waiter(struct rt_mutex_waiter *waiter)
1149{
1150 debug_rt_mutex_init_waiter(waiter);
1151 RB_CLEAR_NODE(&waiter->pi_tree_entry);
1152 RB_CLEAR_NODE(&waiter->tree_entry);
1153 waiter->task = NULL;
1154}
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166static int __sched
1167__rt_mutex_slowlock(struct rt_mutex *lock, int state,
1168 struct hrtimer_sleeper *timeout,
1169 struct rt_mutex_waiter *waiter)
1170{
1171 int ret = 0;
1172
1173 for (;;) {
1174
1175 if (try_to_take_rt_mutex(lock, current, waiter))
1176 break;
1177
1178
1179
1180
1181
1182 if (likely(state == TASK_INTERRUPTIBLE)) {
1183
1184 if (signal_pending(current))
1185 ret = -EINTR;
1186 if (timeout && !timeout->task)
1187 ret = -ETIMEDOUT;
1188 if (ret)
1189 break;
1190 }
1191
1192 raw_spin_unlock_irq(&lock->wait_lock);
1193
1194 debug_rt_mutex_print_deadlock(waiter);
1195
1196 schedule();
1197
1198 raw_spin_lock_irq(&lock->wait_lock);
1199 set_current_state(state);
1200 }
1201
1202 __set_current_state(TASK_RUNNING);
1203 return ret;
1204}
1205
1206static void rt_mutex_handle_deadlock(int res, int detect_deadlock,
1207 struct rt_mutex_waiter *w)
1208{
1209
1210
1211
1212
1213 if (res != -EDEADLOCK || detect_deadlock)
1214 return;
1215
1216
1217
1218
1219 rt_mutex_print_deadlock(w);
1220 while (1) {
1221 set_current_state(TASK_INTERRUPTIBLE);
1222 schedule();
1223 }
1224}
1225
1226
1227
1228
1229static int __sched
1230rt_mutex_slowlock(struct rt_mutex *lock, int state,
1231 struct hrtimer_sleeper *timeout,
1232 enum rtmutex_chainwalk chwalk)
1233{
1234 struct rt_mutex_waiter waiter;
1235 unsigned long flags;
1236 int ret = 0;
1237
1238 rt_mutex_init_waiter(&waiter);
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248 raw_spin_lock_irqsave(&lock->wait_lock, flags);
1249
1250
1251 if (try_to_take_rt_mutex(lock, current, NULL)) {
1252 raw_spin_unlock_irqrestore(&lock->wait_lock, flags);
1253 return 0;
1254 }
1255
1256 set_current_state(state);
1257
1258
1259 if (unlikely(timeout))
1260 hrtimer_start_expires(&timeout->timer, HRTIMER_MODE_ABS);
1261
1262 ret = task_blocks_on_rt_mutex(lock, &waiter, current, chwalk);
1263
1264 if (likely(!ret))
1265
1266 ret = __rt_mutex_slowlock(lock, state, timeout, &waiter);
1267
1268 if (unlikely(ret)) {
1269 __set_current_state(TASK_RUNNING);
1270 remove_waiter(lock, &waiter);
1271 rt_mutex_handle_deadlock(ret, chwalk, &waiter);
1272 }
1273
1274
1275
1276
1277
1278 fixup_rt_mutex_waiters(lock);
1279
1280 raw_spin_unlock_irqrestore(&lock->wait_lock, flags);
1281
1282
1283 if (unlikely(timeout))
1284 hrtimer_cancel(&timeout->timer);
1285
1286 debug_rt_mutex_free_waiter(&waiter);
1287
1288 return ret;
1289}
1290
1291static inline int __rt_mutex_slowtrylock(struct rt_mutex *lock)
1292{
1293 int ret = try_to_take_rt_mutex(lock, current, NULL);
1294
1295
1296
1297
1298
1299 fixup_rt_mutex_waiters(lock);
1300
1301 return ret;
1302}
1303
1304
1305
1306
1307static inline int rt_mutex_slowtrylock(struct rt_mutex *lock)
1308{
1309 unsigned long flags;
1310 int ret;
1311
1312
1313
1314
1315
1316
1317 if (rt_mutex_owner(lock))
1318 return 0;
1319
1320
1321
1322
1323
1324 raw_spin_lock_irqsave(&lock->wait_lock, flags);
1325
1326 ret = __rt_mutex_slowtrylock(lock);
1327
1328 raw_spin_unlock_irqrestore(&lock->wait_lock, flags);
1329
1330 return ret;
1331}
1332
1333
1334
1335
1336
1337
1338static bool __sched rt_mutex_slowunlock(struct rt_mutex *lock,
1339 struct wake_q_head *wake_q)
1340{
1341 unsigned long flags;
1342
1343
1344 raw_spin_lock_irqsave(&lock->wait_lock, flags);
1345
1346 debug_rt_mutex_unlock(lock);
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379 while (!rt_mutex_has_waiters(lock)) {
1380
1381 if (unlock_rt_mutex_safe(lock, flags) == true)
1382 return false;
1383
1384 raw_spin_lock_irqsave(&lock->wait_lock, flags);
1385 }
1386
1387
1388
1389
1390
1391
1392
1393 mark_wakeup_next_waiter(wake_q, lock);
1394 raw_spin_unlock_irqrestore(&lock->wait_lock, flags);
1395
1396 return true;
1397}
1398
1399
1400
1401
1402
1403
1404
1405static inline int
1406rt_mutex_fastlock(struct rt_mutex *lock, int state,
1407 int (*slowfn)(struct rt_mutex *lock, int state,
1408 struct hrtimer_sleeper *timeout,
1409 enum rtmutex_chainwalk chwalk))
1410{
1411 if (likely(rt_mutex_cmpxchg_acquire(lock, NULL, current)))
1412 return 0;
1413
1414 return slowfn(lock, state, NULL, RT_MUTEX_MIN_CHAINWALK);
1415}
1416
1417static inline int
1418rt_mutex_timed_fastlock(struct rt_mutex *lock, int state,
1419 struct hrtimer_sleeper *timeout,
1420 enum rtmutex_chainwalk chwalk,
1421 int (*slowfn)(struct rt_mutex *lock, int state,
1422 struct hrtimer_sleeper *timeout,
1423 enum rtmutex_chainwalk chwalk))
1424{
1425 if (chwalk == RT_MUTEX_MIN_CHAINWALK &&
1426 likely(rt_mutex_cmpxchg_acquire(lock, NULL, current)))
1427 return 0;
1428
1429 return slowfn(lock, state, timeout, chwalk);
1430}
1431
1432static inline int
1433rt_mutex_fasttrylock(struct rt_mutex *lock,
1434 int (*slowfn)(struct rt_mutex *lock))
1435{
1436 if (likely(rt_mutex_cmpxchg_acquire(lock, NULL, current)))
1437 return 1;
1438
1439 return slowfn(lock);
1440}
1441
1442
1443
1444
1445void rt_mutex_postunlock(struct wake_q_head *wake_q)
1446{
1447 wake_up_q(wake_q);
1448
1449
1450 preempt_enable();
1451}
1452
1453static inline void
1454rt_mutex_fastunlock(struct rt_mutex *lock,
1455 bool (*slowfn)(struct rt_mutex *lock,
1456 struct wake_q_head *wqh))
1457{
1458 DEFINE_WAKE_Q(wake_q);
1459
1460 if (likely(rt_mutex_cmpxchg_release(lock, current, NULL)))
1461 return;
1462
1463 if (slowfn(lock, &wake_q))
1464 rt_mutex_postunlock(&wake_q);
1465}
1466
1467static inline void __rt_mutex_lock(struct rt_mutex *lock, unsigned int subclass)
1468{
1469 might_sleep();
1470
1471 mutex_acquire(&lock->dep_map, subclass, 0, _RET_IP_);
1472 rt_mutex_fastlock(lock, TASK_UNINTERRUPTIBLE, rt_mutex_slowlock);
1473}
1474
1475#ifdef CONFIG_DEBUG_LOCK_ALLOC
1476
1477
1478
1479
1480
1481
1482void __sched rt_mutex_lock_nested(struct rt_mutex *lock, unsigned int subclass)
1483{
1484 __rt_mutex_lock(lock, subclass);
1485}
1486EXPORT_SYMBOL_GPL(rt_mutex_lock_nested);
1487
1488#else
1489
1490
1491
1492
1493
1494
1495void __sched rt_mutex_lock(struct rt_mutex *lock)
1496{
1497 __rt_mutex_lock(lock, 0);
1498}
1499EXPORT_SYMBOL_GPL(rt_mutex_lock);
1500#endif
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511int __sched rt_mutex_lock_interruptible(struct rt_mutex *lock)
1512{
1513 int ret;
1514
1515 might_sleep();
1516
1517 mutex_acquire(&lock->dep_map, 0, 0, _RET_IP_);
1518 ret = rt_mutex_fastlock(lock, TASK_INTERRUPTIBLE, rt_mutex_slowlock);
1519 if (ret)
1520 mutex_release(&lock->dep_map, 1, _RET_IP_);
1521
1522 return ret;
1523}
1524EXPORT_SYMBOL_GPL(rt_mutex_lock_interruptible);
1525
1526
1527
1528
1529int __sched rt_mutex_futex_trylock(struct rt_mutex *lock)
1530{
1531 return rt_mutex_slowtrylock(lock);
1532}
1533
1534int __sched __rt_mutex_futex_trylock(struct rt_mutex *lock)
1535{
1536 return __rt_mutex_slowtrylock(lock);
1537}
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552int
1553rt_mutex_timed_lock(struct rt_mutex *lock, struct hrtimer_sleeper *timeout)
1554{
1555 int ret;
1556
1557 might_sleep();
1558
1559 mutex_acquire(&lock->dep_map, 0, 0, _RET_IP_);
1560 ret = rt_mutex_timed_fastlock(lock, TASK_INTERRUPTIBLE, timeout,
1561 RT_MUTEX_MIN_CHAINWALK,
1562 rt_mutex_slowlock);
1563 if (ret)
1564 mutex_release(&lock->dep_map, 1, _RET_IP_);
1565
1566 return ret;
1567}
1568EXPORT_SYMBOL_GPL(rt_mutex_timed_lock);
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581int __sched rt_mutex_trylock(struct rt_mutex *lock)
1582{
1583 int ret;
1584
1585 if (WARN_ON_ONCE(in_irq() || in_nmi() || in_serving_softirq()))
1586 return 0;
1587
1588 ret = rt_mutex_fasttrylock(lock, rt_mutex_slowtrylock);
1589 if (ret)
1590 mutex_acquire(&lock->dep_map, 0, 1, _RET_IP_);
1591
1592 return ret;
1593}
1594EXPORT_SYMBOL_GPL(rt_mutex_trylock);
1595
1596
1597
1598
1599
1600
1601void __sched rt_mutex_unlock(struct rt_mutex *lock)
1602{
1603 mutex_release(&lock->dep_map, 1, _RET_IP_);
1604 rt_mutex_fastunlock(lock, rt_mutex_slowunlock);
1605}
1606EXPORT_SYMBOL_GPL(rt_mutex_unlock);
1607
1608
1609
1610
1611
1612bool __sched __rt_mutex_futex_unlock(struct rt_mutex *lock,
1613 struct wake_q_head *wake_q)
1614{
1615 lockdep_assert_held(&lock->wait_lock);
1616
1617 debug_rt_mutex_unlock(lock);
1618
1619 if (!rt_mutex_has_waiters(lock)) {
1620 lock->owner = NULL;
1621 return false;
1622 }
1623
1624
1625
1626
1627
1628
1629
1630 mark_wakeup_next_waiter(wake_q, lock);
1631
1632 return true;
1633}
1634
1635void __sched rt_mutex_futex_unlock(struct rt_mutex *lock)
1636{
1637 DEFINE_WAKE_Q(wake_q);
1638 unsigned long flags;
1639 bool postunlock;
1640
1641 raw_spin_lock_irqsave(&lock->wait_lock, flags);
1642 postunlock = __rt_mutex_futex_unlock(lock, &wake_q);
1643 raw_spin_unlock_irqrestore(&lock->wait_lock, flags);
1644
1645 if (postunlock)
1646 rt_mutex_postunlock(&wake_q);
1647}
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657void rt_mutex_destroy(struct rt_mutex *lock)
1658{
1659 WARN_ON(rt_mutex_is_locked(lock));
1660#ifdef CONFIG_DEBUG_RT_MUTEXES
1661 lock->magic = NULL;
1662#endif
1663}
1664EXPORT_SYMBOL_GPL(rt_mutex_destroy);
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675void __rt_mutex_init(struct rt_mutex *lock, const char *name,
1676 struct lock_class_key *key)
1677{
1678 lock->owner = NULL;
1679 raw_spin_lock_init(&lock->wait_lock);
1680 lock->waiters = RB_ROOT_CACHED;
1681
1682 if (name && key)
1683 debug_rt_mutex_init(lock, name, key);
1684}
1685EXPORT_SYMBOL_GPL(__rt_mutex_init);
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701void rt_mutex_init_proxy_locked(struct rt_mutex *lock,
1702 struct task_struct *proxy_owner)
1703{
1704 __rt_mutex_init(lock, NULL, NULL);
1705 debug_rt_mutex_proxy_lock(lock, proxy_owner);
1706 rt_mutex_set_owner(lock, proxy_owner);
1707}
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721void rt_mutex_proxy_unlock(struct rt_mutex *lock,
1722 struct task_struct *proxy_owner)
1723{
1724 debug_rt_mutex_proxy_unlock(lock);
1725 rt_mutex_set_owner(lock, NULL);
1726}
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747int __rt_mutex_start_proxy_lock(struct rt_mutex *lock,
1748 struct rt_mutex_waiter *waiter,
1749 struct task_struct *task)
1750{
1751 int ret;
1752
1753 lockdep_assert_held(&lock->wait_lock);
1754
1755 if (try_to_take_rt_mutex(lock, task, NULL))
1756 return 1;
1757
1758
1759 ret = task_blocks_on_rt_mutex(lock, waiter, task,
1760 RT_MUTEX_FULL_CHAINWALK);
1761
1762 if (ret && !rt_mutex_owner(lock)) {
1763
1764
1765
1766
1767
1768
1769 ret = 0;
1770 }
1771
1772 debug_rt_mutex_print_deadlock(waiter);
1773
1774 return ret;
1775}
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796int rt_mutex_start_proxy_lock(struct rt_mutex *lock,
1797 struct rt_mutex_waiter *waiter,
1798 struct task_struct *task)
1799{
1800 int ret;
1801
1802 raw_spin_lock_irq(&lock->wait_lock);
1803 ret = __rt_mutex_start_proxy_lock(lock, waiter, task);
1804 if (unlikely(ret))
1805 remove_waiter(lock, waiter);
1806 raw_spin_unlock_irq(&lock->wait_lock);
1807
1808 return ret;
1809}
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823struct task_struct *rt_mutex_next_owner(struct rt_mutex *lock)
1824{
1825 if (!rt_mutex_has_waiters(lock))
1826 return NULL;
1827
1828 return rt_mutex_top_waiter(lock)->task;
1829}
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848int rt_mutex_wait_proxy_lock(struct rt_mutex *lock,
1849 struct hrtimer_sleeper *to,
1850 struct rt_mutex_waiter *waiter)
1851{
1852 int ret;
1853
1854 raw_spin_lock_irq(&lock->wait_lock);
1855
1856 set_current_state(TASK_INTERRUPTIBLE);
1857 ret = __rt_mutex_slowlock(lock, TASK_INTERRUPTIBLE, to, waiter);
1858
1859
1860
1861
1862 fixup_rt_mutex_waiters(lock);
1863 raw_spin_unlock_irq(&lock->wait_lock);
1864
1865 return ret;
1866}
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888bool rt_mutex_cleanup_proxy_lock(struct rt_mutex *lock,
1889 struct rt_mutex_waiter *waiter)
1890{
1891 bool cleanup = false;
1892
1893 raw_spin_lock_irq(&lock->wait_lock);
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905 try_to_take_rt_mutex(lock, current, waiter);
1906
1907
1908
1909
1910 if (rt_mutex_owner(lock) != current) {
1911 remove_waiter(lock, waiter);
1912 cleanup = true;
1913 }
1914
1915
1916
1917
1918 fixup_rt_mutex_waiters(lock);
1919
1920 raw_spin_unlock_irq(&lock->wait_lock);
1921
1922 return cleanup;
1923}
1924