forked from becloudready/git-tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevi_06-26-2019
More file actions
2750 lines (2750 loc) · 167 KB
/
devi_06-26-2019
File metadata and controls
2750 lines (2750 loc) · 167 KB
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
/etc/cloud/templates/timesyncd.conf.tmpl
/etc/update-motd.d
/etc/update-motd.d/70-available-updates
/etc/yum/pluginconf.d/update-motd.conf
/etc/selinux/targeted/active/modules/100/tvtime
/etc/.updated
/etc/systemd/system/multi-user.target.wants/update-motd.service
/etc/systemd/system/system-update.target.wants
/etc/dbus-1/system.d/org.freedesktop.timedate1.conf
/etc/localtime
/etc/cron.d/update-motd
/etc/adjtime
/etc/security/time.conf
/etc/setuptool.d/99timeconfig
/etc/updatedb.conf
/proc/sys/fs/lease-break-time
/proc/sys/fs/xfs/inherit_noatime
/proc/sys/fs/xfs/speculative_cow_prealloc_lifetime
/proc/sys/fs/xfs/speculative_prealloc_lifetime
/proc/sys/kernel/hung_task_timeout_secs
/proc/sys/kernel/perf_cpu_time_max_percent
/proc/sys/kernel/sched_rr_timeslice_ms
/proc/sys/kernel/sched_rt_runtime_us
/proc/sys/kernel/sched_time_avg_ms
/proc/sys/kernel/timer_migration
/proc/sys/net/core/xfrm_aevent_etime
/proc/sys/net/ipv4/ipfrag_time
/proc/sys/net/ipv4/neigh/default/base_reachable_time
/proc/sys/net/ipv4/neigh/default/base_reachable_time_ms
/proc/sys/net/ipv4/neigh/default/delay_first_probe_time
/proc/sys/net/ipv4/neigh/default/gc_stale_time
/proc/sys/net/ipv4/neigh/default/locktime
/proc/sys/net/ipv4/neigh/default/retrans_time
/proc/sys/net/ipv4/neigh/default/retrans_time_ms
/proc/sys/net/ipv4/neigh/eth0/base_reachable_time
/proc/sys/net/ipv4/neigh/eth0/base_reachable_time_ms
/proc/sys/net/ipv4/neigh/eth0/delay_first_probe_time
/proc/sys/net/ipv4/neigh/eth0/gc_stale_time
/proc/sys/net/ipv4/neigh/eth0/locktime
/proc/sys/net/ipv4/neigh/eth0/retrans_time
/proc/sys/net/ipv4/neigh/eth0/retrans_time_ms
/proc/sys/net/ipv4/neigh/lo/base_reachable_time
/proc/sys/net/ipv4/neigh/lo/base_reachable_time_ms
/proc/sys/net/ipv4/neigh/lo/delay_first_probe_time
/proc/sys/net/ipv4/neigh/lo/gc_stale_time
/proc/sys/net/ipv4/neigh/lo/locktime
/proc/sys/net/ipv4/neigh/lo/retrans_time
/proc/sys/net/ipv4/neigh/lo/retrans_time_ms
/proc/sys/net/ipv4/route/gc_timeout
/proc/sys/net/ipv4/tcp_fastopen_blackhole_timeout_sec
/proc/sys/net/ipv4/tcp_fin_timeout
/proc/sys/net/ipv4/tcp_keepalive_time
/proc/sys/net/ipv4/tcp_thin_linear_timeouts
/proc/sys/net/ipv4/tcp_timestamps
/proc/sys/net/ipv6/ip6frag_time
/proc/sys/net/ipv6/neigh/default/base_reachable_time
/proc/sys/net/ipv6/neigh/default/base_reachable_time_ms
/proc/sys/net/ipv6/neigh/default/delay_first_probe_time
/proc/sys/net/ipv6/neigh/default/gc_stale_time
/proc/sys/net/ipv6/neigh/default/locktime
/proc/sys/net/ipv6/neigh/default/retrans_time
/proc/sys/net/ipv6/neigh/default/retrans_time_ms
/proc/sys/net/ipv6/neigh/eth0/base_reachable_time
/proc/sys/net/ipv6/neigh/eth0/base_reachable_time_ms
/proc/sys/net/ipv6/neigh/eth0/delay_first_probe_time
/proc/sys/net/ipv6/neigh/eth0/gc_stale_time
/proc/sys/net/ipv6/neigh/eth0/locktime
/proc/sys/net/ipv6/neigh/eth0/retrans_time
/proc/sys/net/ipv6/neigh/eth0/retrans_time_ms
/proc/sys/net/ipv6/neigh/lo/base_reachable_time
/proc/sys/net/ipv6/neigh/lo/base_reachable_time_ms
/proc/sys/net/ipv6/neigh/lo/delay_first_probe_time
/proc/sys/net/ipv6/neigh/lo/gc_stale_time
/proc/sys/net/ipv6/neigh/lo/locktime
/proc/sys/net/ipv6/neigh/lo/retrans_time
/proc/sys/net/ipv6/neigh/lo/retrans_time_ms
/proc/sys/net/ipv6/route/gc_timeout
/proc/sys/sunrpc/tcp_fin_timeout
/proc/sys/vm/dirtytime_expire_seconds
/proc/uptime
/proc/timer_list
/proc/1/timers
/proc/1/timerslack_ns
/proc/2/timers
/proc/2/timerslack_ns
/proc/4/timers
/proc/4/timerslack_ns
/proc/6/timers
/proc/6/timerslack_ns
/proc/7/timers
/proc/7/timerslack_ns
/proc/8/timers
/proc/8/timerslack_ns
/proc/9/timers
/proc/9/timerslack_ns
/proc/10/timers
/proc/10/timerslack_ns
/proc/11/timers
/proc/11/timerslack_ns
/proc/12/timers
/proc/12/timerslack_ns
/proc/13/timers
/proc/13/timerslack_ns
/proc/14/timers
/proc/14/timerslack_ns
/proc/20/timers
/proc/20/timerslack_ns
/proc/21/timers
/proc/21/timerslack_ns
/proc/171/timers
/proc/171/timerslack_ns
/proc/172/timers
/proc/172/timerslack_ns
/proc/173/timers
/proc/173/timerslack_ns
/proc/175/timers
/proc/175/timerslack_ns
/proc/176/timers
/proc/176/timerslack_ns
/proc/177/timers
/proc/177/timerslack_ns
/proc/178/timers
/proc/178/timerslack_ns
/proc/179/timers
/proc/179/timerslack_ns
/proc/181/timers
/proc/181/timerslack_ns
/proc/534/timers
/proc/534/timerslack_ns
/proc/537/timers
/proc/537/timerslack_ns
/proc/542/timers
/proc/542/timerslack_ns
/proc/683/timers
/proc/683/timerslack_ns
/proc/689/timers
/proc/689/timerslack_ns
/proc/821/timers
/proc/821/timerslack_ns
/proc/871/timers
/proc/871/timerslack_ns
/proc/899/timers
/proc/899/timerslack_ns
/proc/1735/timers
/proc/1735/timerslack_ns
/proc/1750/timers
/proc/1750/timerslack_ns
/proc/1751/timers
/proc/1751/timerslack_ns
/proc/1755/timers
/proc/1755/timerslack_ns
/proc/1756/timers
/proc/1756/timerslack_ns
/proc/1770/timers
/proc/1770/timerslack_ns
/proc/1853/timers
/proc/1853/timerslack_ns
/proc/1854/timers
/proc/1854/timerslack_ns
/proc/1856/timers
/proc/1856/timerslack_ns
/proc/1857/timers
/proc/1857/timerslack_ns
/proc/1858/timers
/proc/1858/timerslack_ns
/proc/1859/timers
/proc/1859/timerslack_ns
/proc/1860/timers
/proc/1860/timerslack_ns
/proc/1861/timers
/proc/1861/timerslack_ns
/proc/1862/timers
/proc/1862/timerslack_ns
/proc/1863/timers
/proc/1863/timerslack_ns
/proc/1864/timers
/proc/1864/timerslack_ns
/proc/1929/timers
/proc/1929/timerslack_ns
/proc/1943/timers
/proc/1943/timerslack_ns
/proc/1946/timers
/proc/1946/timerslack_ns
/proc/1961/timers
/proc/1961/timerslack_ns
/proc/2428/timers
/proc/2428/timerslack_ns
/proc/2463/timers
/proc/2463/timerslack_ns
/proc/2464/timers
/proc/2464/timerslack_ns
/proc/2644/timers
/proc/2644/timerslack_ns
/proc/2645/timers
/proc/2645/timerslack_ns
/proc/2648/timers
/proc/2648/timerslack_ns
/proc/2682/timers
/proc/2682/timerslack_ns
/proc/2685/timers
/proc/2685/timerslack_ns
/proc/2687/timers
/proc/2687/timerslack_ns
/proc/2691/timers
/proc/2691/timerslack_ns
/proc/2692/timers
/proc/2692/timerslack_ns
/proc/2696/timers
/proc/2696/timerslack_ns
/proc/2711/timers
/proc/2711/timerslack_ns
/proc/2903/timers
/proc/2903/timerslack_ns
/proc/3029/timers
/proc/3029/timerslack_ns
/proc/3165/timers
/proc/3165/timerslack_ns
/proc/3167/timers
/proc/3167/timerslack_ns
/proc/3216/timers
/proc/3216/timerslack_ns
/proc/3218/timers
/proc/3218/timerslack_ns
/proc/3230/timers
/proc/3230/timerslack_ns
/proc/3235/timers
/proc/3235/timerslack_ns
/proc/3255/timers
/proc/3255/timerslack_ns
/proc/3256/timers
/proc/3256/timerslack_ns
/proc/3343/timers
/proc/3343/timerslack_ns
/proc/4537/timers
/proc/4537/timerslack_ns
/proc/4573/timers
/proc/4573/timerslack_ns
/proc/4574/timers
/proc/4574/timerslack_ns
/proc/6702/timers
/proc/6702/timerslack_ns
/proc/6742/timers
/proc/6742/timerslack_ns
/proc/6743/timers
/proc/6743/timerslack_ns
/proc/7202/timers
/proc/7202/timerslack_ns
/proc/7723/timers
/proc/7723/timerslack_ns
/proc/7758/timers
/proc/7758/timerslack_ns
/proc/7759/timers
/proc/7759/timerslack_ns
/proc/8098/timers
/proc/8098/timerslack_ns
/proc/8423/timers
/proc/8423/timerslack_ns
/proc/8689/timers
/proc/8689/timerslack_ns
/proc/8854/timers
/proc/8854/timerslack_ns
/proc/8855/timers
/proc/8855/timerslack_ns
/proc/18504/timers
/proc/18504/timerslack_ns
/proc/31113/timers
/proc/31113/timerslack_ns
/sys/kernel/slab/:d-0001024/validate
/sys/kernel/slab/TCPv6/validate
/sys/kernel/slab/:0002632/validate
/sys/kernel/slab/rpc_inode_cache/validate
/sys/kernel/slab/:0000192/validate
/sys/kernel/slab/:0006144/validate
/sys/kernel/slab/:d-0000096/validate
/sys/kernel/slab/:0000512/validate
/sys/kernel/slab/:A-0000192/validate
/sys/kernel/slab/:0000200/validate
/sys/kernel/slab/:0000088/validate
/sys/kernel/slab/hugetlbfs_inode_cache/validate
/sys/kernel/slab/:0001024/validate
/sys/kernel/slab/:A-0000200/validate
/sys/kernel/slab/:A-0001024/validate
/sys/kernel/slab/:0000152/validate
/sys/kernel/slab/:0000096/validate
/sys/kernel/slab/:0000416/validate
/sys/kernel/slab/kmem_cache_node/validate
/sys/kernel/slab/sock_inode_cache/validate
/sys/kernel/slab/:0000104/validate
/sys/kernel/slab/:0000048/validate
/sys/kernel/slab/:d-0000008/validate
/sys/kernel/slab/:d-0008192/validate
/sys/kernel/slab/:0000160/validate
/sys/kernel/slab/:0002232/validate
/sys/kernel/slab/:d-0000064/validate
/sys/kernel/slab/:0000480/validate
/sys/kernel/slab/:0000056/validate
/sys/kernel/slab/:d-0000016/validate
/sys/kernel/slab/kmem_cache/validate
/sys/kernel/slab/radix_tree_node/validate
/sys/kernel/slab/:0000008/validate
/sys/kernel/slab/dax_cache/validate
/sys/kernel/slab/:0008192/validate
/sys/kernel/slab/:0000120/validate
/sys/kernel/slab/:0000064/validate
/sys/kernel/slab/:0000328/validate
/sys/kernel/slab/proc_inode_cache/validate
/sys/kernel/slab/:0000384/validate
/sys/kernel/slab/:A-0000064/validate
/sys/kernel/slab/:0000704/validate
/sys/kernel/slab/:0000016/validate
/sys/kernel/slab/anon_vma/validate
/sys/kernel/slab/:a-0000104/validate
/sys/kernel/slab/:0000072/validate
/sys/kernel/slab/posix_timers_cache
/sys/kernel/slab/:0002144/validate
/sys/kernel/slab/:d-0000032/validate
/sys/kernel/slab/tw_sock_TCPv6/validate
/sys/kernel/slab/:d-0002048/validate
/sys/kernel/slab/:A-0000704/validate
/sys/kernel/slab/:0000024/validate
/sys/kernel/slab/:0000080/validate
/sys/kernel/slab/:A-0009664/validate
/sys/kernel/slab/:0000032/validate
/sys/kernel/slab/inode_cache/validate
/sys/kernel/slab/:0002048/validate
/sys/kernel/slab/:0001280/validate
/sys/kernel/slab/TCP/validate
/sys/kernel/slab/shmem_inode_cache/validate
/sys/kernel/slab/request_sock_TCPv6/validate
/sys/kernel/slab/:d-0000256/validate
/sys/kernel/slab/:A-0002048/validate
/sys/kernel/slab/request_sock_TCP/validate
/sys/kernel/slab/:0000672/validate
/sys/kernel/slab/:0000040/validate
/sys/kernel/slab/:0002112/validate
/sys/kernel/slab/:0000248/validate
/sys/kernel/slab/tw_sock_TCP/validate
/sys/kernel/slab/xfs_inode/validate
/sys/kernel/slab/:0003312/validate
/sys/kernel/slab/:0000256/validate
/sys/kernel/slab/sighand_cache/validate
/sys/kernel/slab/bdev_cache/validate
/sys/kernel/slab/mqueue_inode_cache/validate
/sys/kernel/slab/:d-0004096/validate
/sys/kernel/slab/:0000320/validate
/sys/kernel/slab/:0000264/validate
/sys/kernel/slab/:0000528/validate
/sys/kernel/slab/:0001088/validate
/sys/kernel/slab/:0000640/validate
/sys/kernel/slab/userfaultfd_ctx_cache/validate
/sys/kernel/slab/:0000216/validate
/sys/kernel/slab/:0000960/validate
/sys/kernel/slab/:0004096/validate
/sys/kernel/slab/:0001152/validate
/sys/kernel/slab/:aA-0000192/validate
/sys/kernel/slab/:0000168/validate
/sys/kernel/slab/:d-0000128/validate
/sys/kernel/slab/:a-0000256/validate
/sys/kernel/slab/:0000488/validate
/sys/kernel/slab/:0000232/validate
/sys/kernel/slab/:d-0000192/validate
/sys/kernel/slab/iint_cache/validate
/sys/kernel/slab/:d-0000512/validate
/sys/kernel/slab/:0000128/validate
/sys/kernel/slab/kernfs_node_cache/validate
/sys/kernel/slab/:0000240/validate
/sys/kernel/slab/:0000184/validate
/sys/kernel/slab/:0000448/validate
/sys/kernel/slab/:A-0000128/validate
/sys/kernel/security/ima/runtime_measurements_count
/sys/kernel/security/ima/ascii_runtime_measurements
/sys/kernel/security/ima/binary_runtime_measurements
/sys/kernel/debug/sleep_time
/sys/kernel/debug/cleancache/invalidates
/sys/kernel/debug/frontswap/invalidates
/sys/kernel/debug/tracing/events/xfs/xfs_bmap_pre_update
/sys/kernel/debug/tracing/events/xfs/xfs_bmap_post_update
/sys/kernel/debug/tracing/events/xfs/xfs_update_time
/sys/kernel/debug/tracing/events/xfs/xfs_invalidatepage
/sys/kernel/debug/tracing/events/xfs/xfs_rmap_update
/sys/kernel/debug/tracing/events/xfs/xfs_rmap_update_error
/sys/kernel/debug/tracing/events/xfs/xfs_rmap_find_left_neighbor_candidate
/sys/kernel/debug/tracing/events/xfs/xfs_rmap_lookup_le_range_candidate
/sys/kernel/debug/tracing/events/xfs/xfs_refcount_update
/sys/kernel/debug/tracing/events/xfs/xfs_refcount_update_error
/sys/kernel/debug/tracing/events/xfs/xfs_reflink_update_inode_size
/sys/kernel/debug/tracing/events/xfs/xfs_reflink_update_inode_size_error
/sys/kernel/debug/tracing/events/scsi/scsi_dispatch_cmd_timeout
/sys/kernel/debug/tracing/events/fib/fib_validate_source
/sys/kernel/debug/tracing/events/bridge/br_fdb_update
/sys/kernel/debug/tracing/events/thermal/cdev_update
/sys/kernel/debug/tracing/events/wbt/wbt_timer
/sys/kernel/debug/tracing/events/filelock/time_out_leases
/sys/kernel/debug/tracing/events/writeback/writeback_lazytime
/sys/kernel/debug/tracing/events/writeback/writeback_lazytime_iput
/sys/kernel/debug/tracing/events/oom/oom_score_adj_update
/sys/kernel/debug/tracing/events/bpf/bpf_map_update_elem
/sys/kernel/debug/tracing/events/power/pm_qos_update_request
/sys/kernel/debug/tracing/events/power/pm_qos_update_request_timeout
/sys/kernel/debug/tracing/events/power/pm_qos_update_target
/sys/kernel/debug/tracing/events/power/pm_qos_update_flags
/sys/kernel/debug/tracing/events/power/dev_pm_qos_update_request
/sys/kernel/debug/tracing/events/alarmtimer
/sys/kernel/debug/tracing/events/alarmtimer/alarmtimer_suspend
/sys/kernel/debug/tracing/events/alarmtimer/alarmtimer_fired
/sys/kernel/debug/tracing/events/alarmtimer/alarmtimer_start
/sys/kernel/debug/tracing/events/alarmtimer/alarmtimer_cancel
/sys/kernel/debug/tracing/events/timer
/sys/kernel/debug/tracing/events/timer/timer_init
/sys/kernel/debug/tracing/events/timer/timer_start
/sys/kernel/debug/tracing/events/timer/timer_expire_entry
/sys/kernel/debug/tracing/events/timer/timer_expire_exit
/sys/kernel/debug/tracing/events/timer/timer_cancel
/sys/kernel/debug/tracing/events/timer/hrtimer_init
/sys/kernel/debug/tracing/events/timer/hrtimer_start
/sys/kernel/debug/tracing/events/timer/hrtimer_expire_entry
/sys/kernel/debug/tracing/events/timer/hrtimer_expire_exit
/sys/kernel/debug/tracing/events/timer/hrtimer_cancel
/sys/kernel/debug/tracing/events/timer/itimer_state
/sys/kernel/debug/tracing/events/timer/itimer_expire
/sys/kernel/debug/tracing/events/sched/sched_stat_runtime
/sys/kernel/debug/tracing/events/irq_vectors/local_timer_entry
/sys/kernel/debug/tracing/events/irq_vectors/local_timer_exit
/sys/kernel/debug/tracing/events/syscalls/sys_enter_mq_timedsend
/sys/kernel/debug/tracing/events/syscalls/sys_exit_mq_timedsend
/sys/kernel/debug/tracing/events/syscalls/sys_enter_mq_timedreceive
/sys/kernel/debug/tracing/events/syscalls/sys_exit_mq_timedreceive
/sys/kernel/debug/tracing/events/syscalls/sys_enter_semtimedop
/sys/kernel/debug/tracing/events/syscalls/sys_exit_semtimedop
/sys/kernel/debug/tracing/events/syscalls/sys_enter_timerfd_create
/sys/kernel/debug/tracing/events/syscalls/sys_exit_timerfd_create
/sys/kernel/debug/tracing/events/syscalls/sys_enter_timerfd_settime
/sys/kernel/debug/tracing/events/syscalls/sys_exit_timerfd_settime
/sys/kernel/debug/tracing/events/syscalls/sys_enter_timerfd_gettime
/sys/kernel/debug/tracing/events/syscalls/sys_exit_timerfd_gettime
/sys/kernel/debug/tracing/events/syscalls/sys_enter_utime
/sys/kernel/debug/tracing/events/syscalls/sys_exit_utime
/sys/kernel/debug/tracing/events/syscalls/sys_enter_utimensat
/sys/kernel/debug/tracing/events/syscalls/sys_exit_utimensat
/sys/kernel/debug/tracing/events/syscalls/sys_enter_futimesat
/sys/kernel/debug/tracing/events/syscalls/sys_exit_futimesat
/sys/kernel/debug/tracing/events/syscalls/sys_enter_utimes
/sys/kernel/debug/tracing/events/syscalls/sys_exit_utimes
/sys/kernel/debug/tracing/events/syscalls/sys_enter_getitimer
/sys/kernel/debug/tracing/events/syscalls/sys_exit_getitimer
/sys/kernel/debug/tracing/events/syscalls/sys_enter_setitimer
/sys/kernel/debug/tracing/events/syscalls/sys_exit_setitimer
/sys/kernel/debug/tracing/events/syscalls/sys_enter_timer_create
/sys/kernel/debug/tracing/events/syscalls/sys_exit_timer_create
/sys/kernel/debug/tracing/events/syscalls/sys_enter_timer_gettime
/sys/kernel/debug/tracing/events/syscalls/sys_exit_timer_gettime
/sys/kernel/debug/tracing/events/syscalls/sys_enter_timer_getoverrun
/sys/kernel/debug/tracing/events/syscalls/sys_exit_timer_getoverrun
/sys/kernel/debug/tracing/events/syscalls/sys_enter_timer_settime
/sys/kernel/debug/tracing/events/syscalls/sys_exit_timer_settime
/sys/kernel/debug/tracing/events/syscalls/sys_enter_timer_delete
/sys/kernel/debug/tracing/events/syscalls/sys_exit_timer_delete
/sys/kernel/debug/tracing/events/syscalls/sys_enter_clock_settime
/sys/kernel/debug/tracing/events/syscalls/sys_exit_clock_settime
/sys/kernel/debug/tracing/events/syscalls/sys_enter_clock_gettime
/sys/kernel/debug/tracing/events/syscalls/sys_exit_clock_gettime
/sys/kernel/debug/tracing/events/syscalls/sys_enter_clock_adjtime
/sys/kernel/debug/tracing/events/syscalls/sys_exit_clock_adjtime
/sys/kernel/debug/tracing/events/syscalls/sys_enter_time
/sys/kernel/debug/tracing/events/syscalls/sys_exit_time
/sys/kernel/debug/tracing/events/syscalls/sys_enter_gettimeofday
/sys/kernel/debug/tracing/events/syscalls/sys_exit_gettimeofday
/sys/kernel/debug/tracing/events/syscalls/sys_enter_settimeofday
/sys/kernel/debug/tracing/events/syscalls/sys_exit_settimeofday
/sys/kernel/debug/tracing/events/syscalls/sys_enter_adjtimex
/sys/kernel/debug/tracing/events/syscalls/sys_exit_adjtimex
/sys/kernel/debug/tracing/events/syscalls/sys_enter_times
/sys/kernel/debug/tracing/events/syscalls/sys_exit_times
/sys/kernel/debug/tracing/events/syscalls/sys_enter_rt_sigtimedwait
/sys/kernel/debug/tracing/events/syscalls/sys_exit_rt_sigtimedwait
/sys/kernel/debug/tracing/options/graph-time
/sys/kernel/debug/tracing/options/sleep-time
/sys/kernel/debug/tracing/options/funcgraph-abstime
/sys/power/pm_freeze_timeout
/sys/class/firmware/timeout
/sys/devices/software/power/runtime_active_time
/sys/devices/software/power/runtime_status
/sys/devices/software/power/runtime_suspended_time
/sys/devices/pnp0/00:07/power/runtime_active_time
/sys/devices/pnp0/00:07/power/runtime_status
/sys/devices/pnp0/00:07/power/runtime_suspended_time
/sys/devices/pnp0/00:05/power/runtime_active_time
/sys/devices/pnp0/00:05/power/runtime_status
/sys/devices/pnp0/00:05/power/runtime_suspended_time
/sys/devices/pnp0/power/runtime_active_time
/sys/devices/pnp0/power/runtime_status
/sys/devices/pnp0/power/runtime_suspended_time
/sys/devices/pnp0/00:03/power/runtime_active_time
/sys/devices/pnp0/00:03/power/runtime_status
/sys/devices/pnp0/00:03/power/runtime_suspended_time
/sys/devices/pnp0/00:01/power/runtime_active_time
/sys/devices/pnp0/00:01/power/runtime_status
/sys/devices/pnp0/00:01/power/runtime_suspended_time
/sys/devices/pnp0/00:06/power/runtime_active_time
/sys/devices/pnp0/00:06/power/runtime_status
/sys/devices/pnp0/00:06/power/runtime_suspended_time
/sys/devices/pnp0/00:06/tty/ttyS0/power/runtime_active_time
/sys/devices/pnp0/00:06/tty/ttyS0/power/wakeup_total_time_ms
/sys/devices/pnp0/00:06/tty/ttyS0/power/runtime_status
/sys/devices/pnp0/00:06/tty/ttyS0/power/runtime_suspended_time
/sys/devices/pnp0/00:06/tty/ttyS0/power/wakeup_max_time_ms
/sys/devices/pnp0/00:06/tty/ttyS0/power/wakeup_last_time_ms
/sys/devices/pnp0/00:04/power/runtime_active_time
/sys/devices/pnp0/00:04/power/runtime_status
/sys/devices/pnp0/00:04/power/runtime_suspended_time
/sys/devices/pnp0/00:02/power/runtime_active_time
/sys/devices/pnp0/00:02/power/wakeup_total_time_ms
/sys/devices/pnp0/00:02/power/runtime_status
/sys/devices/pnp0/00:02/power/runtime_suspended_time
/sys/devices/pnp0/00:02/power/wakeup_max_time_ms
/sys/devices/pnp0/00:02/power/wakeup_last_time_ms
/sys/devices/pnp0/00:02/rtc/rtc0/time
/sys/devices/pnp0/00:02/rtc/rtc0/power/runtime_active_time
/sys/devices/pnp0/00:02/rtc/rtc0/power/runtime_status
/sys/devices/pnp0/00:02/rtc/rtc0/power/runtime_suspended_time
/sys/devices/pnp0/00:02/rtc/rtc0/date
/sys/devices/pnp0/00:00/power/runtime_active_time
/sys/devices/pnp0/00:00/power/runtime_status
/sys/devices/pnp0/00:00/power/runtime_suspended_time
/sys/devices/platform/platform-framebuffer.0/power/runtime_active_time
/sys/devices/platform/platform-framebuffer.0/power/runtime_status
/sys/devices/platform/platform-framebuffer.0/power/runtime_suspended_time
/sys/devices/platform/power/runtime_active_time
/sys/devices/platform/power/runtime_status
/sys/devices/platform/power/runtime_suspended_time
/sys/devices/platform/alarmtimer
/sys/devices/platform/alarmtimer/power/runtime_active_time
/sys/devices/platform/alarmtimer/power/runtime_status
/sys/devices/platform/alarmtimer/power/runtime_suspended_time
/sys/devices/platform/serial8250/power/runtime_active_time
/sys/devices/platform/serial8250/power/runtime_status
/sys/devices/platform/serial8250/power/runtime_suspended_time
/sys/devices/platform/serial8250/tty/ttyS2/power/runtime_active_time
/sys/devices/platform/serial8250/tty/ttyS2/power/wakeup_total_time_ms
/sys/devices/platform/serial8250/tty/ttyS2/power/runtime_status
/sys/devices/platform/serial8250/tty/ttyS2/power/runtime_suspended_time
/sys/devices/platform/serial8250/tty/ttyS2/power/wakeup_max_time_ms
/sys/devices/platform/serial8250/tty/ttyS2/power/wakeup_last_time_ms
/sys/devices/platform/serial8250/tty/ttyS3/power/runtime_active_time
/sys/devices/platform/serial8250/tty/ttyS3/power/wakeup_total_time_ms
/sys/devices/platform/serial8250/tty/ttyS3/power/runtime_status
/sys/devices/platform/serial8250/tty/ttyS3/power/runtime_suspended_time
/sys/devices/platform/serial8250/tty/ttyS3/power/wakeup_max_time_ms
/sys/devices/platform/serial8250/tty/ttyS3/power/wakeup_last_time_ms
/sys/devices/platform/serial8250/tty/ttyS1/power/runtime_active_time
/sys/devices/platform/serial8250/tty/ttyS1/power/wakeup_total_time_ms
/sys/devices/platform/serial8250/tty/ttyS1/power/runtime_status
/sys/devices/platform/serial8250/tty/ttyS1/power/runtime_suspended_time
/sys/devices/platform/serial8250/tty/ttyS1/power/wakeup_max_time_ms
/sys/devices/platform/serial8250/tty/ttyS1/power/wakeup_last_time_ms
/sys/devices/platform/i8042/serio0/power/runtime_active_time
/sys/devices/platform/i8042/serio0/power/wakeup_total_time_ms
/sys/devices/platform/i8042/serio0/power/runtime_status
/sys/devices/platform/i8042/serio0/power/runtime_suspended_time
/sys/devices/platform/i8042/serio0/power/wakeup_max_time_ms
/sys/devices/platform/i8042/serio0/power/wakeup_last_time_ms
/sys/devices/platform/i8042/serio0/input/input0/power/runtime_active_time
/sys/devices/platform/i8042/serio0/input/input0/power/runtime_status
/sys/devices/platform/i8042/serio0/input/input0/power/runtime_suspended_time
/sys/devices/platform/i8042/serio0/input/input0/event0/power/runtime_active_time
/sys/devices/platform/i8042/serio0/input/input0/event0/power/runtime_status
/sys/devices/platform/i8042/serio0/input/input0/event0/power/runtime_suspended_time
/sys/devices/platform/i8042/power/runtime_active_time
/sys/devices/platform/i8042/power/runtime_status
/sys/devices/platform/i8042/power/runtime_suspended_time
/sys/devices/platform/i8042/serio1/power/runtime_active_time
/sys/devices/platform/i8042/serio1/power/wakeup_total_time_ms
/sys/devices/platform/i8042/serio1/power/runtime_status
/sys/devices/platform/i8042/serio1/power/runtime_suspended_time
/sys/devices/platform/i8042/serio1/power/wakeup_max_time_ms
/sys/devices/platform/i8042/serio1/power/wakeup_last_time_ms
/sys/devices/platform/i8042/serio1/resync_time
/sys/devices/platform/i8042/serio1/input/input5/power/runtime_active_time
/sys/devices/platform/i8042/serio1/input/input5/power/runtime_status
/sys/devices/platform/i8042/serio1/input/input5/power/runtime_suspended_time
/sys/devices/platform/i8042/serio1/input/input5/event3/power/runtime_active_time
/sys/devices/platform/i8042/serio1/input/input5/event3/power/runtime_status
/sys/devices/platform/i8042/serio1/input/input5/event3/power/runtime_suspended_time
/sys/devices/platform/i8042/serio1/input/input5/mouse0/power/runtime_active_time
/sys/devices/platform/i8042/serio1/input/input5/mouse0/power/runtime_status
/sys/devices/platform/i8042/serio1/input/input5/mouse0/power/runtime_suspended_time
/sys/devices/platform/pcspkr/power/runtime_active_time
/sys/devices/platform/pcspkr/power/runtime_status
/sys/devices/platform/pcspkr/power/runtime_suspended_time
/sys/devices/pci0000:00/0000:00:01.0/power/runtime_active_time
/sys/devices/pci0000:00/0000:00:01.0/power/runtime_status
/sys/devices/pci0000:00/0000:00:01.0/power/runtime_suspended_time
/sys/devices/pci0000:00/0000:00:01.0/PNP0800:00/power/runtime_active_time
/sys/devices/pci0000:00/0000:00:01.0/PNP0800:00/power/runtime_status
/sys/devices/pci0000:00/0000:00:01.0/PNP0800:00/power/runtime_suspended_time
/sys/devices/pci0000:00/power/runtime_active_time
/sys/devices/pci0000:00/power/runtime_status
/sys/devices/pci0000:00/power/runtime_suspended_time
/sys/devices/pci0000:00/0000:00:00.0/power/runtime_active_time
/sys/devices/pci0000:00/0000:00:00.0/power/runtime_status
/sys/devices/pci0000:00/0000:00:00.0/power/runtime_suspended_time
/sys/devices/pci0000:00/pci_bus/0000:00/power/runtime_active_time
/sys/devices/pci0000:00/pci_bus/0000:00/power/runtime_status
/sys/devices/pci0000:00/pci_bus/0000:00/power/runtime_suspended_time
/sys/devices/pci0000:00/0000:00:01.3/power/runtime_active_time
/sys/devices/pci0000:00/0000:00:01.3/power/runtime_status
/sys/devices/pci0000:00/0000:00:01.3/power/runtime_suspended_time
/sys/devices/pci0000:00/0000:00:03.0/power/runtime_active_time
/sys/devices/pci0000:00/0000:00:03.0/power/runtime_status
/sys/devices/pci0000:00/0000:00:03.0/power/runtime_suspended_time
/sys/devices/pci0000:00/0000:00:01.1/ata1/link1/dev1.1/power/runtime_active_time
/sys/devices/pci0000:00/0000:00:01.1/ata1/link1/dev1.1/power/runtime_status
/sys/devices/pci0000:00/0000:00:01.1/ata1/link1/dev1.1/power/runtime_suspended_time
/sys/devices/pci0000:00/0000:00:01.1/ata1/link1/dev1.1/ata_device/dev1.1/power/runtime_active_time
/sys/devices/pci0000:00/0000:00:01.1/ata1/link1/dev1.1/ata_device/dev1.1/power/runtime_status
/sys/devices/pci0000:00/0000:00:01.1/ata1/link1/dev1.1/ata_device/dev1.1/power/runtime_suspended_time
/sys/devices/pci0000:00/0000:00:01.1/ata1/link1/ata_link/link1/power/runtime_active_time
/sys/devices/pci0000:00/0000:00:01.1/ata1/link1/ata_link/link1/power/runtime_status
/sys/devices/pci0000:00/0000:00:01.1/ata1/link1/ata_link/link1/power/runtime_suspended_time
/sys/devices/pci0000:00/0000:00:01.1/ata1/link1/power/runtime_active_time
/sys/devices/pci0000:00/0000:00:01.1/ata1/link1/power/runtime_status
/sys/devices/pci0000:00/0000:00:01.1/ata1/link1/power/runtime_suspended_time
/sys/devices/pci0000:00/0000:00:01.1/ata1/link1/dev1.0/power/runtime_active_time
/sys/devices/pci0000:00/0000:00:01.1/ata1/link1/dev1.0/power/runtime_status
/sys/devices/pci0000:00/0000:00:01.1/ata1/link1/dev1.0/power/runtime_suspended_time
/sys/devices/pci0000:00/0000:00:01.1/ata1/link1/dev1.0/ata_device/dev1.0/power/runtime_active_time
/sys/devices/pci0000:00/0000:00:01.1/ata1/link1/dev1.0/ata_device/dev1.0/power/runtime_status
/sys/devices/pci0000:00/0000:00:01.1/ata1/link1/dev1.0/ata_device/dev1.0/power/runtime_suspended_time
/sys/devices/pci0000:00/0000:00:01.1/ata1/power/runtime_active_time
/sys/devices/pci0000:00/0000:00:01.1/ata1/power/runtime_status
/sys/devices/pci0000:00/0000:00:01.1/ata1/power/runtime_suspended_time
/sys/devices/pci0000:00/0000:00:01.1/ata1/ata_port/ata1/power/runtime_active_time
/sys/devices/pci0000:00/0000:00:01.1/ata1/ata_port/ata1/power/runtime_status
/sys/devices/pci0000:00/0000:00:01.1/ata1/ata_port/ata1/power/runtime_suspended_time
/sys/devices/pci0000:00/0000:00:01.1/ata1/host0/power/runtime_active_time
/sys/devices/pci0000:00/0000:00:01.1/ata1/host0/power/runtime_status
/sys/devices/pci0000:00/0000:00:01.1/ata1/host0/power/runtime_suspended_time
/sys/devices/pci0000:00/0000:00:01.1/ata1/host0/scsi_host/host0/power/runtime_active_time
/sys/devices/pci0000:00/0000:00:01.1/ata1/host0/scsi_host/host0/power/runtime_status
/sys/devices/pci0000:00/0000:00:01.1/ata1/host0/scsi_host/host0/power/runtime_suspended_time
/sys/devices/pci0000:00/0000:00:01.1/power/runtime_active_time
/sys/devices/pci0000:00/0000:00:01.1/power/runtime_status
/sys/devices/pci0000:00/0000:00:01.1/power/runtime_suspended_time
/sys/devices/pci0000:00/0000:00:01.1/ata2/power/runtime_active_time
/sys/devices/pci0000:00/0000:00:01.1/ata2/power/runtime_status
/sys/devices/pci0000:00/0000:00:01.1/ata2/power/runtime_suspended_time
/sys/devices/pci0000:00/0000:00:01.1/ata2/host1/power/runtime_active_time
/sys/devices/pci0000:00/0000:00:01.1/ata2/host1/power/runtime_status
/sys/devices/pci0000:00/0000:00:01.1/ata2/host1/power/runtime_suspended_time
/sys/devices/pci0000:00/0000:00:01.1/ata2/host1/scsi_host/host1/power/runtime_active_time
/sys/devices/pci0000:00/0000:00:01.1/ata2/host1/scsi_host/host1/power/runtime_status
/sys/devices/pci0000:00/0000:00:01.1/ata2/host1/scsi_host/host1/power/runtime_suspended_time
/sys/devices/pci0000:00/0000:00:01.1/ata2/link2/ata_link/link2/power/runtime_active_time
/sys/devices/pci0000:00/0000:00:01.1/ata2/link2/ata_link/link2/power/runtime_status
/sys/devices/pci0000:00/0000:00:01.1/ata2/link2/ata_link/link2/power/runtime_suspended_time
/sys/devices/pci0000:00/0000:00:01.1/ata2/link2/dev2.0/power/runtime_active_time
/sys/devices/pci0000:00/0000:00:01.1/ata2/link2/dev2.0/power/runtime_status
/sys/devices/pci0000:00/0000:00:01.1/ata2/link2/dev2.0/power/runtime_suspended_time
/sys/devices/pci0000:00/0000:00:01.1/ata2/link2/dev2.0/ata_device/dev2.0/power/runtime_active_time
/sys/devices/pci0000:00/0000:00:01.1/ata2/link2/dev2.0/ata_device/dev2.0/power/runtime_status
/sys/devices/pci0000:00/0000:00:01.1/ata2/link2/dev2.0/ata_device/dev2.0/power/runtime_suspended_time
/sys/devices/pci0000:00/0000:00:01.1/ata2/link2/power/runtime_active_time
/sys/devices/pci0000:00/0000:00:01.1/ata2/link2/power/runtime_status
/sys/devices/pci0000:00/0000:00:01.1/ata2/link2/power/runtime_suspended_time
/sys/devices/pci0000:00/0000:00:01.1/ata2/link2/dev2.1/power/runtime_active_time
/sys/devices/pci0000:00/0000:00:01.1/ata2/link2/dev2.1/power/runtime_status
/sys/devices/pci0000:00/0000:00:01.1/ata2/link2/dev2.1/power/runtime_suspended_time
/sys/devices/pci0000:00/0000:00:01.1/ata2/link2/dev2.1/ata_device/dev2.1/power/runtime_active_time
/sys/devices/pci0000:00/0000:00:01.1/ata2/link2/dev2.1/ata_device/dev2.1/power/runtime_status
/sys/devices/pci0000:00/0000:00:01.1/ata2/link2/dev2.1/ata_device/dev2.1/power/runtime_suspended_time
/sys/devices/pci0000:00/0000:00:01.1/ata2/ata_port/ata2/power/runtime_active_time
/sys/devices/pci0000:00/0000:00:01.1/ata2/ata_port/ata2/power/runtime_status
/sys/devices/pci0000:00/0000:00:01.1/ata2/ata_port/ata2/power/runtime_suspended_time
/sys/devices/pci0000:00/PNP0103:00/power/runtime_active_time
/sys/devices/pci0000:00/PNP0103:00/power/runtime_status
/sys/devices/pci0000:00/PNP0103:00/power/runtime_suspended_time
/sys/devices/pci0000:00/0000:00:02.0/power/runtime_active_time
/sys/devices/pci0000:00/0000:00:02.0/power/runtime_status
/sys/devices/pci0000:00/0000:00:02.0/power/runtime_suspended_time
/sys/devices/system/cpu/power/runtime_active_time
/sys/devices/system/cpu/power/runtime_status
/sys/devices/system/cpu/power/runtime_suspended_time
/sys/devices/system/cpu/cpu0/power/runtime_active_time
/sys/devices/system/cpu/cpu0/power/runtime_status
/sys/devices/system/cpu/cpu0/power/runtime_suspended_time
/sys/devices/system/cpu/cpu0/cache/index2/power/runtime_active_time
/sys/devices/system/cpu/cpu0/cache/index2/power/runtime_status
/sys/devices/system/cpu/cpu0/cache/index2/power/runtime_suspended_time
/sys/devices/system/cpu/cpu0/cache/index0/power/runtime_active_time
/sys/devices/system/cpu/cpu0/cache/index0/power/runtime_status
/sys/devices/system/cpu/cpu0/cache/index0/power/runtime_suspended_time
/sys/devices/system/cpu/cpu0/cache/power/runtime_active_time
/sys/devices/system/cpu/cpu0/cache/power/runtime_status
/sys/devices/system/cpu/cpu0/cache/power/runtime_suspended_time
/sys/devices/system/cpu/cpu0/cache/index3/power/runtime_active_time
/sys/devices/system/cpu/cpu0/cache/index3/power/runtime_status
/sys/devices/system/cpu/cpu0/cache/index3/power/runtime_suspended_time
/sys/devices/system/cpu/cpu0/cache/index1/power/runtime_active_time
/sys/devices/system/cpu/cpu0/cache/index1/power/runtime_status
/sys/devices/system/cpu/cpu0/cache/index1/power/runtime_suspended_time
/sys/devices/system/machinecheck/machinecheck0/monarch_timeout
/sys/devices/system/machinecheck/machinecheck0/power/runtime_active_time
/sys/devices/system/machinecheck/machinecheck0/power/runtime_status
/sys/devices/system/machinecheck/machinecheck0/power/runtime_suspended_time
/sys/devices/system/machinecheck/power/runtime_active_time
/sys/devices/system/machinecheck/power/runtime_status
/sys/devices/system/machinecheck/power/runtime_suspended_time
/sys/devices/system/edac/power/runtime_active_time
/sys/devices/system/edac/power/runtime_status
/sys/devices/system/edac/power/runtime_suspended_time
/sys/devices/system/edac/mc/power/runtime_active_time
/sys/devices/system/edac/mc/power/runtime_status
/sys/devices/system/edac/mc/power/runtime_suspended_time
/sys/devices/system/container/power/runtime_active_time
/sys/devices/system/container/power/runtime_status
/sys/devices/system/container/power/runtime_suspended_time
/sys/devices/system/clockevents/clockevent3/power/runtime_active_time
/sys/devices/system/clockevents/clockevent3/power/runtime_status
/sys/devices/system/clockevents/clockevent3/power/runtime_suspended_time
/sys/devices/system/clockevents/clockevent1/power/runtime_active_time
/sys/devices/system/clockevents/clockevent1/power/runtime_status
/sys/devices/system/clockevents/clockevent1/power/runtime_suspended_time
/sys/devices/system/clockevents/power/runtime_active_time
/sys/devices/system/clockevents/power/runtime_status
/sys/devices/system/clockevents/power/runtime_suspended_time
/sys/devices/system/clockevents/clockevent8/power/runtime_active_time
/sys/devices/system/clockevents/clockevent8/power/runtime_status
/sys/devices/system/clockevents/clockevent8/power/runtime_suspended_time
/sys/devices/system/clockevents/clockevent14/power/runtime_active_time
/sys/devices/system/clockevents/clockevent14/power/runtime_status
/sys/devices/system/clockevents/clockevent14/power/runtime_suspended_time
/sys/devices/system/clockevents/clockevent6/power/runtime_active_time
/sys/devices/system/clockevents/clockevent6/power/runtime_status
/sys/devices/system/clockevents/clockevent6/power/runtime_suspended_time
/sys/devices/system/clockevents/clockevent12/power/runtime_active_time
/sys/devices/system/clockevents/clockevent12/power/runtime_status
/sys/devices/system/clockevents/clockevent12/power/runtime_suspended_time
/sys/devices/system/clockevents/broadcast/power/runtime_active_time
/sys/devices/system/clockevents/broadcast/power/runtime_status
/sys/devices/system/clockevents/broadcast/power/runtime_suspended_time
/sys/devices/system/clockevents/clockevent4/power/runtime_active_time
/sys/devices/system/clockevents/clockevent4/power/runtime_status
/sys/devices/system/clockevents/clockevent4/power/runtime_suspended_time
/sys/devices/system/clockevents/clockevent10/power/runtime_active_time
/sys/devices/system/clockevents/clockevent10/power/runtime_status
/sys/devices/system/clockevents/clockevent10/power/runtime_suspended_time
/sys/devices/system/clockevents/clockevent2/power/runtime_active_time
/sys/devices/system/clockevents/clockevent2/power/runtime_status
/sys/devices/system/clockevents/clockevent2/power/runtime_suspended_time
/sys/devices/system/clockevents/clockevent0/power/runtime_active_time
/sys/devices/system/clockevents/clockevent0/power/runtime_status
/sys/devices/system/clockevents/clockevent0/power/runtime_suspended_time
/sys/devices/system/clockevents/clockevent9/power/runtime_active_time
/sys/devices/system/clockevents/clockevent9/power/runtime_status
/sys/devices/system/clockevents/clockevent9/power/runtime_suspended_time
/sys/devices/system/clockevents/clockevent7/power/runtime_active_time
/sys/devices/system/clockevents/clockevent7/power/runtime_status
/sys/devices/system/clockevents/clockevent7/power/runtime_suspended_time
/sys/devices/system/clockevents/clockevent13/power/runtime_active_time
/sys/devices/system/clockevents/clockevent13/power/runtime_status
/sys/devices/system/clockevents/clockevent13/power/runtime_suspended_time
/sys/devices/system/clockevents/clockevent5/power/runtime_active_time
/sys/devices/system/clockevents/clockevent5/power/runtime_status
/sys/devices/system/clockevents/clockevent5/power/runtime_suspended_time
/sys/devices/system/clockevents/clockevent11/power/runtime_active_time
/sys/devices/system/clockevents/clockevent11/power/runtime_status
/sys/devices/system/clockevents/clockevent11/power/runtime_suspended_time
/sys/devices/system/clocksource/clocksource0/power/runtime_active_time
/sys/devices/system/clocksource/clocksource0/power/runtime_status
/sys/devices/system/clocksource/clocksource0/power/runtime_suspended_time
/sys/devices/system/clocksource/power/runtime_active_time
/sys/devices/system/clocksource/power/runtime_status
/sys/devices/system/clocksource/power/runtime_suspended_time
/sys/devices/system/node/node0/power/runtime_active_time
/sys/devices/system/node/node0/power/runtime_status
/sys/devices/system/node/node0/power/runtime_suspended_time
/sys/devices/system/node/power/runtime_active_time
/sys/devices/system/node/power/runtime_status
/sys/devices/system/node/power/runtime_suspended_time
/sys/devices/system/memory/memory3/power/runtime_active_time
/sys/devices/system/memory/memory3/power/runtime_status
/sys/devices/system/memory/memory3/power/runtime_suspended_time
/sys/devices/system/memory/memory1/power/runtime_active_time
/sys/devices/system/memory/memory1/power/runtime_status
/sys/devices/system/memory/memory1/power/runtime_suspended_time
/sys/devices/system/memory/power/runtime_active_time
/sys/devices/system/memory/power/runtime_status
/sys/devices/system/memory/power/runtime_suspended_time
/sys/devices/system/memory/memory6/power/runtime_active_time
/sys/devices/system/memory/memory6/power/runtime_status
/sys/devices/system/memory/memory6/power/runtime_suspended_time
/sys/devices/system/memory/memory4/power/runtime_active_time
/sys/devices/system/memory/memory4/power/runtime_status
/sys/devices/system/memory/memory4/power/runtime_suspended_time
/sys/devices/system/memory/memory2/power/runtime_active_time
/sys/devices/system/memory/memory2/power/runtime_status
/sys/devices/system/memory/memory2/power/runtime_suspended_time
/sys/devices/system/memory/memory0/power/runtime_active_time
/sys/devices/system/memory/memory0/power/runtime_status
/sys/devices/system/memory/memory0/power/runtime_suspended_time
/sys/devices/system/memory/memory7/power/runtime_active_time
/sys/devices/system/memory/memory7/power/runtime_status
/sys/devices/system/memory/memory7/power/runtime_suspended_time
/sys/devices/system/memory/memory5/power/runtime_active_time
/sys/devices/system/memory/memory5/power/runtime_status
/sys/devices/system/memory/memory5/power/runtime_suspended_time
/sys/devices/breakpoint/power/runtime_active_time
/sys/devices/breakpoint/power/runtime_status
/sys/devices/breakpoint/power/runtime_suspended_time
/sys/devices/virtual/thermal/cooling_device0/power/runtime_active_time
/sys/devices/virtual/thermal/cooling_device0/power/runtime_status
/sys/devices/virtual/thermal/cooling_device0/power/runtime_suspended_time
/sys/devices/virtual/cpuid/cpu0/power/runtime_active_time
/sys/devices/virtual/cpuid/cpu0/power/runtime_status
/sys/devices/virtual/cpuid/cpu0/power/runtime_suspended_time
/sys/devices/virtual/vtconsole/vtcon0/power/runtime_active_time
/sys/devices/virtual/vtconsole/vtcon0/power/runtime_status
/sys/devices/virtual/vtconsole/vtcon0/power/runtime_suspended_time
/sys/devices/virtual/mem/random/power/runtime_active_time
/sys/devices/virtual/mem/random/power/runtime_status
/sys/devices/virtual/mem/random/power/runtime_suspended_time
/sys/devices/virtual/mem/mem/power/runtime_active_time
/sys/devices/virtual/mem/mem/power/runtime_status
/sys/devices/virtual/mem/mem/power/runtime_suspended_time
/sys/devices/virtual/mem/zero/power/runtime_active_time
/sys/devices/virtual/mem/zero/power/runtime_status
/sys/devices/virtual/mem/zero/power/runtime_suspended_time
/sys/devices/virtual/mem/port/power/runtime_active_time
/sys/devices/virtual/mem/port/power/runtime_status
/sys/devices/virtual/mem/port/power/runtime_suspended_time
/sys/devices/virtual/mem/urandom/power/runtime_active_time
/sys/devices/virtual/mem/urandom/power/runtime_status
/sys/devices/virtual/mem/urandom/power/runtime_suspended_time
/sys/devices/virtual/mem/kmsg/power/runtime_active_time
/sys/devices/virtual/mem/kmsg/power/runtime_status
/sys/devices/virtual/mem/kmsg/power/runtime_suspended_time
/sys/devices/virtual/mem/full/power/runtime_active_time
/sys/devices/virtual/mem/full/power/runtime_status
/sys/devices/virtual/mem/full/power/runtime_suspended_time
/sys/devices/virtual/mem/null/power/runtime_active_time
/sys/devices/virtual/mem/null/power/runtime_status
/sys/devices/virtual/mem/null/power/runtime_suspended_time
/sys/devices/virtual/misc/mcelog/power/runtime_active_time
/sys/devices/virtual/misc/mcelog/power/runtime_status
/sys/devices/virtual/misc/mcelog/power/runtime_suspended_time
/sys/devices/virtual/misc/psaux/power/runtime_active_time
/sys/devices/virtual/misc/psaux/power/runtime_status
/sys/devices/virtual/misc/psaux/power/runtime_suspended_time
/sys/devices/virtual/misc/memory_bandwidth/power/runtime_active_time
/sys/devices/virtual/misc/memory_bandwidth/power/runtime_status
/sys/devices/virtual/misc/memory_bandwidth/power/runtime_suspended_time
/sys/devices/virtual/misc/autofs/power/runtime_active_time
/sys/devices/virtual/misc/autofs/power/runtime_status
/sys/devices/virtual/misc/autofs/power/runtime_suspended_time
/sys/devices/virtual/misc/vga_arbiter/power/runtime_active_time
/sys/devices/virtual/misc/vga_arbiter/power/runtime_status
/sys/devices/virtual/misc/vga_arbiter/power/runtime_suspended_time
/sys/devices/virtual/misc/snapshot/power/runtime_active_time
/sys/devices/virtual/misc/snapshot/power/runtime_status
/sys/devices/virtual/misc/snapshot/power/runtime_suspended_time
/sys/devices/virtual/misc/hpet/power/runtime_active_time
/sys/devices/virtual/misc/hpet/power/runtime_status
/sys/devices/virtual/misc/hpet/power/runtime_suspended_time
/sys/devices/virtual/misc/xen!xenbus/power/runtime_active_time
/sys/devices/virtual/misc/xen!xenbus/power/runtime_status
/sys/devices/virtual/misc/xen!xenbus/power/runtime_suspended_time
/sys/devices/virtual/misc/network_throughput/power/runtime_active_time
/sys/devices/virtual/misc/network_throughput/power/runtime_status
/sys/devices/virtual/misc/network_throughput/power/runtime_suspended_time
/sys/devices/virtual/misc/cpu_dma_latency/power/runtime_active_time
/sys/devices/virtual/misc/cpu_dma_latency/power/runtime_status
/sys/devices/virtual/misc/cpu_dma_latency/power/runtime_suspended_time
/sys/devices/virtual/misc/device-mapper/power/runtime_active_time
/sys/devices/virtual/misc/device-mapper/power/runtime_status
/sys/devices/virtual/misc/device-mapper/power/runtime_suspended_time
/sys/devices/virtual/misc/network_latency/power/runtime_active_time
/sys/devices/virtual/misc/network_latency/power/runtime_status
/sys/devices/virtual/misc/network_latency/power/runtime_suspended_time
/sys/devices/virtual/net/lo/gro_flush_timeout
/sys/devices/virtual/net/lo/power/runtime_active_time
/sys/devices/virtual/net/lo/power/runtime_status
/sys/devices/virtual/net/lo/power/runtime_suspended_time
/sys/devices/virtual/net/lo/queues/tx-0/byte_queue_limits/hold_time
/sys/devices/virtual/net/lo/queues/tx-0/tx_timeout
/sys/devices/virtual/tty/tty28/power/runtime_active_time
/sys/devices/virtual/tty/tty28/power/runtime_status
/sys/devices/virtual/tty/tty28/power/runtime_suspended_time
/sys/devices/virtual/tty/ptmx/power/runtime_active_time
/sys/devices/virtual/tty/ptmx/power/runtime_status
/sys/devices/virtual/tty/ptmx/power/runtime_suspended_time
/sys/devices/virtual/tty/tty56/power/runtime_active_time
/sys/devices/virtual/tty/tty56/power/runtime_status
/sys/devices/virtual/tty/tty56/power/runtime_suspended_time
/sys/devices/virtual/tty/tty18/power/runtime_active_time
/sys/devices/virtual/tty/tty18/power/runtime_status
/sys/devices/virtual/tty/tty18/power/runtime_suspended_time
/sys/devices/virtual/tty/tty1/power/runtime_active_time
/sys/devices/virtual/tty/tty1/power/runtime_status
/sys/devices/virtual/tty/tty1/power/runtime_suspended_time
/sys/devices/virtual/tty/tty46/power/runtime_active_time
/sys/devices/virtual/tty/tty46/power/runtime_status
/sys/devices/virtual/tty/tty46/power/runtime_suspended_time
/sys/devices/virtual/tty/tty36/power/runtime_active_time
/sys/devices/virtual/tty/tty36/power/runtime_status
/sys/devices/virtual/tty/tty36/power/runtime_suspended_time
/sys/devices/virtual/tty/tty26/power/runtime_active_time
/sys/devices/virtual/tty/tty26/power/runtime_status
/sys/devices/virtual/tty/tty26/power/runtime_suspended_time
/sys/devices/virtual/tty/tty54/power/runtime_active_time
/sys/devices/virtual/tty/tty54/power/runtime_status
/sys/devices/virtual/tty/tty54/power/runtime_suspended_time
/sys/devices/virtual/tty/tty16/power/runtime_active_time
/sys/devices/virtual/tty/tty16/power/runtime_status
/sys/devices/virtual/tty/tty16/power/runtime_suspended_time
/sys/devices/virtual/tty/tty44/power/runtime_active_time
/sys/devices/virtual/tty/tty44/power/runtime_status
/sys/devices/virtual/tty/tty44/power/runtime_suspended_time
/sys/devices/virtual/tty/console/power/runtime_active_time
/sys/devices/virtual/tty/console/power/runtime_status
/sys/devices/virtual/tty/console/power/runtime_suspended_time
/sys/devices/virtual/tty/tty34/power/runtime_active_time
/sys/devices/virtual/tty/tty34/power/runtime_status
/sys/devices/virtual/tty/tty34/power/runtime_suspended_time
/sys/devices/virtual/tty/tty62/power/runtime_active_time
/sys/devices/virtual/tty/tty62/power/runtime_status
/sys/devices/virtual/tty/tty62/power/runtime_suspended_time
/sys/devices/virtual/tty/tty24/power/runtime_active_time
/sys/devices/virtual/tty/tty24/power/runtime_status
/sys/devices/virtual/tty/tty24/power/runtime_suspended_time
/sys/devices/virtual/tty/tty8/power/runtime_active_time
/sys/devices/virtual/tty/tty8/power/runtime_status
/sys/devices/virtual/tty/tty8/power/runtime_suspended_time
/sys/devices/virtual/tty/tty52/power/runtime_active_time
/sys/devices/virtual/tty/tty52/power/runtime_status
/sys/devices/virtual/tty/tty52/power/runtime_suspended_time
/sys/devices/virtual/tty/tty14/power/runtime_active_time
/sys/devices/virtual/tty/tty14/power/runtime_status
/sys/devices/virtual/tty/tty14/power/runtime_suspended_time
/sys/devices/virtual/tty/tty42/power/runtime_active_time
/sys/devices/virtual/tty/tty42/power/runtime_status
/sys/devices/virtual/tty/tty42/power/runtime_suspended_time
/sys/devices/virtual/tty/tty32/power/runtime_active_time
/sys/devices/virtual/tty/tty32/power/runtime_status
/sys/devices/virtual/tty/tty32/power/runtime_suspended_time
/sys/devices/virtual/tty/tty60/power/runtime_active_time
/sys/devices/virtual/tty/tty60/power/runtime_status
/sys/devices/virtual/tty/tty60/power/runtime_suspended_time
/sys/devices/virtual/tty/tty22/power/runtime_active_time
/sys/devices/virtual/tty/tty22/power/runtime_status
/sys/devices/virtual/tty/tty22/power/runtime_suspended_time
/sys/devices/virtual/tty/tty6/power/runtime_active_time
/sys/devices/virtual/tty/tty6/power/runtime_status
/sys/devices/virtual/tty/tty6/power/runtime_suspended_time
/sys/devices/virtual/tty/tty50/power/runtime_active_time
/sys/devices/virtual/tty/tty50/power/runtime_status
/sys/devices/virtual/tty/tty50/power/runtime_suspended_time
/sys/devices/virtual/tty/tty12/power/runtime_active_time
/sys/devices/virtual/tty/tty12/power/runtime_status
/sys/devices/virtual/tty/tty12/power/runtime_suspended_time
/sys/devices/virtual/tty/tty40/power/runtime_active_time
/sys/devices/virtual/tty/tty40/power/runtime_status
/sys/devices/virtual/tty/tty40/power/runtime_suspended_time
/sys/devices/virtual/tty/tty30/power/runtime_active_time
/sys/devices/virtual/tty/tty30/power/runtime_status
/sys/devices/virtual/tty/tty30/power/runtime_suspended_time
/sys/devices/virtual/tty/tty59/power/runtime_active_time
/sys/devices/virtual/tty/tty59/power/runtime_status
/sys/devices/virtual/tty/tty59/power/runtime_suspended_time
/sys/devices/virtual/tty/tty20/power/runtime_active_time
/sys/devices/virtual/tty/tty20/power/runtime_status
/sys/devices/virtual/tty/tty20/power/runtime_suspended_time
/sys/devices/virtual/tty/tty4/power/runtime_active_time
/sys/devices/virtual/tty/tty4/power/runtime_status
/sys/devices/virtual/tty/tty4/power/runtime_suspended_time
/sys/devices/virtual/tty/tty49/power/runtime_active_time
/sys/devices/virtual/tty/tty49/power/runtime_status
/sys/devices/virtual/tty/tty49/power/runtime_suspended_time
/sys/devices/virtual/tty/tty10/power/runtime_active_time
/sys/devices/virtual/tty/tty10/power/runtime_status
/sys/devices/virtual/tty/tty10/power/runtime_suspended_time
/sys/devices/virtual/tty/tty39/power/runtime_active_time
/sys/devices/virtual/tty/tty39/power/runtime_status
/sys/devices/virtual/tty/tty39/power/runtime_suspended_time
/sys/devices/virtual/tty/tty29/power/runtime_active_time
/sys/devices/virtual/tty/tty29/power/runtime_status
/sys/devices/virtual/tty/tty29/power/runtime_suspended_time
/sys/devices/virtual/tty/tty57/power/runtime_active_time
/sys/devices/virtual/tty/tty57/power/runtime_status
/sys/devices/virtual/tty/tty57/power/runtime_suspended_time
/sys/devices/virtual/tty/tty19/power/runtime_active_time
/sys/devices/virtual/tty/tty19/power/runtime_status
/sys/devices/virtual/tty/tty19/power/runtime_suspended_time
/sys/devices/virtual/tty/tty2/power/runtime_active_time
/sys/devices/virtual/tty/tty2/power/runtime_status
/sys/devices/virtual/tty/tty2/power/runtime_suspended_time
/sys/devices/virtual/tty/tty47/power/runtime_active_time
/sys/devices/virtual/tty/tty47/power/runtime_status
/sys/devices/virtual/tty/tty47/power/runtime_suspended_time
/sys/devices/virtual/tty/tty37/power/runtime_active_time
/sys/devices/virtual/tty/tty37/power/runtime_status