hc
2024-11-01 2f529f9b558ca1c1bd74be7437a84e4711743404
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
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
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
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
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
/*
 * Copyright (C) 2001-2013 Philippe Gerum <rpm@xenomai.org>.
 *
 * Xenomai is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published
 * by the Free Software Foundation; either version 2 of the License,
 * or (at your option) any later version.
 *
 * Xenomai is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Xenomai; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 * 02111-1307, USA.
 */
#include <linux/module.h>
#include <linux/signal.h>
#include <linux/wait.h>
#include <linux/sched.h>
#include <cobalt/kernel/sched.h>
#include <cobalt/kernel/thread.h>
#include <cobalt/kernel/timer.h>
#include <cobalt/kernel/intr.h>
#include <cobalt/kernel/heap.h>
#include <cobalt/kernel/arith.h>
#include <cobalt/uapi/signal.h>
#include <pipeline/sched.h>
#define CREATE_TRACE_POINTS
#include <trace/events/cobalt-core.h>
 
/**
 * @ingroup cobalt_core
 * @defgroup cobalt_core_sched Thread scheduling control
 * @{
 */
 
DEFINE_PER_CPU(struct xnsched, nksched);
EXPORT_PER_CPU_SYMBOL_GPL(nksched);
 
cpumask_t cobalt_cpu_affinity = CPU_MASK_ALL;
EXPORT_SYMBOL_GPL(cobalt_cpu_affinity);
 
LIST_HEAD(nkthreadq);
 
int cobalt_nrthreads;
 
#ifdef CONFIG_XENO_OPT_VFILE
struct xnvfile_rev_tag nkthreadlist_tag;
#endif
 
static struct xnsched_class *xnsched_class_highest;
 
#define for_each_xnsched_class(p) \
   for (p = xnsched_class_highest; p; p = p->next)
 
static void xnsched_register_class(struct xnsched_class *sched_class)
{
   sched_class->next = xnsched_class_highest;
   xnsched_class_highest = sched_class;
 
   /*
    * Classes shall be registered by increasing priority order,
    * idle first and up.
    */
   XENO_BUG_ON(COBALT, sched_class->next &&
          sched_class->next->weight > sched_class->weight);
 
   printk(XENO_INFO "scheduling class %s registered.\n", sched_class->name);
}
 
void xnsched_register_classes(void)
{
   xnsched_register_class(&xnsched_class_idle);
#ifdef CONFIG_XENO_OPT_SCHED_WEAK
   xnsched_register_class(&xnsched_class_weak);
#endif
#ifdef CONFIG_XENO_OPT_SCHED_TP
   xnsched_register_class(&xnsched_class_tp);
#endif
#ifdef CONFIG_XENO_OPT_SCHED_SPORADIC
   xnsched_register_class(&xnsched_class_sporadic);
#endif
#ifdef CONFIG_XENO_OPT_SCHED_QUOTA
   xnsched_register_class(&xnsched_class_quota);
#endif
   xnsched_register_class(&xnsched_class_rt);
}
 
#ifdef CONFIG_XENO_OPT_WATCHDOG
 
static unsigned long wd_timeout_arg = CONFIG_XENO_OPT_WATCHDOG_TIMEOUT;
module_param_named(watchdog_timeout, wd_timeout_arg, ulong, 0644);
 
static inline xnticks_t get_watchdog_timeout(void)
{
   return wd_timeout_arg * 1000000000ULL;
}
 
/**
 * @internal
 * @fn void watchdog_handler(struct xntimer *timer)
 * @brief Process watchdog ticks.
 *
 * This internal routine handles incoming watchdog triggers to detect
 * software lockups. It forces the offending thread to stop
 * monopolizing the CPU, either by kicking it out of primary mode if
 * running in user space, or cancelling it if kernel-based.
 *
 * @coretags{coreirq-only, atomic-entry}
 */
static void watchdog_handler(struct xntimer *timer)
{
   struct xnsched *sched = xnsched_current();
   struct xnthread *curr = sched->curr;
 
   /*
    * CAUTION: The watchdog tick might have been delayed while we
    * were busy switching the CPU to secondary mode at the
    * trigger date eventually. Make sure that we are not about to
    * kick the incoming root thread.
    */
   if (xnthread_test_state(curr, XNROOT))
         return;
 
   trace_cobalt_watchdog_signal(curr);
 
   if (xnthread_test_state(curr, XNUSER)) {
       printk(XENO_WARNING "watchdog triggered on CPU #%d -- runaway thread "
              "'%s' signaled\n", xnsched_cpu(sched), curr->name);
       xnthread_call_mayday(curr, SIGDEBUG_WATCHDOG);
   } else {
       printk(XENO_WARNING "watchdog triggered on CPU #%d -- runaway thread "
              "'%s' canceled\n", xnsched_cpu(sched), curr->name);
       /*
        * On behalf on an IRQ handler, xnthread_cancel()
        * would go half way cancelling the preempted
        * thread. Therefore we manually raise XNKICKED to
        * cause the next call to xnthread_suspend() to return
        * early in XNBREAK condition, and XNCANCELD so that
        * @thread exits next time it invokes
        * xnthread_test_cancel().
        */
       xnthread_set_info(curr, XNKICKED|XNCANCELD);
   }
}
 
#endif /* CONFIG_XENO_OPT_WATCHDOG */
 
static void roundrobin_handler(struct xntimer *timer)
{
   struct xnsched *sched = container_of(timer, struct xnsched, rrbtimer);
   xnsched_tick(sched);
}
 
static void xnsched_init(struct xnsched *sched, int cpu)
{
   char rrbtimer_name[XNOBJECT_NAME_LEN];
   char htimer_name[XNOBJECT_NAME_LEN];
   char root_name[XNOBJECT_NAME_LEN];
   union xnsched_policy_param param;
   struct xnthread_init_attr attr;
   struct xnsched_class *p;
 
#ifdef CONFIG_SMP
   sched->cpu = cpu;
   ksformat(htimer_name, sizeof(htimer_name), "[host-timer/%u]", cpu);
   ksformat(rrbtimer_name, sizeof(rrbtimer_name), "[rrb-timer/%u]", cpu);
   ksformat(root_name, sizeof(root_name), "ROOT/%u", cpu);
   cpumask_clear(&sched->resched);
#else
   strcpy(htimer_name, "[host-timer]");
   strcpy(rrbtimer_name, "[rrb-timer]");
   strcpy(root_name, "ROOT");
#endif
   for_each_xnsched_class(p) {
       if (p->sched_init)
           p->sched_init(sched);
   }
 
   sched->status = 0;
   sched->lflags = XNIDLE;
   sched->inesting = 0;
   sched->curr = &sched->rootcb;
 
   attr.flags = XNROOT | XNFPU;
   attr.name = root_name;
   attr.personality = &xenomai_personality;
   attr.affinity = *cpumask_of(cpu);
   param.idle.prio = XNSCHED_IDLE_PRIO;
 
   __xnthread_init(&sched->rootcb, &attr,
           sched, &xnsched_class_idle, &param);
 
   /*
    * No direct handler here since the host timer processing is
    * postponed to xnintr_irq_handler(), as part of the interrupt
    * exit code.
    */
   xntimer_init(&sched->htimer, &nkclock, NULL,
            sched, XNTIMER_IGRAVITY);
   xntimer_set_priority(&sched->htimer, XNTIMER_LOPRIO);
   xntimer_set_name(&sched->htimer, htimer_name);
   xntimer_init(&sched->rrbtimer, &nkclock, roundrobin_handler,
            sched, XNTIMER_IGRAVITY);
   xntimer_set_name(&sched->rrbtimer, rrbtimer_name);
   xntimer_set_priority(&sched->rrbtimer, XNTIMER_LOPRIO);
 
   xnstat_exectime_set_current(sched, &sched->rootcb.stat.account);
#ifdef CONFIG_XENO_ARCH_FPU
   sched->fpuholder = &sched->rootcb;
#endif /* CONFIG_XENO_ARCH_FPU */
 
   pipeline_init_root_tcb(&sched->rootcb);
   list_add_tail(&sched->rootcb.glink, &nkthreadq);
   cobalt_nrthreads++;
 
#ifdef CONFIG_XENO_OPT_WATCHDOG
   xntimer_init(&sched->wdtimer, &nkclock, watchdog_handler,
            sched, XNTIMER_IGRAVITY);
   xntimer_set_name(&sched->wdtimer, "[watchdog]");
   xntimer_set_priority(&sched->wdtimer, XNTIMER_LOPRIO);
#endif /* CONFIG_XENO_OPT_WATCHDOG */
}
 
void xnsched_init_all(void)
{
   struct xnsched *sched;
   int cpu;
 
   for_each_online_cpu(cpu) {
       sched = &per_cpu(nksched, cpu);
       xnsched_init(sched, cpu);
   }
 
   pipeline_request_resched_ipi(__xnsched_run_handler);
}
 
static void xnsched_destroy(struct xnsched *sched)
{
   xntimer_destroy(&sched->htimer);
   xntimer_destroy(&sched->rrbtimer);
   xntimer_destroy(&sched->rootcb.ptimer);
   xntimer_destroy(&sched->rootcb.rtimer);
#ifdef CONFIG_XENO_OPT_WATCHDOG
   xntimer_destroy(&sched->wdtimer);
#endif /* CONFIG_XENO_OPT_WATCHDOG */
}
 
void xnsched_destroy_all(void)
{
   struct xnthread *thread, *tmp;
   struct xnsched *sched;
   int cpu;
   spl_t s;
 
   pipeline_free_resched_ipi();
 
   xnlock_get_irqsave(&nklock, s);
 
   /* NOTE: &nkthreadq can't be empty (root thread(s)). */
   list_for_each_entry_safe(thread, tmp, &nkthreadq, glink) {
       if (!xnthread_test_state(thread, XNROOT))
           xnthread_cancel(thread);
   }
 
   xnsched_run();
 
   for_each_online_cpu(cpu) {
       sched = xnsched_struct(cpu);
       xnsched_destroy(sched);
   }
 
   xnlock_put_irqrestore(&nklock, s);
}
 
static inline void set_thread_running(struct xnsched *sched,
                     struct xnthread *thread)
{
   xnthread_clear_state(thread, XNREADY);
   if (xnthread_test_state(thread, XNRRB))
       xntimer_start(&sched->rrbtimer,
                 thread->rrperiod, XN_INFINITE, XN_RELATIVE);
   else
       xntimer_stop(&sched->rrbtimer);
}
 
/* Must be called with nklock locked, interrupts off. */
struct xnthread *xnsched_pick_next(struct xnsched *sched)
{
   struct xnsched_class *p __maybe_unused;
   struct xnthread *curr = sched->curr;
   struct xnthread *thread;
 
   if (!xnthread_test_state(curr, XNTHREAD_BLOCK_BITS | XNZOMBIE)) {
       /*
        * Do not preempt the current thread if it holds the
        * scheduler lock.
        */
       if (curr->lock_count > 0) {
           xnsched_set_self_resched(sched);
           return curr;
       }
       /*
        * Push the current thread back to the run queue of
        * the scheduling class it belongs to, if not yet
        * linked to it (XNREADY tells us if it is).
        */
       if (!xnthread_test_state(curr, XNREADY)) {
           xnsched_requeue(curr);
           xnthread_set_state(curr, XNREADY);
       }
   }
 
   /*
    * Find the runnable thread having the highest priority among
    * all scheduling classes, scanned by decreasing priority.
    */
#ifdef CONFIG_XENO_OPT_SCHED_CLASSES
   for_each_xnsched_class(p) {
       thread = p->sched_pick(sched);
       if (thread) {
           set_thread_running(sched, thread);
           return thread;
       }
   }
 
   return NULL; /* Never executed because of the idle class. */
#else /* !CONFIG_XENO_OPT_SCHED_CLASSES */
   thread = xnsched_rt_pick(sched);
   if (unlikely(thread == NULL))
       thread = &sched->rootcb;
 
   set_thread_running(sched, thread);
 
   return thread;
#endif /* CONFIG_XENO_OPT_SCHED_CLASSES */
}
 
void xnsched_lock(void)
{
   struct xnsched *sched = xnsched_current();
   /* See comments in xnsched_run(), ___xnsched_run(). */
   struct xnthread *curr = READ_ONCE(sched->curr);
 
   if (sched->lflags & XNINIRQ)
       return;
 
   /*
    * CAUTION: The fast xnthread_current() accessor carries the
    * relevant lock nesting count only if current runs in primary
    * mode. Otherwise, if the caller is unknown or relaxed
    * Xenomai-wise, then we fall back to the root thread on the
    * current scheduler, which must be done with IRQs off.
    * Either way, we don't need to grab the super lock.
    */
   XENO_WARN_ON_ONCE(COBALT, (curr->state & XNROOT) &&
             !hard_irqs_disabled());
 
   curr->lock_count++;
}
EXPORT_SYMBOL_GPL(xnsched_lock);
 
void xnsched_unlock(void)
{
   struct xnsched *sched = xnsched_current();
   struct xnthread *curr = READ_ONCE(sched->curr);
 
   XENO_WARN_ON_ONCE(COBALT, (curr->state & XNROOT) &&
             !hard_irqs_disabled());
 
   if (sched->lflags & XNINIRQ)
       return;
 
   if (!XENO_ASSERT(COBALT, curr->lock_count > 0))
       return;
 
   if (--curr->lock_count == 0) {
       xnthread_clear_localinfo(curr, XNLBALERT);
       xnsched_run();
   }
}
EXPORT_SYMBOL_GPL(xnsched_unlock);
 
/* nklock locked, interrupts off. */
void xnsched_putback(struct xnthread *thread)
{
   if (xnthread_test_state(thread, XNREADY))
       xnsched_dequeue(thread);
   else
       xnthread_set_state(thread, XNREADY);
 
   xnsched_enqueue(thread);
   xnsched_set_resched(thread->sched);
}
 
/* nklock locked, interrupts off. */
int xnsched_set_policy(struct xnthread *thread,
              struct xnsched_class *sched_class,
              const union xnsched_policy_param *p)
{
   struct xnsched_class *orig_effective_class __maybe_unused;
   bool effective;
   int ret;
 
   ret = xnsched_chkparam(sched_class, thread, p);
   if (ret)
       return ret;
 
   /*
    * Declaring a thread to a new scheduling class may fail, so
    * we do that early, while the thread is still a member of the
    * previous class. However, this also means that the
    * declaration callback shall not do anything that might
    * affect the previous class (such as touching thread->rlink
    * for instance).
    */
   if (sched_class != thread->base_class) {
       ret = xnsched_declare(sched_class, thread, p);
       if (ret)
           return ret;
   }
 
   /*
    * As a special case, we may be called from __xnthread_init()
    * with no previous scheduling class at all.
    */
   if (likely(thread->base_class != NULL)) {
       if (xnthread_test_state(thread, XNREADY))
           xnsched_dequeue(thread);
 
       if (sched_class != thread->base_class)
           xnsched_forget(thread);
   }
 
   /*
    * Set the base and effective scheduling parameters. However,
    * xnsched_setparam() will deny lowering the effective
    * priority if a boost is undergoing, only recording the
    * change into the base priority field in such situation.
    */
   thread->base_class = sched_class;
   /*
    * Referring to the effective class from a setparam() handler
    * is wrong: make sure to break if so.
    */
   if (XENO_DEBUG(COBALT)) {
       orig_effective_class = thread->sched_class;
       thread->sched_class = NULL;
   }
 
   /*
    * This is the ONLY place where calling xnsched_setparam() is
    * legit, sane and safe.
    */
   effective = xnsched_setparam(thread, p);
   if (effective) {
       thread->sched_class = sched_class;
       thread->wprio = xnsched_calc_wprio(sched_class, thread->cprio);
   } else if (XENO_DEBUG(COBALT))
       thread->sched_class = orig_effective_class;
 
   if (xnthread_test_state(thread, XNREADY))
       xnsched_enqueue(thread);
 
   /*
    * Make sure not to raise XNSCHED when setting up the root
    * thread, so that we can't start rescheduling on interrupt
    * exit before all CPUs have their runqueue fully
    * built. Filtering on XNROOT here is correct because the root
    * thread enters the idle class once as part of the runqueue
    * setup process and never leaves it afterwards.
    */
   if (!xnthread_test_state(thread, XNDORMANT|XNROOT))
       xnsched_set_resched(thread->sched);
 
   return 0;
}
EXPORT_SYMBOL_GPL(xnsched_set_policy);
 
/* nklock locked, interrupts off. */
bool xnsched_set_effective_priority(struct xnthread *thread, int prio)
{
   int wprio = xnsched_calc_wprio(thread->base_class, prio);
 
   thread->bprio = prio;
   if (wprio == thread->wprio)
       return true;
 
   /*
    * We may not lower the effective/current priority of a
    * boosted thread when changing the base scheduling
    * parameters. Only xnsched_track_policy() and
    * xnsched_protect_priority() may do so when dealing with PI
    * and PP synchs resp.
    */
   if (wprio < thread->wprio && xnthread_test_state(thread, XNBOOST))
       return false;
 
   thread->cprio = prio;
 
   trace_cobalt_thread_set_current_prio(thread);
 
   return true;
}
 
/* nklock locked, interrupts off. */
void xnsched_track_policy(struct xnthread *thread,
             struct xnthread *target)
{
   union xnsched_policy_param param;
 
   /*
    * Inherit (or reset) the effective scheduling class and
    * priority of a thread. Unlike xnsched_set_policy(), this
    * routine is allowed to lower the weighted priority with no
    * restriction, even if a boost is undergoing.
    */
   if (xnthread_test_state(thread, XNREADY))
       xnsched_dequeue(thread);
   /*
    * Self-targeting means to reset the scheduling policy and
    * parameters to the base settings. Otherwise, make thread
    * inherit the scheduling parameters from target.
    */
   if (target == thread) {
       thread->sched_class = thread->base_class;
       xnsched_trackprio(thread, NULL);
       /*
        * Per SuSv2, resetting the base scheduling parameters
        * should not move the thread to the tail of its
        * priority group.
        */
       if (xnthread_test_state(thread, XNREADY))
           xnsched_requeue(thread);
 
   } else {
       xnsched_getparam(target, &param);
       thread->sched_class = target->sched_class;
       xnsched_trackprio(thread, &param);
       if (xnthread_test_state(thread, XNREADY))
           xnsched_enqueue(thread);
   }
 
   trace_cobalt_thread_set_current_prio(thread);
 
   xnsched_set_resched(thread->sched);
}
 
/* nklock locked, interrupts off. */
void xnsched_protect_priority(struct xnthread *thread, int prio)
{
   /*
    * Apply a PP boost by changing the effective priority of a
    * thread, forcing it to the RT class. Like
    * xnsched_track_policy(), this routine is allowed to lower
    * the weighted priority with no restriction, even if a boost
    * is undergoing.
    *
    * This routine only deals with active boosts, resetting the
    * base priority when leaving a PP boost is obtained by a call
    * to xnsched_track_policy().
    */
   if (xnthread_test_state(thread, XNREADY))
       xnsched_dequeue(thread);
 
   thread->sched_class = &xnsched_class_rt;
   xnsched_protectprio(thread, prio);
 
   if (xnthread_test_state(thread, XNREADY))
       xnsched_enqueue(thread);
 
   trace_cobalt_thread_set_current_prio(thread);
 
   xnsched_set_resched(thread->sched);
}
 
static void migrate_thread(struct xnthread *thread, struct xnsched *sched)
{
   struct xnsched_class *sched_class = thread->sched_class;
 
   if (xnthread_test_state(thread, XNREADY)) {
       xnsched_dequeue(thread);
       xnthread_clear_state(thread, XNREADY);
   }
 
   if (sched_class->sched_migrate)
       sched_class->sched_migrate(thread, sched);
   /*
    * WARNING: the scheduling class may have just changed as a
    * result of calling the per-class migration hook.
    */
   thread->sched = sched;
}
 
/*
 * nklock locked, interrupts off. thread must be runnable.
 */
void xnsched_migrate(struct xnthread *thread, struct xnsched *sched)
{
   xnsched_set_resched(thread->sched);
   migrate_thread(thread, sched);
   /* Move thread to the remote run queue. */
   xnsched_putback(thread);
}
 
/*
 * nklock locked, interrupts off. Thread may be blocked.
 */
void xnsched_migrate_passive(struct xnthread *thread, struct xnsched *sched)
{
   struct xnsched *last_sched = thread->sched;
 
   migrate_thread(thread, sched);
 
   if (!xnthread_test_state(thread, XNTHREAD_BLOCK_BITS)) {
       xnsched_requeue(thread);
       xnthread_set_state(thread, XNREADY);
       xnsched_set_resched(last_sched);
   }
}
 
#ifdef CONFIG_XENO_OPT_SCALABLE_SCHED
 
void xnsched_initq(struct xnsched_mlq *q)
{
   int prio;
 
   q->elems = 0;
   bitmap_zero(q->prio_map, XNSCHED_MLQ_LEVELS);
 
   for (prio = 0; prio < XNSCHED_MLQ_LEVELS; prio++)
       INIT_LIST_HEAD(q->heads + prio);
}
 
static inline int get_qindex(struct xnsched_mlq *q, int prio)
{
   XENO_BUG_ON(COBALT, prio < 0 || prio >= XNSCHED_MLQ_LEVELS);
   /*
    * BIG FAT WARNING: We need to rescale the priority level to a
    * 0-based range. We use find_first_bit() to scan the bitmap
    * which is a bit scan forward operation. Therefore, the lower
    * the index value, the higher the priority (since least
    * significant bits will be found first when scanning the
    * bitmap).
    */
   return XNSCHED_MLQ_LEVELS - prio - 1;
}
 
static struct list_head *add_q(struct xnsched_mlq *q, int prio)
{
   struct list_head *head;
   int idx;
 
   idx = get_qindex(q, prio);
   head = q->heads + idx;
   q->elems++;
 
   /* New item is not linked yet. */
   if (list_empty(head))
       __set_bit(idx, q->prio_map);
 
   return head;
}
 
void xnsched_addq(struct xnsched_mlq *q, struct xnthread *thread)
{
   struct list_head *head = add_q(q, thread->cprio);
   list_add(&thread->rlink, head);
}
 
void xnsched_addq_tail(struct xnsched_mlq *q, struct xnthread *thread)
{
   struct list_head *head = add_q(q, thread->cprio);
   list_add_tail(&thread->rlink, head);
}
 
static void del_q(struct xnsched_mlq *q,
         struct list_head *entry, int idx)
{
   struct list_head *head = q->heads + idx;
 
   list_del(entry);
   q->elems--;
 
   if (list_empty(head))
       __clear_bit(idx, q->prio_map);
}
 
void xnsched_delq(struct xnsched_mlq *q, struct xnthread *thread)
{
   del_q(q, &thread->rlink, get_qindex(q, thread->cprio));
}
 
struct xnthread *xnsched_getq(struct xnsched_mlq *q)
{
   struct xnthread *thread;
   struct list_head *head;
   int idx;
 
   if (q->elems == 0)
       return NULL;
 
   idx = xnsched_weightq(q);
   head = q->heads + idx;
   XENO_BUG_ON(COBALT, list_empty(head));
   thread = list_first_entry(head, struct xnthread, rlink);
   del_q(q, &thread->rlink, idx);
 
   return thread;
}
 
struct xnthread *xnsched_findq(struct xnsched_mlq *q, int prio)
{
   struct list_head *head;
   int idx;
 
   idx = get_qindex(q, prio);
   head = q->heads + idx;
   if (list_empty(head))
       return NULL;
 
   return list_first_entry(head, struct xnthread, rlink);
}
 
#ifdef CONFIG_XENO_OPT_SCHED_CLASSES
 
struct xnthread *xnsched_rt_pick(struct xnsched *sched)
{
   struct xnsched_mlq *q = &sched->rt.runnable;
   struct xnthread *thread;
   struct list_head *head;
   int idx;
 
   if (q->elems == 0)
       return NULL;
 
   /*
    * Some scheduling policies may be implemented as variants of
    * the core SCHED_FIFO class, sharing its runqueue
    * (e.g. SCHED_SPORADIC, SCHED_QUOTA). This means that we have
    * to do some cascading to call the right pick handler
    * eventually.
    */
   idx = xnsched_weightq(q);
   head = q->heads + idx;
   XENO_BUG_ON(COBALT, list_empty(head));
 
   /*
    * The active class (i.e. ->sched_class) is the one currently
    * queuing the thread, reflecting any priority boost due to
    * PI.
    */
   thread = list_first_entry(head, struct xnthread, rlink);
   if (unlikely(thread->sched_class != &xnsched_class_rt))
       return thread->sched_class->sched_pick(sched);
 
   del_q(q, &thread->rlink, idx);
 
   return thread;
}
 
#endif /* CONFIG_XENO_OPT_SCHED_CLASSES */
 
#else /* !CONFIG_XENO_OPT_SCALABLE_SCHED */
 
struct xnthread *xnsched_findq(struct list_head *q, int prio)
{
   struct xnthread *thread;
 
   if (list_empty(q))
       return NULL;
 
   /* Find thread leading a priority group. */
   list_for_each_entry(thread, q, rlink) {
       if (prio == thread->cprio)
           return thread;
   }
 
   return NULL;
}
 
#ifdef CONFIG_XENO_OPT_SCHED_CLASSES
 
struct xnthread *xnsched_rt_pick(struct xnsched *sched)
{
   struct list_head *q = &sched->rt.runnable;
   struct xnthread *thread;
 
   if (list_empty(q))
       return NULL;
 
   thread = list_first_entry(q, struct xnthread, rlink);
   if (unlikely(thread->sched_class != &xnsched_class_rt))
       return thread->sched_class->sched_pick(sched);
 
   list_del(&thread->rlink);
 
   return thread;
}
 
#endif /* CONFIG_XENO_OPT_SCHED_CLASSES */
 
#endif /* !CONFIG_XENO_OPT_SCALABLE_SCHED */
 
/**
 * @fn int xnsched_run(void)
 * @brief The rescheduling procedure.
 *
 * This is the central rescheduling routine which should be called to
 * validate and apply changes which have previously been made to the
 * nucleus scheduling state, such as suspending, resuming or changing
 * the priority of threads.  This call performs context switches as
 * needed. xnsched_run() schedules out the current thread if:
 *
 * - the current thread is about to block.
 * - a runnable thread from a higher priority scheduling class is
 * waiting for the CPU.
 * - the current thread does not lead the runnable threads from its
 * own scheduling class (i.e. round-robin).
 *
 * The Cobalt core implements a lazy rescheduling scheme so that most
 * of the services affecting the threads state MUST be followed by a
 * call to the rescheduling procedure for the new scheduling state to
 * be applied.
 *
 * In other words, multiple changes on the scheduler state can be done
 * in a row, waking threads up, blocking others, without being
 * immediately translated into the corresponding context switches.
 * When all changes have been applied, xnsched_run() should be called
 * for considering those changes, and possibly switching context.
 *
 * As a notable exception to the previous principle however, every
 * action which ends up suspending the current thread begets an
 * implicit call to the rescheduling procedure on behalf of the
 * blocking service.
 *
 * Typically, self-suspension or sleeping on a synchronization object
 * automatically leads to a call to the rescheduling procedure,
 * therefore the caller does not need to explicitly issue
 * xnsched_run() after such operations.
 *
 * The rescheduling procedure always leads to a null-effect if it is
 * called on behalf of an interrupt service routine. Any outstanding
 * scheduler lock held by the outgoing thread will be restored when
 * the thread is scheduled back in.
 *
 * Calling this procedure with no applicable context switch pending is
 * harmless and simply leads to a null-effect.
 *
 * @return Non-zero is returned if a context switch actually happened,
 * otherwise zero if the current thread was left running.
 *
 * @coretags{unrestricted}
 */
static inline int test_resched(struct xnsched *sched)
{
   int resched = xnsched_resched_p(sched);
#ifdef CONFIG_SMP
   /* Send resched IPI to remote CPU(s). */
   if (unlikely(!cpumask_empty(&sched->resched))) {
       smp_mb();
       pipeline_send_resched_ipi(&sched->resched);
       cpumask_clear(&sched->resched);
   }
#endif
   sched->status &= ~XNRESCHED;
 
   return resched;
}
 
static inline void enter_root(struct xnthread *root)
{
#ifdef CONFIG_XENO_OPT_WATCHDOG
   xntimer_stop(&root->sched->wdtimer);
#endif
}
 
static inline void leave_root(struct xnthread *root)
{
   pipeline_prep_switch_oob(root);
 
#ifdef CONFIG_XENO_OPT_WATCHDOG
   xntimer_start(&root->sched->wdtimer, get_watchdog_timeout(),
             XN_INFINITE, XN_RELATIVE);
#endif
}
 
void __xnsched_run_handler(void) /* hw interrupts off. */
{
   trace_cobalt_schedule_remote(xnsched_current());
   xnsched_run();
}
 
static inline void do_lazy_user_work(struct xnthread *curr)
{
   xnthread_commit_ceiling(curr);
}
 
int ___xnsched_run(struct xnsched *sched)
{
   bool switched = false, leaving_inband;
   struct xnthread *prev, *next, *curr;
   spl_t s;
 
   XENO_WARN_ON_ONCE(COBALT, is_secondary_domain());
 
   trace_cobalt_schedule(sched);
 
   xnlock_get_irqsave(&nklock, s);
 
   curr = sched->curr;
   /*
    * CAUTION: xnthread_host_task(curr) may be unsynced and even
    * stale if curr = &rootcb, since the task logged by
    * leave_root() may not still be the current one. Use
    * "current" for disambiguating.
    */
   xntrace_pid(task_pid_nr(current), xnthread_current_priority(curr));
 
   if (xnthread_test_state(curr, XNUSER))
       do_lazy_user_work(curr);
 
   if (!test_resched(sched))
       goto out;
 
   next = xnsched_pick_next(sched);
   if (next == curr) {
       if (unlikely(xnthread_test_state(next, XNROOT))) {
           if (sched->lflags & XNHTICK)
               xnintr_host_tick(sched);
           if (sched->lflags & XNHDEFER)
               xnclock_program_shot(&nkclock, sched);
       }
       goto out;
   }
 
   prev = curr;
 
   trace_cobalt_switch_context(prev, next);
 
   /*
    * sched->curr is shared locklessly with xnsched_run() and
    * xnsched_lock(). WRITE_ONCE() makes sure sched->curr is
    * written atomically so that these routines always observe
    * consistent values by preventing the compiler from using
    * store tearing.
    */
   WRITE_ONCE(sched->curr, next);
   leaving_inband = false;
 
   if (xnthread_test_state(prev, XNROOT)) {
       leave_root(prev);
       leaving_inband = true;
   } else if (xnthread_test_state(next, XNROOT)) {
       if (sched->lflags & XNHTICK)
           xnintr_host_tick(sched);
       if (sched->lflags & XNHDEFER)
           xnclock_program_shot(&nkclock, sched);
       enter_root(next);
   }
 
   xnstat_exectime_switch(sched, &next->stat.account);
   xnstat_counter_inc(&next->stat.csw);
 
   if (pipeline_switch_to(prev, next, leaving_inband))
       /* oob -> in-band transition detected. */
       return true;
 
   /*
    * Re-read sched->curr for tracing: the current thread may
    * have switched from in-band to oob context.
    */
   xntrace_pid(task_pid_nr(current),
       xnthread_current_priority(xnsched_current()->curr));
 
   switched = true;
out:
   xnlock_put_irqrestore(&nklock, s);
 
   return !!switched;
}
EXPORT_SYMBOL_GPL(___xnsched_run);
 
#ifdef CONFIG_XENO_OPT_VFILE
 
static struct xnvfile_directory sched_vfroot;
 
struct vfile_schedlist_priv {
   struct xnthread *curr;
   xnticks_t start_time;
};
 
struct vfile_schedlist_data {
   int cpu;
   pid_t pid;
   char name[XNOBJECT_NAME_LEN];
   char sched_class[XNOBJECT_NAME_LEN];
   char personality[XNOBJECT_NAME_LEN];
   int cprio;
   xnticks_t timeout;
   int state;
};
 
static struct xnvfile_snapshot_ops vfile_schedlist_ops;
 
static struct xnvfile_snapshot schedlist_vfile = {
   .privsz = sizeof(struct vfile_schedlist_priv),
   .datasz = sizeof(struct vfile_schedlist_data),
   .tag = &nkthreadlist_tag,
   .ops = &vfile_schedlist_ops,
};
 
static int vfile_schedlist_rewind(struct xnvfile_snapshot_iterator *it)
{
   struct vfile_schedlist_priv *priv = xnvfile_iterator_priv(it);
 
   /* &nkthreadq cannot be empty (root thread(s)). */
   priv->curr = list_first_entry(&nkthreadq, struct xnthread, glink);
   priv->start_time = xnclock_read_monotonic(&nkclock);
 
   return cobalt_nrthreads;
}
 
static int vfile_schedlist_next(struct xnvfile_snapshot_iterator *it,
               void *data)
{
   struct vfile_schedlist_priv *priv = xnvfile_iterator_priv(it);
   struct vfile_schedlist_data *p = data;
   xnticks_t timeout, period;
   struct xnthread *thread;
   xnticks_t base_time;
 
   if (priv->curr == NULL)
       return 0;    /* All done. */
 
   thread = priv->curr;
   if (list_is_last(&thread->glink, &nkthreadq))
       priv->curr = NULL;
   else
       priv->curr = list_next_entry(thread, glink);
 
   p->cpu = xnsched_cpu(thread->sched);
   p->pid = xnthread_host_pid(thread);
   memcpy(p->name, thread->name, sizeof(p->name));
   p->cprio = thread->cprio;
   p->state = xnthread_get_state(thread);
   if (thread->lock_count > 0)
       p->state |= XNLOCK;
   knamecpy(p->sched_class, thread->sched_class->name);
   knamecpy(p->personality, thread->personality->name);
   period = xnthread_get_period(thread);
   base_time = priv->start_time;
   if (xntimer_clock(&thread->ptimer) != &nkclock)
       base_time = xnclock_read_monotonic(xntimer_clock(&thread->ptimer));
   timeout = xnthread_get_timeout(thread, base_time);
   /*
    * Here we cheat: thread is periodic and the sampling rate may
    * be high, so it is indeed possible that the next tick date
    * from the ptimer progresses fast enough while we are busy
    * collecting output data in this loop, so that next_date -
    * start_time > period. In such a case, we simply ceil the
    * value to period to keep the result meaningful, even if not
    * necessarily accurate. But what does accuracy mean when the
    * sampling frequency is high, and the way to read it has to
    * go through the vfile interface anyway?
    */
   if (period > 0 && period < timeout &&
       !xntimer_running_p(&thread->rtimer))
       timeout = period;
 
   p->timeout = timeout;
 
   return 1;
}
 
static int vfile_schedlist_show(struct xnvfile_snapshot_iterator *it,
               void *data)
{
   struct vfile_schedlist_data *p = data;
   char sbuf[64], pbuf[16], tbuf[16];
 
   if (p == NULL)
       xnvfile_printf(it,
                  "%-3s  %-6s %-5s  %-8s  %-5s %-12s  %-10s %s\n",
                  "CPU", "PID", "CLASS", "TYPE", "PRI", "TIMEOUT",
                  "STAT", "NAME");
   else {
       ksformat(pbuf, sizeof(pbuf), "%3d", p->cprio);
       xntimer_format_time(p->timeout, tbuf, sizeof(tbuf));
       xnthread_format_status(p->state, sbuf, sizeof(sbuf));
 
       xnvfile_printf(it,
                  "%3u  %-6d %-5s  %-8s  %-5s %-12s  %-10s %s%s%s\n",
                  p->cpu,
                  p->pid,
                  p->sched_class,
                  p->personality,
                  pbuf,
                  tbuf,
                  sbuf,
                  (p->state & XNUSER) ? "" : "[",
                  p->name,
                  (p->state & XNUSER) ? "" : "]");
   }
 
   return 0;
}
 
static struct xnvfile_snapshot_ops vfile_schedlist_ops = {
   .rewind = vfile_schedlist_rewind,
   .next = vfile_schedlist_next,
   .show = vfile_schedlist_show,
};
 
#ifdef CONFIG_XENO_OPT_STATS
 
static spl_t vfile_schedstat_lock_s;
 
static int vfile_schedstat_get_lock(struct xnvfile *vfile)
{
   int ret;
 
   ret = xnintr_get_query_lock();
   if (ret < 0)
       return ret;
   xnlock_get_irqsave(&nklock, vfile_schedstat_lock_s);
   return 0;
}
 
static void vfile_schedstat_put_lock(struct xnvfile *vfile)
{
   xnlock_put_irqrestore(&nklock, vfile_schedstat_lock_s);
   xnintr_put_query_lock();
}
 
static struct xnvfile_lock_ops vfile_schedstat_lockops = {
   .get = vfile_schedstat_get_lock,
   .put = vfile_schedstat_put_lock,
};
 
struct vfile_schedstat_priv {
   int irq;
   struct xnthread *curr;
   struct xnintr_iterator intr_it;
};
 
struct vfile_schedstat_data {
   int cpu;
   pid_t pid;
   int state;
   char name[XNOBJECT_NAME_LEN];
   unsigned long ssw;
   unsigned long csw;
   unsigned long xsc;
   unsigned long pf;
   xnticks_t exectime_period;
   xnticks_t account_period;
   xnticks_t exectime_total;
   struct xnsched_class *sched_class;
   xnticks_t period;
   int cprio;
};
 
static struct xnvfile_snapshot_ops vfile_schedstat_ops;
 
static struct xnvfile_snapshot schedstat_vfile = {
   .privsz = sizeof(struct vfile_schedstat_priv),
   .datasz = sizeof(struct vfile_schedstat_data),
   .tag = &nkthreadlist_tag,
   .ops = &vfile_schedstat_ops,
   .entry = { .lockops = &vfile_schedstat_lockops },
};
 
static int vfile_schedstat_rewind(struct xnvfile_snapshot_iterator *it)
{
   struct vfile_schedstat_priv *priv = xnvfile_iterator_priv(it);
   int irqnr;
 
   /*
    * The activity numbers on each valid interrupt descriptor are
    * grouped under a pseudo-thread.
    */
   priv->curr = list_first_entry(&nkthreadq, struct xnthread, glink);
   priv->irq = 0;
   irqnr = xnintr_query_init(&priv->intr_it) * num_online_cpus();
 
   return irqnr + cobalt_nrthreads;
}
 
static int vfile_schedstat_next(struct xnvfile_snapshot_iterator *it,
               void *data)
{
   struct vfile_schedstat_priv *priv = xnvfile_iterator_priv(it);
   struct vfile_schedstat_data *p = data;
   struct xnthread *thread;
   struct xnsched *sched;
   xnticks_t period;
   int __maybe_unused ret;
 
   if (priv->curr == NULL)
       /*
        * We are done with actual threads, scan interrupt
        * descriptors.
        */
       goto scan_irqs;
 
   thread = priv->curr;
   if (list_is_last(&thread->glink, &nkthreadq))
       priv->curr = NULL;
   else
       priv->curr = list_next_entry(thread, glink);
 
   sched = thread->sched;
   p->cpu = xnsched_cpu(sched);
   p->pid = xnthread_host_pid(thread);
   memcpy(p->name, thread->name, sizeof(p->name));
   p->state = xnthread_get_state(thread);
   if (thread->lock_count > 0)
       p->state |= XNLOCK;
   p->ssw = xnstat_counter_get(&thread->stat.ssw);
   p->csw = xnstat_counter_get(&thread->stat.csw);
   p->xsc = xnstat_counter_get(&thread->stat.xsc);
   p->pf = xnstat_counter_get(&thread->stat.pf);
   p->sched_class = thread->sched_class;
   p->cprio = thread->cprio;
   p->period = xnthread_get_period(thread);
 
   period = sched->last_account_switch - thread->stat.lastperiod.start;
   if (period == 0 && thread == sched->curr) {
       p->exectime_period = 1;
       p->account_period = 1;
   } else {
       p->exectime_period = thread->stat.account.total -
           thread->stat.lastperiod.total;
       p->account_period = period;
   }
   p->exectime_total = thread->stat.account.total;
   thread->stat.lastperiod.total = thread->stat.account.total;
   thread->stat.lastperiod.start = sched->last_account_switch;
 
   return 1;
 
scan_irqs:
#ifdef CONFIG_XENO_OPT_STATS_IRQS
   if (priv->irq >= PIPELINE_NR_IRQS)
       return 0;    /* All done. */
 
   ret = xnintr_query_next(priv->irq, &priv->intr_it, p->name);
   if (ret) {
       if (ret == -EAGAIN)
           xnvfile_touch(it->vfile); /* force rewind. */
       priv->irq++;
       return VFILE_SEQ_SKIP;
   }
 
   if (!xnsched_supported_cpu(priv->intr_it.cpu))
       return VFILE_SEQ_SKIP;
 
   p->cpu = priv->intr_it.cpu;
   p->csw = priv->intr_it.hits;
   p->exectime_period = priv->intr_it.exectime_period;
   p->account_period = priv->intr_it.account_period;
   p->exectime_total = priv->intr_it.exectime_total;
   p->pid = 0;
   p->state =  0;
   p->ssw = 0;
   p->xsc = 0;
   p->pf = 0;
   p->sched_class = &xnsched_class_idle;
   p->cprio = 0;
   p->period = 0;
 
   return 1;
#else /* !CONFIG_XENO_OPT_STATS_IRQS */
   return 0;
#endif /* !CONFIG_XENO_OPT_STATS_IRQS */
}
 
static int vfile_schedstat_show(struct xnvfile_snapshot_iterator *it,
               void *data)
{
   struct vfile_schedstat_data *p = data;
   int usage = 0;
 
   if (p == NULL)
       xnvfile_printf(it,
                  "%-3s  %-6s %-10s %-10s %-10s %-4s  %-8s  %5s"
                  "  %s\n",
                  "CPU", "PID", "MSW", "CSW", "XSC", "PF", "STAT", "%CPU",
                  "NAME");
   else {
       if (p->account_period) {
           while (p->account_period > 0xffffffffUL) {
               p->exectime_period >>= 16;
               p->account_period >>= 16;
           }
           usage = xnarch_ulldiv(p->exectime_period * 1000LL +
                         (p->account_period >> 1),
                         p->account_period, NULL);
       }
       xnvfile_printf(it,
                  "%3u  %-6d %-10lu %-10lu %-10lu %-4lu  %.8x  %3u.%u"
                  "  %s%s%s\n",
                  p->cpu, p->pid, p->ssw, p->csw, p->xsc, p->pf, p->state,
                  usage / 10, usage % 10,
                  (p->state & XNUSER) ? "" : "[",
                  p->name,
                  (p->state & XNUSER) ? "" : "]");
   }
 
   return 0;
}
 
static int vfile_schedacct_show(struct xnvfile_snapshot_iterator *it,
               void *data)
{
   struct vfile_schedstat_data *p = data;
 
   if (p == NULL)
       return 0;
 
   xnvfile_printf(it, "%u %d %lu %lu %lu %lu %.8x %Lu %Lu %Lu %s %s %d %Lu\n",
              p->cpu, p->pid, p->ssw, p->csw, p->xsc, p->pf, p->state,
              xnclock_ticks_to_ns(&nkclock, p->account_period),
              xnclock_ticks_to_ns(&nkclock, p->exectime_period),
              xnclock_ticks_to_ns(&nkclock, p->exectime_total),
              p->name,
              p->sched_class->name,
              p->cprio,
              p->period);
 
   return 0;
}
 
static struct xnvfile_snapshot_ops vfile_schedstat_ops = {
   .rewind = vfile_schedstat_rewind,
   .next = vfile_schedstat_next,
   .show = vfile_schedstat_show,
};
 
/*
 * An accounting vfile is a thread statistics vfile in disguise with a
 * different output format, which is parser-friendly.
 */
static struct xnvfile_snapshot_ops vfile_schedacct_ops;
 
static struct xnvfile_snapshot schedacct_vfile = {
   .privsz = sizeof(struct vfile_schedstat_priv),
   .datasz = sizeof(struct vfile_schedstat_data),
   .tag = &nkthreadlist_tag,
   .ops = &vfile_schedacct_ops,
};
 
static struct xnvfile_snapshot_ops vfile_schedacct_ops = {
   .rewind = vfile_schedstat_rewind,
   .next = vfile_schedstat_next,
   .show = vfile_schedacct_show,
};
 
#endif /* CONFIG_XENO_OPT_STATS */
 
#ifdef CONFIG_SMP
 
static int affinity_vfile_show(struct xnvfile_regular_iterator *it,
                  void *data)
{
   unsigned long val = 0;
   int cpu;
 
   for (cpu = 0; cpu < nr_cpumask_bits; cpu++)
       if (cpumask_test_cpu(cpu, &cobalt_cpu_affinity))
           val |= (1UL << cpu);
 
   xnvfile_printf(it, "%08lx\n", val);
 
   return 0;
}
 
static ssize_t affinity_vfile_store(struct xnvfile_input *input)
{
   cpumask_t affinity;
   ssize_t ret;
   long val;
   int cpu;
   spl_t s;
 
   ret = xnvfile_get_integer(input, &val);
   if (ret < 0)
       return ret;
 
   if (val == 0)
       affinity = xnsched_realtime_cpus; /* Reset to default. */
   else {
       cpumask_clear(&affinity);
       for (cpu = 0; cpu < nr_cpumask_bits; cpu++, val >>= 1) {
           if (val & 1) {
               /*
                * The new dynamic affinity must be a strict
                * subset of the static set of supported CPUs.
                */
               if (!cpumask_test_cpu(cpu,
                             &xnsched_realtime_cpus))
                   return -EINVAL;
               cpumask_set_cpu(cpu, &affinity);
           }
       }
   }
 
   cpumask_and(&affinity, &affinity, cpu_online_mask);
   if (cpumask_empty(&affinity))
       return -EINVAL;
 
   xnlock_get_irqsave(&nklock, s);
   cobalt_cpu_affinity = affinity;
   xnlock_put_irqrestore(&nklock, s);
 
   return ret;
}
 
static struct xnvfile_regular_ops affinity_vfile_ops = {
   .show = affinity_vfile_show,
   .store = affinity_vfile_store,
};
 
static struct xnvfile_regular affinity_vfile = {
   .ops = &affinity_vfile_ops,
};
 
#endif /* CONFIG_SMP */
 
int xnsched_init_proc(void)
{
   struct xnsched_class *p;
   int ret;
 
   ret = xnvfile_init_dir("sched", &sched_vfroot, &cobalt_vfroot);
   if (ret)
       return ret;
 
   ret = xnvfile_init_snapshot("threads", &schedlist_vfile, &sched_vfroot);
   if (ret)
       return ret;
 
   for_each_xnsched_class(p) {
       if (p->sched_init_vfile) {
           ret = p->sched_init_vfile(p, &sched_vfroot);
           if (ret)
               return ret;
       }
   }
 
#ifdef CONFIG_XENO_OPT_STATS
   ret = xnvfile_init_snapshot("stat", &schedstat_vfile, &sched_vfroot);
   if (ret)
       return ret;
   ret = xnvfile_init_snapshot("acct", &schedacct_vfile, &sched_vfroot);
   if (ret)
       return ret;
#endif /* CONFIG_XENO_OPT_STATS */
 
#ifdef CONFIG_SMP
   xnvfile_init_regular("affinity", &affinity_vfile, &cobalt_vfroot);
#endif /* CONFIG_SMP */
 
   return 0;
}
 
void xnsched_cleanup_proc(void)
{
   struct xnsched_class *p;
 
   for_each_xnsched_class(p) {
       if (p->sched_cleanup_vfile)
           p->sched_cleanup_vfile(p);
   }
 
#ifdef CONFIG_SMP
   xnvfile_destroy_regular(&affinity_vfile);
#endif /* CONFIG_SMP */
#ifdef CONFIG_XENO_OPT_STATS
   xnvfile_destroy_snapshot(&schedacct_vfile);
   xnvfile_destroy_snapshot(&schedstat_vfile);
#endif /* CONFIG_XENO_OPT_STATS */
   xnvfile_destroy_snapshot(&schedlist_vfile);
   xnvfile_destroy_dir(&sched_vfroot);
}
 
#endif /* CONFIG_XENO_OPT_VFILE */
 
/** @} */