-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathFiles
7952 lines (7951 loc) · 597 KB
/
Files
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
.
├── 6.10
│ ├── amd-pstate-patches
│ │ └── 0001-amd-6.10-merge-changes-from-dev-tree.patch
│ ├── amd-pstate-patches-all
│ │ └── 0001-amd-pstate-patches.patch
│ ├── amd-pstate-patches-sep
│ │ ├── 0001-x86-cpufeatures-Add-AMD-FAST-CPPC-feature-flag.patch
│ │ ├── 0002-cpufreq-amd-pstate-change-cpu-freq-transition-delay-.patch
│ │ ├── 0003-cpufreq-amd-pstate-Allow-users-to-write-default-EPP-.patch
│ │ ├── 0004-cpufreq-amd-pstate-optimize-the-initial-frequency-va.patch
│ │ ├── 0005-cpufreq-amd-pstate-remove-unused-variable-nominal_fr.patch
│ │ ├── 0006-cpufreq-amd-pstate-show-CPPC-debug-message-if-CPPC-i.patch
│ │ ├── 0007-cpufreq-amd-pstate-add-debug-message-while-CPPC-is-s.patch
│ │ ├── 0008-Documentation-PM-amd-pstate-add-guided-mode-to-the-O.patch
│ │ ├── 0009-cpufreq-amd-pstate-switch-boot_cpu_has-to-cpu_featur.patch
│ │ ├── 0010-cpufreq-amd-pstate-enable-shared-memory-type-CPPC-by.patch
│ │ ├── 0011-cpufreq-amd-pstate-auto-load-pstate-driver-by-defaul.patch
│ │ ├── 0012-cpufreq-amd-pstate-fix-setting-policy-current-freque.patch
│ │ ├── 0013-cpufreq-amd-pstate-Make-amd-pstate-unit-tests-depend.patch
│ │ ├── 0014-cpufreq-amd-pstate-Don-t-create-attributes-when-regi.patch
│ │ ├── 0015-cpufreq-simplify-boolean-parsing-with-kstrtobool-in-.patch
│ │ ├── 0016-cpufreq-acpi-move-MSR_K7_HWCR_CPB_DIS_BIT-into-msr-i.patch
│ │ ├── 0017-cpufreq-amd-pstate-initialize-core-precision-boost-s.patch
│ │ ├── 0018-cpufreq-amd-pstate-Cap-the-CPPC.max_perf-to-nominal_.patch
│ │ ├── 0019-Documentation-cpufreq-amd-pstate-update-doc-for-Per-.patch
│ │ ├── 0020-cpufreq-amd-pstate-Fix-the-scaling_max_freq-setting-.patch
│ │ └── 0021-cpufreq-amd-pstate-ut-Convert-nominal_freq-to-khz-du.patch
│ ├── amd-pstate-patches-v2
│ │ └── 0001-amd-6.10-merge-changes-from-dev-tree.patch
│ ├── amd-pstate-patches-v2-all
│ │ └── 0001-amd-pstate-patches.patch
│ ├── amd-pstate-patches-v2-sep
│ │ ├── 0001-x86-cpufeatures-Add-AMD-FAST-CPPC-feature-flag.patch
│ │ ├── 0002-cpufreq-amd-pstate-change-cpu-freq-transition-delay-.patch
│ │ ├── 0003-cpufreq-amd-pstate-optimize-the-initial-frequency-va.patch
│ │ ├── 0004-cpufreq-amd-pstate-remove-unused-variable-nominal_fr.patch
│ │ ├── 0005-cpufreq-amd-pstate-show-CPPC-debug-message-if-CPPC-i.patch
│ │ ├── 0006-cpufreq-amd-pstate-add-debug-message-while-CPPC-is-s.patch
│ │ ├── 0007-Documentation-PM-amd-pstate-add-guided-mode-to-the-O.patch
│ │ ├── 0008-cpufreq-amd-pstate-switch-boot_cpu_has-to-cpu_featur.patch
│ │ ├── 0009-cpufreq-amd-pstate-enable-shared-memory-type-CPPC-by.patch
│ │ ├── 0010-cpufreq-amd-pstate-fix-setting-policy-current-freque.patch
│ │ ├── 0011-cpufreq-amd-pstate-Make-amd-pstate-unit-tests-depend.patch
│ │ ├── 0012-cpufreq-amd-pstate-Don-t-create-attributes-when-regi.patch
│ │ ├── 0013-cpufreq-simplify-boolean-parsing-with-kstrtobool-in-.patch
│ │ ├── 0014-cpufreq-acpi-move-MSR_K7_HWCR_CPB_DIS_BIT-into-msr-i.patch
│ │ ├── 0015-cpufreq-amd-pstate-initialize-core-precision-boost-s.patch
│ │ ├── 0016-cpufreq-amd-pstate-Cap-the-CPPC.max_perf-to-nominal_.patch
│ │ └── 0017-Documentation-cpufreq-amd-pstate-update-doc-for-Per-.patch
│ ├── amd-pstate-patches-v3
│ │ └── 0001-amd-6.10-merge-changes-from-dev-tree.patch
│ ├── amd-pstate-patches-v3-all
│ │ └── 0001-amd-pstate-patches.patch
│ ├── amd-pstate-patches-v3-sep
│ │ ├── 0001-x86-cpufeatures-Add-AMD-FAST-CPPC-feature-flag.patch
│ │ ├── 0002-cpufreq-amd-pstate-change-cpu-freq-transition-delay-.patch
│ │ ├── 0003-cpufreq-amd-pstate-optimize-the-initial-frequency-va.patch
│ │ ├── 0004-cpufreq-amd-pstate-remove-unused-variable-nominal_fr.patch
│ │ ├── 0005-cpufreq-amd-pstate-show-CPPC-debug-message-if-CPPC-i.patch
│ │ ├── 0006-cpufreq-amd-pstate-add-debug-message-while-CPPC-is-s.patch
│ │ ├── 0007-Documentation-PM-amd-pstate-add-guided-mode-to-the-O.patch
│ │ ├── 0008-cpufreq-amd-pstate-switch-boot_cpu_has-to-cpu_featur.patch
│ │ ├── 0009-cpufreq-amd-pstate-enable-shared-memory-type-CPPC-by.patch
│ │ ├── 0010-cpufreq-amd-pstate-fix-setting-policy-current-freque.patch
│ │ ├── 0011-cpufreq-amd-pstate-Make-amd-pstate-unit-tests-depend.patch
│ │ ├── 0012-cpufreq-amd-pstate-Don-t-create-attributes-when-regi.patch
│ │ ├── 0013-cpufreq-simplify-boolean-parsing-with-kstrtobool-in-.patch
│ │ ├── 0014-cpufreq-acpi-move-MSR_K7_HWCR_CPB_DIS_BIT-into-msr-i.patch
│ │ ├── 0015-cpufreq-amd-pstate-initialize-core-precision-boost-s.patch
│ │ ├── 0016-cpufreq-amd-pstate-Cap-the-CPPC.max_perf-to-nominal_.patch
│ │ ├── 0017-Documentation-cpufreq-amd-pstate-update-doc-for-Per-.patch
│ │ ├── 0018-cpufreq-amd-pstate-Fix-uninitialized-variable-in-amd.patch
│ │ ├── 0019-cpufreq-amd-pstate-Use-topology_logical_package_id-i.patch
│ │ └── 0020-cpufreq-amd-pstate-Remove-warning-for-X86_FEATURE_CP.patch
│ ├── amd-pstate-patches-v4
│ │ └── 0001-amd-6.10-merge-changes-from-dev-tree.patch
│ ├── amd-pstate-patches-v4-all
│ │ └── 0001-amd-pstate-patches.patch
│ ├── amd-pstate-patches-v4-sep
│ │ ├── 0001-x86-cpufeatures-Add-AMD-FAST-CPPC-feature-flag.patch
│ │ ├── 0002-cpufreq-amd-pstate-change-cpu-freq-transition-delay-.patch
│ │ ├── 0003-cpufreq-amd-pstate-optimize-the-initial-frequency-va.patch
│ │ ├── 0004-cpufreq-amd-pstate-remove-unused-variable-nominal_fr.patch
│ │ ├── 0005-cpufreq-amd-pstate-show-CPPC-debug-message-if-CPPC-i.patch
│ │ ├── 0006-cpufreq-amd-pstate-add-debug-message-while-CPPC-is-s.patch
│ │ ├── 0007-Documentation-PM-amd-pstate-add-guided-mode-to-the-O.patch
│ │ ├── 0008-cpufreq-amd-pstate-switch-boot_cpu_has-to-cpu_featur.patch
│ │ ├── 0009-cpufreq-amd-pstate-enable-shared-memory-type-CPPC-by.patch
│ │ ├── 0010-cpufreq-amd-pstate-fix-setting-policy-current-freque.patch
│ │ ├── 0011-cpufreq-amd-pstate-Make-amd-pstate-unit-tests-depend.patch
│ │ ├── 0012-cpufreq-amd-pstate-Don-t-create-attributes-when-regi.patch
│ │ ├── 0013-cpufreq-simplify-boolean-parsing-with-kstrtobool-in-.patch
│ │ ├── 0014-cpufreq-acpi-move-MSR_K7_HWCR_CPB_DIS_BIT-into-msr-i.patch
│ │ ├── 0015-cpufreq-amd-pstate-initialize-core-precision-boost-s.patch
│ │ ├── 0016-cpufreq-amd-pstate-Cap-the-CPPC.max_perf-to-nominal_.patch
│ │ ├── 0017-Documentation-cpufreq-amd-pstate-update-doc-for-Per-.patch
│ │ ├── 0018-cpufreq-amd-pstate-Fix-uninitialized-variable-in-amd.patch
│ │ ├── 0019-cpufreq-amd-pstate-Use-topology_logical_package_id-i.patch
│ │ ├── 0020-cpufreq-amd-pstate-Remove-warning-for-X86_FEATURE_CP.patch
│ │ ├── 0021-cpufreq-amd-pstate-Add-the-missing-cpufreq_cpu_put.patch
│ │ └── 0022-cpufreq-amd-pstate-add-quirk-for-Ryzen-3000-series-p.patch
│ ├── amd-pstate-patches-v5
│ │ └── 0001-amd-6.10-merge-changes-from-dev-tree.patch
│ ├── amd-pstate-patches-v5-all
│ │ └── 0001-amd-pstate-patches.patch
│ ├── amd-pstate-patches-v5-sep
│ │ ├── 0001-x86-cpufeatures-Add-AMD-FAST-CPPC-feature-flag.patch
│ │ ├── 0002-cpufreq-amd-pstate-change-cpu-freq-transition-delay-.patch
│ │ ├── 0003-cpufreq-amd-pstate-optimize-the-initial-frequency-va.patch
│ │ ├── 0004-cpufreq-amd-pstate-remove-unused-variable-nominal_fr.patch
│ │ ├── 0005-cpufreq-amd-pstate-show-CPPC-debug-message-if-CPPC-i.patch
│ │ ├── 0006-cpufreq-amd-pstate-add-debug-message-while-CPPC-is-s.patch
│ │ ├── 0007-Documentation-PM-amd-pstate-add-guided-mode-to-the-O.patch
│ │ ├── 0008-cpufreq-amd-pstate-switch-boot_cpu_has-to-cpu_featur.patch
│ │ ├── 0009-cpufreq-amd-pstate-enable-shared-memory-type-CPPC-by.patch
│ │ ├── 0010-cpufreq-amd-pstate-fix-setting-policy-current-freque.patch
│ │ ├── 0011-cpufreq-amd-pstate-Make-amd-pstate-unit-tests-depend.patch
│ │ ├── 0012-cpufreq-amd-pstate-Don-t-create-attributes-when-regi.patch
│ │ ├── 0013-cpufreq-simplify-boolean-parsing-with-kstrtobool-in-.patch
│ │ ├── 0014-cpufreq-acpi-move-MSR_K7_HWCR_CPB_DIS_BIT-into-msr-i.patch
│ │ ├── 0015-cpufreq-amd-pstate-initialize-core-precision-boost-s.patch
│ │ ├── 0016-cpufreq-amd-pstate-Cap-the-CPPC.max_perf-to-nominal_.patch
│ │ ├── 0017-Documentation-cpufreq-amd-pstate-update-doc-for-Per-.patch
│ │ ├── 0018-cpufreq-amd-pstate-Fix-uninitialized-variable-in-amd.patch
│ │ ├── 0019-cpufreq-amd-pstate-Use-topology_logical_package_id-i.patch
│ │ ├── 0020-cpufreq-amd-pstate-Remove-warning-for-X86_FEATURE_CP.patch
│ │ ├── 0021-cpufreq-amd-pstate-Add-the-missing-cpufreq_cpu_put.patch
│ │ ├── 0022-cpufreq-amd-pstate-add-quirk-for-Ryzen-3000-series-p.patch
│ │ ├── 0023-Revert-cpufreq-amd-pstate-Remove-warning-for-X86_FEA.patch
│ │ └── 0024-cpufreq-amd-pstate-Remove-warning-for-X86_FEATURE_CP.patch
│ ├── amd-pstate-patches-v6
│ │ └── 0001-amd-6.10-merge-changes-from-dev-tree.patch
│ ├── amd-pstate-patches-v6-all
│ │ └── 0001-amd-pstate-patches.patch
│ ├── amd-pstate-patches-v6-sep
│ │ ├── 0001-x86-cpufeatures-Add-AMD-FAST-CPPC-feature-flag.patch
│ │ ├── 0002-cpufreq-amd-pstate-change-cpu-freq-transition-delay-.patch
│ │ ├── 0003-cpufreq-amd-pstate-optimize-the-initial-frequency-va.patch
│ │ ├── 0004-cpufreq-amd-pstate-remove-unused-variable-nominal_fr.patch
│ │ ├── 0005-cpufreq-amd-pstate-show-CPPC-debug-message-if-CPPC-i.patch
│ │ ├── 0006-cpufreq-amd-pstate-add-debug-message-while-CPPC-is-s.patch
│ │ ├── 0007-Documentation-PM-amd-pstate-add-guided-mode-to-the-O.patch
│ │ ├── 0008-cpufreq-amd-pstate-switch-boot_cpu_has-to-cpu_featur.patch
│ │ ├── 0009-cpufreq-amd-pstate-enable-shared-memory-type-CPPC-by.patch
│ │ ├── 0010-cpufreq-amd-pstate-fix-setting-policy-current-freque.patch
│ │ ├── 0011-cpufreq-amd-pstate-Make-amd-pstate-unit-tests-depend.patch
│ │ ├── 0012-cpufreq-amd-pstate-Don-t-create-attributes-when-regi.patch
│ │ ├── 0013-cpufreq-simplify-boolean-parsing-with-kstrtobool-in-.patch
│ │ ├── 0014-cpufreq-acpi-move-MSR_K7_HWCR_CPB_DIS_BIT-into-msr-i.patch
│ │ ├── 0015-cpufreq-amd-pstate-initialize-core-precision-boost-s.patch
│ │ ├── 0016-cpufreq-amd-pstate-Cap-the-CPPC.max_perf-to-nominal_.patch
│ │ ├── 0017-Documentation-cpufreq-amd-pstate-update-doc-for-Per-.patch
│ │ ├── 0018-cpufreq-amd-pstate-Fix-uninitialized-variable-in-amd.patch
│ │ ├── 0019-cpufreq-amd-pstate-Remove-warning-for-X86_FEATURE_CP.patch
│ │ ├── 0020-cpufreq-amd-pstate-Add-the-missing-cpufreq_cpu_put.patch
│ │ ├── 0021-cpufreq-amd-pstate-add-quirk-for-Ryzen-3000-series-p.patch
│ │ ├── 0022-Revert-cpufreq-amd-pstate-Remove-warning-for-X86_FEA.patch
│ │ └── 0023-cpufreq-amd-pstate-Remove-warning-for-X86_FEATURE_CP.patch
│ ├── amd-pstate-patches-v7
│ │ └── 0001-amd-6.10-merge-changes-from-dev-tree.patch
│ ├── amd-pstate-patches-v7-all
│ │ └── 0001-amd-pstate-patches.patch
│ ├── amd-pstate-patches-v7-sep
│ │ ├── 0001-x86-cpufeatures-Add-AMD-FAST-CPPC-feature-flag.patch
│ │ ├── 0002-cpufreq-amd-pstate-change-cpu-freq-transition-delay-.patch
│ │ ├── 0003-cpufreq-amd-pstate-optimize-the-initial-frequency-va.patch
│ │ ├── 0004-cpufreq-amd-pstate-remove-unused-variable-nominal_fr.patch
│ │ ├── 0005-cpufreq-amd-pstate-show-CPPC-debug-message-if-CPPC-i.patch
│ │ ├── 0006-cpufreq-amd-pstate-add-debug-message-while-CPPC-is-s.patch
│ │ ├── 0007-Documentation-PM-amd-pstate-add-guided-mode-to-the-O.patch
│ │ ├── 0008-cpufreq-amd-pstate-switch-boot_cpu_has-to-cpu_featur.patch
│ │ ├── 0009-cpufreq-amd-pstate-enable-shared-memory-type-CPPC-by.patch
│ │ ├── 0010-cpufreq-amd-pstate-fix-setting-policy-current-freque.patch
│ │ ├── 0011-cpufreq-amd-pstate-Make-amd-pstate-unit-tests-depend.patch
│ │ ├── 0012-cpufreq-amd-pstate-Don-t-create-attributes-when-regi.patch
│ │ ├── 0013-cpufreq-simplify-boolean-parsing-with-kstrtobool-in-.patch
│ │ ├── 0014-cpufreq-acpi-move-MSR_K7_HWCR_CPB_DIS_BIT-into-msr-i.patch
│ │ ├── 0015-cpufreq-amd-pstate-initialize-core-precision-boost-s.patch
│ │ ├── 0016-cpufreq-amd-pstate-Cap-the-CPPC.max_perf-to-nominal_.patch
│ │ ├── 0017-Documentation-cpufreq-amd-pstate-update-doc-for-Per-.patch
│ │ ├── 0018-cpufreq-amd-pstate-Fix-uninitialized-variable-in-amd.patch
│ │ ├── 0019-cpufreq-amd-pstate-Remove-warning-for-X86_FEATURE_CP.patch
│ │ ├── 0020-cpufreq-amd-pstate-Add-the-missing-cpufreq_cpu_put.patch
│ │ ├── 0021-cpufreq-amd-pstate-add-quirk-for-Ryzen-3000-series-p.patch
│ │ ├── 0022-Revert-cpufreq-amd-pstate-Remove-warning-for-X86_FEA.patch
│ │ ├── 0023-cpufreq-amd-pstate-Remove-warning-for-X86_FEATURE_CP.patch
│ │ ├── 0024-cpufreq-amd-pstate-add-check-for-cpufreq_cpu_get-s-r.patch
│ │ ├── 0025-cpufreq-amd-pstate-Export-symbols-for-changing-modes.patch
│ │ ├── 0026-cpufreq-amd-pstate-ut-Add-test-case-for-mode-switche.patch
│ │ ├── 0027-x86-amd-Move-amd_get_highest_perf-from-amd.c-to-cppc.patch
│ │ ├── 0028-x86-CPU-AMD-Always-inline-amd_clear_divider.patch
│ │ ├── 0029-x86-amd-Rename-amd_get_highest_perf-to-amd_get_boost.patch
│ │ ├── 0030-ACPI-CPPC-Adjust-debug-messages-in-amd_set_max_freq_.patch
│ │ ├── 0031-x86-amd-Move-amd_get_highest_perf-out-of-amd-pstate.patch
│ │ ├── 0032-x86-amd-Detect-preferred-cores-in-amd_get_boost_rati.patch
│ │ ├── 0033-cpufreq-amd-pstate-Merge-amd_pstate_highest_perf_set.patch
│ │ ├── 0034-cpufreq-amd-pstate-Optimize-amd_pstate_update_limits.patch
│ │ ├── 0035-cpufreq-amd-pstate-Drop-some-uses-of-cpudata-hw_pref.patch
│ │ ├── 0036-cpufreq-amd-pstate-Add-an-early-param-to-disable-MSR.patch
│ │ ├── 0037-cpufreq-amd-pstate-Catch-failures-for-amd_pstate_epp.patch
│ │ └── 0038-cpufreq-amd-pstate-make-amd_pstate_msr-non-static.patch
│ ├── amd-pstate-patches-v8
│ │ └── 0001-amd-6.10-merge-changes-from-dev-tree.patch
│ ├── amd-pstate-patches-v8-all
│ │ └── 0001-amd-pstate-patches.patch
│ ├── amd-pstate-patches-v8-sep
│ │ ├── 0001-x86-cpufeatures-Add-AMD-FAST-CPPC-feature-flag.patch
│ │ ├── 0002-cpufreq-amd-pstate-change-cpu-freq-transition-delay-.patch
│ │ ├── 0003-cpufreq-amd-pstate-optimize-the-initial-frequency-va.patch
│ │ ├── 0004-cpufreq-amd-pstate-remove-unused-variable-nominal_fr.patch
│ │ ├── 0005-cpufreq-amd-pstate-show-CPPC-debug-message-if-CPPC-i.patch
│ │ ├── 0006-cpufreq-amd-pstate-add-debug-message-while-CPPC-is-s.patch
│ │ ├── 0007-Documentation-PM-amd-pstate-add-guided-mode-to-the-O.patch
│ │ ├── 0008-cpufreq-amd-pstate-switch-boot_cpu_has-to-cpu_featur.patch
│ │ ├── 0009-cpufreq-amd-pstate-enable-shared-memory-type-CPPC-by.patch
│ │ ├── 0010-cpufreq-amd-pstate-fix-setting-policy-current-freque.patch
│ │ ├── 0011-cpufreq-amd-pstate-Make-amd-pstate-unit-tests-depend.patch
│ │ ├── 0012-cpufreq-amd-pstate-Don-t-create-attributes-when-regi.patch
│ │ ├── 0013-cpufreq-simplify-boolean-parsing-with-kstrtobool-in-.patch
│ │ ├── 0014-cpufreq-acpi-move-MSR_K7_HWCR_CPB_DIS_BIT-into-msr-i.patch
│ │ ├── 0015-cpufreq-amd-pstate-initialize-core-precision-boost-s.patch
│ │ ├── 0016-cpufreq-amd-pstate-Cap-the-CPPC.max_perf-to-nominal_.patch
│ │ ├── 0017-Documentation-cpufreq-amd-pstate-update-doc-for-Per-.patch
│ │ ├── 0018-cpufreq-amd-pstate-Fix-uninitialized-variable-in-amd.patch
│ │ ├── 0019-cpufreq-amd-pstate-Remove-warning-for-X86_FEATURE_CP.patch
│ │ ├── 0020-cpufreq-amd-pstate-Add-the-missing-cpufreq_cpu_put.patch
│ │ ├── 0021-cpufreq-amd-pstate-add-quirk-for-Ryzen-3000-series-p.patch
│ │ ├── 0022-Revert-cpufreq-amd-pstate-Remove-warning-for-X86_FEA.patch
│ │ ├── 0023-cpufreq-amd-pstate-Remove-warning-for-X86_FEATURE_CP.patch
│ │ ├── 0024-cpufreq-amd-pstate-add-check-for-cpufreq_cpu_get-s-r.patch
│ │ ├── 0025-cpufreq-amd-pstate-Export-symbols-for-changing-modes.patch
│ │ ├── 0026-cpufreq-amd-pstate-ut-Add-test-case-for-mode-switche.patch
│ │ ├── 0027-x86-amd-Move-amd_get_highest_perf-from-amd.c-to-cppc.patch
│ │ ├── 0028-x86-CPU-AMD-Always-inline-amd_clear_divider.patch
│ │ ├── 0029-x86-amd-Rename-amd_get_highest_perf-to-amd_get_boost.patch
│ │ ├── 0030-ACPI-CPPC-Adjust-debug-messages-in-amd_set_max_freq_.patch
│ │ ├── 0031-x86-amd-Move-amd_get_highest_perf-out-of-amd-pstate.patch
│ │ ├── 0032-x86-amd-Detect-preferred-cores-in-amd_get_boost_rati.patch
│ │ ├── 0033-cpufreq-amd-pstate-Merge-amd_pstate_highest_perf_set.patch
│ │ ├── 0034-cpufreq-amd-pstate-Optimize-amd_pstate_update_limits.patch
│ │ ├── 0035-cpufreq-amd-pstate-Drop-some-uses-of-cpudata-hw_pref.patch
│ │ ├── 0036-cpufreq-amd-pstate-Add-an-early-param-to-disable-MSR.patch
│ │ ├── 0037-cpufreq-amd-pstate-Catch-failures-for-amd_pstate_epp.patch
│ │ ├── 0038-cpufreq-amd-pstate-make-amd_pstate_msr-non-static.patch
│ │ ├── 0039-Revert-cpufreq-amd-pstate-make-amd_pstate_msr-non-st.patch
│ │ ├── 0040-Revert-cpufreq-amd-pstate-Add-an-early-param-to-disa.patch
│ │ └── 0041-amd-pstate-6.10-update-adjustments-for-preferred-cor.patch
│ ├── arch-patches
│ │ └── 0001-arch-patches.patch
│ ├── arch-patches-sep
│ │ ├── 0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch
│ │ ├── 0002-drivers-firmware-skip-simpledrm-if-nvidia-drm.modese.patch
│ │ ├── 0003-arch-Kconfig-Default-to-maximum-amount-of-ASLR-bits.patch
│ │ ├── 0004-cpufreq-intel_pstate-Update-Meteor-Lake-EPPs.patch
│ │ └── 0005-cpufreq-intel_pstate-Update-Arrow-Lake-EPPs.patch
│ ├── arch-patches-v2
│ │ └── 0001-arch-patches.patch
│ ├── arch-patches-v2-sep
│ │ ├── 0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch
│ │ ├── 0002-drivers-firmware-skip-simpledrm-if-nvidia-drm.modese.patch
│ │ ├── 0003-arch-Kconfig-Default-to-maximum-amount-of-ASLR-bits.patch
│ │ ├── 0004-cpufreq-intel_pstate-Update-Meteor-Lake-EPPs.patch
│ │ ├── 0005-cpufreq-intel_pstate-Update-Arrow-Lake-EPPs.patch
│ │ ├── 0006-x86-apic-Remove-logical-destination-mode-for-64-bit.patch
│ │ └── 0007-btrfs-only-run-the-extent-map-shrinker-from-kswapd-t.patch
│ ├── arch-patches-v3
│ │ └── 0001-arch-patches.patch
│ ├── arch-patches-v3-sep
│ │ ├── 0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch
│ │ ├── 0002-drivers-firmware-skip-simpledrm-if-nvidia-drm.modese.patch
│ │ ├── 0003-arch-Kconfig-Default-to-maximum-amount-of-ASLR-bits.patch
│ │ ├── 0004-cpufreq-intel_pstate-Update-Meteor-Lake-EPPs.patch
│ │ ├── 0005-cpufreq-intel_pstate-Update-Arrow-Lake-EPPs.patch
│ │ └── 0006-x86-apic-Remove-logical-destination-mode-for-64-bit.patch
│ ├── arch-patches-v4
│ │ └── 0001-arch-patches.patch
│ ├── arch-patches-v4-sep
│ │ ├── 0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch
│ │ ├── 0002-drivers-firmware-skip-simpledrm-if-nvidia-drm.modese.patch
│ │ ├── 0003-arch-Kconfig-Default-to-maximum-amount-of-ASLR-bits.patch
│ │ ├── 0004-cpufreq-intel_pstate-Update-Meteor-Lake-EPPs.patch
│ │ ├── 0005-cpufreq-intel_pstate-Update-Arrow-Lake-EPPs.patch
│ │ ├── 0006-x86-apic-Remove-logical-destination-mode-for-64-bit.patch
│ │ └── 0007-soundwire-stream-Revert-soundwire-stream-fix-program.patch
│ ├── aufs-patches
│ │ ├── 0001-aufs-6.10-merge-v20240701.patch
│ │ ├── 0001-aufs-6.10-merge-v20240715.patch
│ │ └── 0001-aufs-6.10-merge-v20240722.patch
│ ├── bbr3-patches
│ │ └── 0001-tcp-bbr3-initial-import.patch
│ ├── bcachefs-next-patches
│ │ └── 0001-bcachefs-6.10-merge-changes-from-dev-tree.patch
│ ├── bcachefs-next-patches-v2
│ │ └── 0001-bcachefs-6.10-merge-changes-from-dev-tree.patch
│ ├── bcachefs-next-patches-v3
│ │ └── 0001-bcachefs-6.10-merge-changes-from-dev-tree.patch
│ ├── bcachefs-next-patches-v4
│ │ └── 0001-bcachefs-6.10-merge-changes-from-dev-tree.patch
│ ├── bcachefs-patches
│ │ └── 0001-bcachefs-6.10-merge-changes-from-dev-tree.patch
│ ├── bcachefs-patches-v2
│ │ └── 0001-bcachefs-6.10-merge-changes-from-dev-tree.patch
│ ├── bcachefs-patches-v3
│ │ └── 0001-bcachefs-6.10-merge-changes-from-dev-tree.patch
│ ├── bcachefs-upstream-patches
│ │ └── 0001-bcachefs-6.10-merge-changes-from-dev-tree.patch
│ ├── bcachefs-upstream-patches-v2
│ │ └── 0001-bcachefs-6.10-merge-changes-from-dev-tree.patch
│ ├── bcachefs-upstream-patches-v3
│ │ └── 0001-bcachefs-6.10-merge-changes-from-dev-tree.patch
│ ├── bcachefs-upstream-patches-v4
│ │ └── 0001-bcachefs-6.10-merge-changes-from-dev-tree.patch
│ ├── bore-patches
│ │ └── 0001-linux6.10-bore5.2.4.patch
│ ├── bore-patches-v2
│ │ └── 0001-linux6.10-bore5.2.5.patch
│ ├── bore-patches-v3
│ │ └── 0001-linux6.10-bore5.2.6.patch
│ ├── bore-patches-v4
│ │ └── 0001-linux6.10-bore5.2.6.patch
│ ├── bore-patches-v5
│ │ └── 0001-linux6.10-bore5.2.6r2.patch
│ ├── bore-patches-v6
│ │ └── 0001-linux6.10-bore5.2.10.patch
│ ├── bore-patches-v7
│ │ └── 0001-linux6.10-bore5.2.11.patch
│ ├── bore-sched-ext-patches
│ │ └── 0001-bore-sched-ext-patches.patch
│ ├── bore-sched-ext-patches-sep
│ │ ├── 0001-sched-6.10-Implement-BPF-extensible-scheduler-class.patch
│ │ └── 0002-linux6.10-bore5.2.4-for-sched-ext.patch
│ ├── bore-sched-ext-patches-v10
│ │ └── 0001-bore-sched-ext-patches.patch
│ ├── bore-sched-ext-patches-v10-sep
│ │ ├── 0001-sched-6.10-Implement-BPF-extensible-scheduler-class.patch
│ │ └── 0002-linux6.10-bore5.2.11.patch
│ ├── bore-sched-ext-patches-v2
│ │ └── 0001-bore-sched-ext-patches.patch
│ ├── bore-sched-ext-patches-v2-sep
│ │ ├── 0001-sched-6.10-Implement-BPF-extensible-scheduler-class.patch
│ │ └── 0002-linux6.10-bore5.2.5-for-sched-ext.patch
│ ├── bore-sched-ext-patches-v3
│ │ └── 0001-bore-sched-ext-patches.patch
│ ├── bore-sched-ext-patches-v3-sep
│ │ ├── 0001-sched-6.10-Implement-BPF-extensible-scheduler-class.patch
│ │ ├── 0002-linux6.10-bore5.2.5.patch
│ │ └── 0003-bore-6.10-compat-mode-with-sched-ext.patch
│ ├── bore-sched-ext-patches-v4
│ │ └── 0001-bore-sched-ext-patches.patch
│ ├── bore-sched-ext-patches-v4-sep
│ │ ├── 0001-sched-6.10-Implement-BPF-extensible-scheduler-class.patch
│ │ ├── 0002-linux6.10-bore5.2.6.patch
│ │ └── 0003-bore-6.10-compat-mode-with-sched-ext.patch
│ ├── bore-sched-ext-patches-v5
│ │ └── 0001-bore-sched-ext-patches.patch
│ ├── bore-sched-ext-patches-v5-sep
│ │ ├── 0001-sched-6.10-Implement-BPF-extensible-scheduler-class.patch
│ │ ├── 0002-linux6.10-bore5.2.6.patch
│ │ └── 0003-bore-6.10-compat-mode-with-sched-ext.patch
│ ├── bore-sched-ext-patches-v6
│ │ └── 0001-bore-sched-ext-patches.patch
│ ├── bore-sched-ext-patches-v6-sep
│ │ ├── 0001-sched-6.10-Implement-BPF-extensible-scheduler-class.patch
│ │ ├── 0002-linux6.10-bore5.2.6r2.patch
│ │ └── 0003-bore-6.10-compat-mode-with-sched-ext.patch
│ ├── bore-sched-ext-patches-v7
│ │ └── 0001-bore-sched-ext-patches.patch
│ ├── bore-sched-ext-patches-v7-sep
│ │ ├── 0001-sched-6.10-Implement-BPF-extensible-scheduler-class.patch
│ │ ├── 0002-linux6.10-bore5.2.6r2.patch
│ │ └── 0003-bore-6.10-compat-mode-with-sched-ext.patch
│ ├── bore-sched-ext-patches-v8
│ │ └── 0001-bore-sched-ext-patches.patch
│ ├── bore-sched-ext-patches-v8-sep
│ │ ├── 0001-sched-6.10-Implement-BPF-extensible-scheduler-class.patch
│ │ ├── 0002-linux6.10-bore5.2.10.patch
│ │ └── 0003-bore-6.10-compat-mode-with-sched-ext.patch
│ ├── bore-sched-ext-patches-v9
│ │ └── 0001-bore-sched-ext-patches.patch
│ ├── bore-sched-ext-patches-v9-sep
│ │ ├── 0001-sched-6.10-Implement-BPF-extensible-scheduler-class.patch
│ │ └── 0002-linux6.10-bore5.2.10.patch
│ ├── bore-stable-patches
│ │ └── 0001-linux6.10-bore5.1.0.patch
│ ├── bore-stable-patches-v2
│ │ └── 0001-linux6.10-bore5.1.4.patch
│ ├── bore-stable-patches-v3
│ │ └── 0001-linux6.10-bore5.2.4.patch
│ ├── bore-stable-patches-v4
│ │ └── 0001-linux6.10-bore5.2.8.patch
│ ├── bore-stable-patches-v5
│ │ └── 0001-linux6.10-bore5.1.11.patch
│ ├── bore-stable-sched-ext-patches
│ │ └── 0001-bore-stable-sched-ext-patches.patch
│ ├── bore-stable-sched-ext-patches-sep
│ │ ├── 0001-sched-6.10-Implement-BPF-extensible-scheduler-class.patch
│ │ └── 0002-linux6.10-bore5.1.0-for-sched-ext.patch
│ ├── bore-stable-sched-ext-patches-v2
│ │ └── 0001-bore-stable-sched-ext-patches.patch
│ ├── bore-stable-sched-ext-patches-v2-sep
│ │ ├── 0001-sched-6.10-Implement-BPF-extensible-scheduler-class.patch
│ │ └── 0002-linux6.10-bore5.1.4-for-sched-ext.patch
│ ├── bore-stable-sched-ext-patches-v3
│ │ └── 0001-bore-stable-sched-ext-patches.patch
│ ├── bore-stable-sched-ext-patches-v3-sep
│ │ ├── 0001-sched-6.10-Implement-BPF-extensible-scheduler-class.patch
│ │ ├── 0002-linux6.10-bore5.1.4.patch
│ │ └── 0003-bore-6.10-compat-mode-with-sched-ext.patch
│ ├── bore-stable-sched-ext-patches-v4
│ │ └── 0001-bore-stable-sched-ext-patches.patch
│ ├── bore-stable-sched-ext-patches-v4-sep
│ │ ├── 0001-sched-6.10-Implement-BPF-extensible-scheduler-class.patch
│ │ ├── 0002-linux6.10-bore5.2.4.patch
│ │ └── 0003-bore-6.10-compat-mode-with-sched-ext.patch
│ ├── bore-stable-sched-ext-patches-v5
│ │ └── 0001-bore-stable-sched-ext-patches.patch
│ ├── bore-stable-sched-ext-patches-v5-sep
│ │ ├── 0001-sched-6.10-Implement-BPF-extensible-scheduler-class.patch
│ │ ├── 0002-linux6.10-bore5.2.4.patch
│ │ └── 0003-bore-6.10-compat-mode-with-sched-ext.patch
│ ├── bore-stable-sched-ext-patches-v6
│ │ └── 0001-bore-stable-sched-ext-patches.patch
│ ├── bore-stable-sched-ext-patches-v6-sep
│ │ ├── 0001-sched-6.10-Implement-BPF-extensible-scheduler-class.patch
│ │ ├── 0002-linux6.10-bore5.2.8.patch
│ │ └── 0003-bore-6.10-compat-mode-with-sched-ext.patch
│ ├── bore-stable-sched-ext-patches-v7
│ │ └── 0001-bore-stable-sched-ext-patches.patch
│ ├── bore-stable-sched-ext-patches-v7-sep
│ │ ├── 0001-sched-6.10-Implement-BPF-extensible-scheduler-class.patch
│ │ └── 0002-linux6.10-bore5.2.8.patch
│ ├── bore-stable-sched-ext-patches-v8
│ │ └── 0001-bore-stable-sched-ext-patches.patch
│ ├── bore-stable-sched-ext-patches-v8-sep
│ │ ├── 0001-sched-6.10-Implement-BPF-extensible-scheduler-class.patch
│ │ └── 0002-linux6.10-bore5.1.11.patch
│ ├── cachyos-fixes-patches
│ │ └── 0001-x86-amd_nb-Add-new-PCI-IDs-for-AMD-family-1Ah-model-.patch
│ ├── cachyos-fixes-patches-v2
│ │ └── 0001-cachyos-fixes-patches.patch
│ ├── cachyos-fixes-patches-v2-sep
│ │ ├── 0001-x86-amd_nb-Add-new-PCI-IDs-for-AMD-family-1Ah-model-.patch
│ │ └── 0002-drm-amdgpu-always-allocate-cleared-VRAM-for-GEM-allo.patch
│ ├── cachyos-fixes-patches-v4
│ │ └── 0001-x86-amd_nb-Add-new-PCI-IDs-for-AMD-family-1Ah-model-.patch
│ ├── cachyos-patches
│ │ └── 0001-cachyos-patches.patch
│ ├── cachyos-patches-sep
│ │ ├── 0001-cachy-move-AMD_PRIVATE_COLOR-to-Kconfig.patch
│ │ ├── 0002-Cachy-drm-amdgpu-pm-Allow-override-of-min_power_limi.patch
│ │ ├── 0003-cpufreq-intel_pstate-Update-Meteor-Lake-EPPs.patch
│ │ ├── 0004-drm-atomic-allow-no-op-FB_ID-updates-for-async-flips.patch
│ │ ├── 0005-drm-amdgpu-vcn-identify-unified-queue-in-sw-init.patch
│ │ └── 0006-drm-amdgpu-vcn-not-pause-dpg-for-unified-queue.patch
│ ├── cpu-cachyos-patches
│ │ └── 0001-cpu-6.10-merge-graysky-s-patchset.patch
│ ├── cpu-cachyos-patches-v2
│ │ └── 0001-cpu-6.10-merge-graysky-s-patchset.patch
│ ├── cpu-generic-patches
│ │ └── 0001-kbuild-add-generic-x86_64-levels.patch
│ ├── cpu-lite-patches
│ │ └── 0001-cpu-6.10-merge-graysky-s-lite-patchset.patch
│ ├── cpu-lite-patches-v2
│ │ └── 0001-cpu-6.10-merge-graysky-s-lite-patchset.patch
│ ├── crypto-patches
│ │ └── 0001-crypto-patches.patch
│ ├── crypto-patches-sep
│ │ ├── 0001-crypto-x86-aes-gcm-add-VAES-and-AVX512-AVX10-optimiz.patch
│ │ └── 0002-crypto-x86-aes-gcm-rewrite-the-AES-NI-optimized-AES-.patch
│ ├── eevdf-patches
│ │ └── 0001-sched-6.10-merge-changes-from-dev-tree.patch
│ ├── eevdf-patches-all
│ │ └── 0001-eevdf-patches.patch
│ ├── eevdf-patches-sep
│ │ ├── 0001-sched-syscalls-Split-out-kernel-sched-syscalls.c-fro.patch
│ │ ├── 0002-sched-Fix-spelling-in-comments.patch
│ │ ├── 0003-sched-core-Simplify-prefetch_curr_exec_start.patch
│ │ ├── 0004-sched-core-Clean-up-kernel-sched-sched.h-a-bit.patch
│ │ ├── 0005-sched-headers-Move-struct-pre-declarations-to-the-be.patch
│ │ ├── 0006-idle-Remove-stale-RCU-comment.patch
│ │ ├── 0007-sched-balance-Skip-unnecessary-updates-to-idle-load-.patch
│ │ ├── 0008-sched-core-Move-preempt_model_-helpers-from-sched.h-.patch
│ │ ├── 0009-sched-core-Drop-spinlocks-on-contention-iff-kernel-i.patch
│ │ ├── 0010-sched-psi-Optimise-psi_group_change-a-bit.patch
│ │ ├── 0011-sched-fair-set_load_weight-must-also-call-reweight_t.patch
│ │ ├── 0012-sched-fair-Make-SCHED_IDLE-entity-be-preempted-in-st.patch
│ │ ├── 0013-sched-deadline-Comment-sched_dl_entity-dl_server-var.patch
│ │ ├── 0014-sched-core-Add-clearing-of-dl_server-in-put_prev_tas.patch
│ │ ├── 0015-sched-core-Clear-prev-dl_server-in-CFS-pick-fast-pat.patch
│ │ ├── 0016-sched-fair-Add-trivial-fair-server.patch
│ │ ├── 0017-sched-deadline-Deferrable-dl-server.patch
│ │ ├── 0018-sched-fair-Fair-server-interface.patch
│ │ ├── 0019-sched-core-Fix-priority-checking-for-DL-server-picks.patch
│ │ ├── 0020-sched-core-Fix-picking-of-tasks-for-core-scheduling-.patch
│ │ ├── 0021-sched-rt-Remove-default-bandwidth-control.patch
│ │ ├── 0022-sched-eevdf-Add-feature-comments.patch
│ │ ├── 0023-sched-eevdf-Remove-min_vruntime_copy.patch
│ │ ├── 0024-sched-fair-Cleanup-pick_task_fair-vs-throttle.patch
│ │ ├── 0025-sched-fair-Cleanup-pick_task_fair-s-curr.patch
│ │ ├── 0026-sched-fair-Unify-pick_-next_-_task_fair.patch
│ │ ├── 0027-sched-Allow-sched_class-dequeue_task-to-fail.patch
│ │ ├── 0028-sched-fair-Re-organize-dequeue_task_fair.patch
│ │ ├── 0029-sched-Split-DEQUEUE_SLEEP-from-deactivate_task.patch
│ │ ├── 0030-sched-Prepare-generic-code-for-delayed-dequeue.patch
│ │ ├── 0031-sched-uclamg-Handle-delayed-dequeue.patch
│ │ ├── 0032-sched-fair-Assert-set_next-put_prev-_entity-are-prop.patch
│ │ ├── 0033-sched-fair-Prepare-exit-cleanup-paths-for-delayed_de.patch
│ │ ├── 0034-sched-fair-Prepare-pick_next_task-for-delayed-dequeu.patch
│ │ ├── 0035-sched-fair-Implement-ENQUEUE_DELAYED.patch
│ │ ├── 0036-sched-freezer-Mark-TASK_FROZEN-special.patch
│ │ ├── 0037-sched-Teach-dequeue_task-about-special-task-states.patch
│ │ ├── 0038-sched-fair-Implement-delayed-dequeue.patch
│ │ ├── 0039-sched-fair-Implement-DELAY_ZERO.patch
│ │ ├── 0040-sched-eevdf-Fixup-PELT-vs-DELAYED_DEQUEUE.patch
│ │ ├── 0041-sched-fair-Avoid-re-setting-virtual-deadline-on-migr.patch
│ │ ├── 0042-sched-eevdf-Allow-shorter-slices-to-wakeup-preempt.patch
│ │ ├── 0043-sched-eevdf-Use-sched_attr-sched_runtime-to-set-requ.patch
│ │ ├── 0044-sched-eevdf-Propagate-min_slice-up-the-cgroup-hierar.patch
│ │ └── 0045-sched-time-Introduce-CLOCK_THREAD_DVFS_ID.patch
│ ├── eevdf-patches-v2
│ │ └── 0001-sched-6.10-merge-changes-from-dev-tree.patch
│ ├── eevdf-patches-v2-all
│ │ └── 0001-eevdf-patches.patch
│ ├── eevdf-patches-v2-sep
│ │ ├── 0001-sched-syscalls-Split-out-kernel-sched-syscalls.c-fro.patch
│ │ ├── 0002-sched-Fix-spelling-in-comments.patch
│ │ ├── 0003-sched-core-Simplify-prefetch_curr_exec_start.patch
│ │ ├── 0004-sched-core-Clean-up-kernel-sched-sched.h-a-bit.patch
│ │ ├── 0005-sched-headers-Move-struct-pre-declarations-to-the-be.patch
│ │ ├── 0006-idle-Remove-stale-RCU-comment.patch
│ │ ├── 0007-sched-balance-Skip-unnecessary-updates-to-idle-load-.patch
│ │ ├── 0008-sched-core-Move-preempt_model_-helpers-from-sched.h-.patch
│ │ ├── 0009-sched-core-Drop-spinlocks-on-contention-iff-kernel-i.patch
│ │ ├── 0010-sched-psi-Optimise-psi_group_change-a-bit.patch
│ │ ├── 0011-sched-fair-set_load_weight-must-also-call-reweight_t.patch
│ │ ├── 0012-sched-Update-MAINTAINERS-and-CREDITS.patch
│ │ ├── 0013-sched-fair-Make-SCHED_IDLE-entity-be-preempted-in-st.patch
│ │ ├── 0014-sched-deadline-Comment-sched_dl_entity-dl_server-var.patch
│ │ ├── 0015-sched-core-Add-clearing-of-dl_server-in-put_prev_tas.patch
│ │ ├── 0016-sched-core-Clear-prev-dl_server-in-CFS-pick-fast-pat.patch
│ │ ├── 0017-sched-fair-Add-trivial-fair-server.patch
│ │ ├── 0018-sched-deadline-Deferrable-dl-server.patch
│ │ ├── 0019-sched-fair-Fair-server-interface.patch
│ │ ├── 0020-sched-core-Fix-priority-checking-for-DL-server-picks.patch
│ │ ├── 0021-sched-core-Fix-picking-of-tasks-for-core-scheduling-.patch
│ │ ├── 0022-sched-rt-Remove-default-bandwidth-control.patch
│ │ ├── 0023-sched-eevdf-Add-feature-comments.patch
│ │ ├── 0024-sched-eevdf-Remove-min_vruntime_copy.patch
│ │ ├── 0025-sched-fair-Cleanup-pick_task_fair-vs-throttle.patch
│ │ ├── 0026-sched-fair-Cleanup-pick_task_fair-s-curr.patch
│ │ ├── 0027-sched-fair-Unify-pick_-next_-_task_fair.patch
│ │ ├── 0028-sched-Allow-sched_class-dequeue_task-to-fail.patch
│ │ ├── 0029-sched-fair-Re-organize-dequeue_task_fair.patch
│ │ ├── 0030-sched-Split-DEQUEUE_SLEEP-from-deactivate_task.patch
│ │ ├── 0031-sched-Prepare-generic-code-for-delayed-dequeue.patch
│ │ ├── 0032-sched-uclamg-Handle-delayed-dequeue.patch
│ │ ├── 0033-sched-fair-Assert-set_next-put_prev-_entity-are-prop.patch
│ │ ├── 0034-sched-fair-Prepare-exit-cleanup-paths-for-delayed_de.patch
│ │ ├── 0035-sched-fair-Prepare-pick_next_task-for-delayed-dequeu.patch
│ │ ├── 0036-sched-fair-Implement-ENQUEUE_DELAYED.patch
│ │ ├── 0037-sched-freezer-Mark-TASK_FROZEN-special.patch
│ │ ├── 0038-sched-Teach-dequeue_task-about-special-task-states.patch
│ │ ├── 0039-sched-fair-Implement-delayed-dequeue.patch
│ │ ├── 0040-sched-fair-Implement-DELAY_ZERO.patch
│ │ ├── 0041-sched-eevdf-Fixup-PELT-vs-DELAYED_DEQUEUE.patch
│ │ ├── 0042-sched-fair-Avoid-re-setting-virtual-deadline-on-migr.patch
│ │ ├── 0043-sched-eevdf-Allow-shorter-slices-to-wakeup-preempt.patch
│ │ ├── 0044-sched-eevdf-Use-sched_attr-sched_runtime-to-set-requ.patch
│ │ ├── 0045-sched-eevdf-Propagate-min_slice-up-the-cgroup-hierar.patch
│ │ └── 0046-sched-time-Introduce-CLOCK_THREAD_DVFS_ID.patch
│ ├── Files
│ ├── futex-patches
│ │ └── 0001-futex-6.10-Add-entry-point-for-FUTEX_WAIT_MULTIPLE-o.patch
│ ├── handheld-patches
│ │ └── 0001-handheld-patches.patch
│ ├── handheld-patches-sep
│ │ ├── 0001-extcon-Add-driver-for-Steam-Deck.patch
│ │ ├── 0002-hwmon-Add-driver-for-Steam-Deck-s-EC-sensors.patch
│ │ ├── 0003-hwmon-steamdeck-hwmon-Add-support-for-max-battery-le.patch
│ │ ├── 0004-leds-steamdeck-Add-support-for-Steam-Deck-LED.patch
│ │ ├── 0005-mfd-Add-MFD-core-driver-for-Steam-Deck.patch
│ │ ├── 0006-mfd-steamdeck-Expose-controller-board-power-in-sysfs.patch
│ │ ├── 0007-Cachy-Steam-OLED-HW-Quirks-and-fixes.patch
│ │ ├── 0008-Cachy-Steam-Deck-Audio.patch
│ │ ├── 0009-drm-panel-orientation-quirks-Add-quirk-for-Valve-Gal.patch
│ │ ├── 0010-maybe-drm-amd-display-Don-t-consider-vblank-passed-i.patch
│ │ ├── 0011-maybe-drm-amd-display-Revert-some-of-the-vrr-always-.patch
│ │ ├── 0012-drm-panel-orientation-quirks-Add-quirk-for-AYA-NEO-2.patch
│ │ ├── 0013-drm-panel-orientation-quirks-Add-quirk-for-AYA-NEO-F.patch
│ │ ├── 0014-drm-panel-orientation-quirks-Add-quirk-for-AYA-NEO-G.patch
│ │ ├── 0015-drm-panel-orientation-quirks-Add-quirk-for-Ayn-Loki-.patch
│ │ └── 0016-drm-panel-orientation-quirks-Add-quirk-for-Ayn-Loki-.patch
│ ├── intel-pstate-patches
│ │ └── 0001-intel-6.10-merge-changes-from-dev-tree.patch
│ ├── intel-pstate-patches-all
│ │ └── 0001-intel-pstate-patches.patch
│ ├── intel-pstate-patches-sep
│ │ ├── 0001-x86-sched-Introduce-arch_rebuild_sched_domains.patch
│ │ ├── 0002-x86-sched-Add-basic-support-for-CPU-capacity-scaling.patch
│ │ └── 0003-cpufreq-intel_pstate-Set-asymmetric-CPU-capacity-on-.patch
│ ├── intel-pstate-patches-v2
│ │ └── 0001-intel-6.10-merge-changes-from-dev-tree.patch
│ ├── intel-pstate-patches-v2-all
│ │ └── 0001-intel-pstate-patches.patch
│ ├── intel-pstate-patches-v2-sep
│ │ ├── 0001-x86-sched-Introduce-arch_rebuild_sched_domains.patch
│ │ ├── 0002-x86-sched-Add-basic-support-for-CPU-capacity-scaling.patch
│ │ └── 0003-cpufreq-intel_pstate-Set-asymmetric-CPU-capacity-on-.patch
│ ├── intel-pstate-patches-v3
│ │ └── 0001-intel-6.10-merge-changes-from-dev-tree.patch
│ ├── intel-pstate-patches-v3-all
│ │ └── 0001-intel-pstate-patches.patch
│ ├── intel-pstate-patches-v3-sep
│ │ ├── 0001-x86-sched-Add-basic-support-for-CPU-capacity-scaling.patch
│ │ └── 0002-cpufreq-intel_pstate-Set-asymmetric-CPU-capacity-on-.patch
│ ├── iosched-patches
│ │ └── 0001-iosched-6.10-merge-changes-from-dev-tree.patch
│ ├── iosched-patches-all
│ │ └── 0001-iosched-patches.patch
│ ├── iosched-patches-sep
│ │ ├── 0001-block-mq-deadline-pass-in-queue-directly-to-dd_inser.patch
│ │ ├── 0002-block-mq-deadline-serialize-request-dispatching.patch
│ │ ├── 0003-block-mq-deadline-skip-expensive-merge-lookups-if-co.patch
│ │ ├── 0004-block-mq-deadline-use-separate-insertion-lists.patch
│ │ ├── 0005-block-bfq-pass-in-queue-directly-to-dd_insert_reques.patch
│ │ ├── 0006-block-bfq-serialize-request-dispatching.patch
│ │ ├── 0007-block-bfq-skip-expensive-merge-lookups-if-contended.patch
│ │ └── 0008-block-bfq-use-separate-insertion-lists.patch
│ ├── kbuild-cachyos-patches
│ │ └── 0001-Cachy-Allow-O3.patch
│ ├── kbuild-patches
│ │ └── 0001-kbuild-add-script-and-target-to-generate-pacman-pack.patch
│ ├── kbuild-patches-v2
│ │ └── 0001-kbuild-patches.patch
│ ├── kbuild-patches-v2-sep
│ │ ├── 0001-kbuild-add-script-and-target-to-generate-pacman-pack.patch
│ │ └── 0002-kbuild-control-extra-pacman-packages-with-PACMAN_EXT.patch
│ ├── kbuild-patches-v3
│ │ └── 0001-kbuild-patches.patch
│ ├── kbuild-patches-v3-sep
│ │ ├── 0001-kbuild-add-script-and-target-to-generate-pacman-pack.patch
│ │ ├── 0002-kbuild-control-extra-pacman-packages-with-PACMAN_EXT.patch
│ │ ├── 0003-kbuild-pacman-pkg-move-common-commands-to-a-separate.patch
│ │ └── 0004-kbuild-pacman-pkg-do-not-override-objtree.patch
│ ├── kbuild-patches-v4
│ │ └── 0001-kbuild-patches.patch
│ ├── kbuild-patches-v4-sep
│ │ ├── 0001-kbuild-add-script-and-target-to-generate-pacman-pack.patch
│ │ ├── 0002-kbuild-control-extra-pacman-packages-with-PACMAN_EXT.patch
│ │ ├── 0003-kbuild-pacman-pkg-move-common-commands-to-a-separate.patch
│ │ ├── 0004-kbuild-pacman-pkg-do-not-override-objtree.patch
│ │ └── 0005-kbuild-add-debug-package-to-pacman-PKGBUILD.patch
│ ├── le9uo-default-on-patches
│ │ └── 0001-mm-6.10-add-le9uo.patch
│ ├── le9uo-patches
│ │ └── 0001-mm-6.10-add-le9uo.patch
│ ├── ntsync-patches
│ │ └── 0001-ntsync-6.10-merge-changes-from-dev-tree.patch
│ ├── ntsync-patches-all
│ │ └── 0001-ntsync-patches.patch
│ ├── ntsync-patches-sep
│ │ ├── 0001-ntsync-Introduce-NTSYNC_IOC_WAIT_ANY.patch
│ │ ├── 0002-ntsync-Introduce-NTSYNC_IOC_WAIT_ALL.patch
│ │ ├── 0003-ntsync-Introduce-NTSYNC_IOC_CREATE_MUTEX.patch
│ │ ├── 0004-ntsync-Introduce-NTSYNC_IOC_MUTEX_UNLOCK.patch
│ │ ├── 0005-ntsync-Introduce-NTSYNC_IOC_MUTEX_KILL.patch
│ │ ├── 0006-ntsync-Introduce-NTSYNC_IOC_CREATE_EVENT.patch
│ │ ├── 0007-ntsync-Introduce-NTSYNC_IOC_EVENT_SET.patch
│ │ ├── 0008-ntsync-Introduce-NTSYNC_IOC_EVENT_RESET.patch
│ │ ├── 0009-ntsync-Introduce-NTSYNC_IOC_EVENT_PULSE.patch
│ │ ├── 0010-ntsync-Introduce-NTSYNC_IOC_SEM_READ.patch
│ │ ├── 0011-ntsync-Introduce-NTSYNC_IOC_MUTEX_READ.patch
│ │ ├── 0012-ntsync-Introduce-NTSYNC_IOC_EVENT_READ.patch
│ │ ├── 0013-ntsync-Introduce-alertable-waits.patch
│ │ ├── 0014-selftests-ntsync-Add-some-tests-for-semaphore-state.patch
│ │ ├── 0015-selftests-ntsync-Add-some-tests-for-mutex-state.patch
│ │ ├── 0016-selftests-ntsync-Add-some-tests-for-NTSYNC_IOC_WAIT_.patch
│ │ ├── 0017-selftests-ntsync-Add-some-tests-for-NTSYNC_IOC_WAIT_.patch
│ │ ├── 0018-selftests-ntsync-Add-some-tests-for-wakeup-signaling.patch
│ │ ├── 0019-selftests-ntsync-Add-some-tests-for-wakeup-signaling.patch
│ │ ├── 0020-selftests-ntsync-Add-some-tests-for-manual-reset-eve.patch
│ │ ├── 0021-selftests-ntsync-Add-some-tests-for-auto-reset-event.patch
│ │ ├── 0022-selftests-ntsync-Add-some-tests-for-wakeup-signaling.patch
│ │ ├── 0023-selftests-ntsync-Add-tests-for-alertable-waits.patch
│ │ ├── 0024-selftests-ntsync-Add-some-tests-for-wakeup-signaling.patch
│ │ ├── 0025-selftests-ntsync-Add-a-stress-test-for-contended-wai.patch
│ │ ├── 0026-maintainers-Add-an-entry-for-ntsync.patch
│ │ ├── 0027-docs-ntsync-Add-documentation-for-the-ntsync-uAPI.patch
│ │ └── 0028-ntsync-No-longer-depend-on-BROKEN.patch
│ ├── perf-patches
│ │ └── 0001-perf-6.10-merge-changes-from-dev-tree.patch
│ ├── perf-patches-all
│ │ └── 0001-perf-patches.patch
│ ├── perf-patches-sep
│ │ ├── 0001-x86-topology-Introduce-topology_logical_core_id.patch
│ │ ├── 0002-perf-x86-rapl-Fix-the-energy-pkg-event-for-AMD-CPUs.patch
│ │ ├── 0003-perf-x86-rapl-Rename-rapl_pmu-variables.patch
│ │ ├── 0004-perf-x86-rapl-Make-rapl_model-struct-global.patch
│ │ ├── 0005-perf-x86-rapl-Move-cpumask-variable-to-rapl_pmus-str.patch
│ │ ├── 0006-perf-x86-rapl-Add-wrapper-for-online-offline-functio.patch
│ │ ├── 0007-perf-x86-rapl-Add-an-argument-to-the-cleanup-and-ini.patch
│ │ ├── 0008-perf-x86-rapl-Modify-the-generic-variable-names-to-_.patch
│ │ ├── 0009-perf-x86-rapl-Remove-the-global-variable-rapl_msrs.patch
│ │ └── 0010-perf-x86-rapl-Add-per-core-energy-counter-support-fo.patch
│ ├── pf-patches
│ │ └── 0001-pf-patches.patch
│ ├── pf-patches-sep
│ │ ├── 0001-uas-set-host-status-byte-on-data-completion-error.patch
│ │ ├── 0002-mm-ksm-Consider-the-number-of-ksm_mm_slot-in-the-gen.patch
│ │ ├── 0003-io_uring-io-wq-limit-retrying-worker-initialisation.patch
│ │ └── 0004-kernel-rerun-task_work-while-freezing-in-get_signal.patch
│ ├── pf-patches-v2
│ │ └── 0001-pf-patches.patch
│ ├── pf-patches-v2-sep
│ │ ├── 0001-uas-set-host-status-byte-on-data-completion-error.patch
│ │ ├── 0002-mm-ksm-Consider-the-number-of-ksm_mm_slot-in-the-gen.patch
│ │ ├── 0003-io_uring-io-wq-limit-retrying-worker-initialisation.patch
│ │ ├── 0004-kernel-rerun-task_work-while-freezing-in-get_signal.patch
│ │ └── 0005-Revert-thermal-core-Call-monitor_thermal_zone-if-zon.patch
│ ├── pf-patches-v3
│ │ └── 0001-pf-patches.patch
│ ├── pf-patches-v3-sep
│ │ ├── 0001-uas-set-host-status-byte-on-data-completion-error.patch
│ │ ├── 0002-mm-ksm-Consider-the-number-of-ksm_mm_slot-in-the-gen.patch
│ │ ├── 0003-io_uring-io-wq-limit-retrying-worker-initialisation.patch
│ │ ├── 0004-kernel-rerun-task_work-while-freezing-in-get_signal.patch
│ │ ├── 0005-Revert-thermal-core-Call-monitor_thermal_zone-if-zon.patch
│ │ ├── 0006-Reapply-thermal-core-Call-monitor_thermal_zone-if-zo.patch
│ │ └── 0007-thermal-core-Allow-thermal-zones-to-tell-the-core-to.patch
│ ├── pf-patches-v4
│ │ └── 0001-pf-patches.patch
│ ├── pf-patches-v4-sep
│ │ ├── 0001-uas-set-host-status-byte-on-data-completion-error.patch
│ │ ├── 0002-mm-ksm-Consider-the-number-of-ksm_mm_slot-in-the-gen.patch
│ │ ├── 0003-io_uring-io-wq-limit-retrying-worker-initialisation.patch
│ │ ├── 0004-kernel-rerun-task_work-while-freezing-in-get_signal.patch
│ │ ├── 0005-Revert-thermal-core-Call-monitor_thermal_zone-if-zon.patch
│ │ ├── 0006-Reapply-thermal-core-Call-monitor_thermal_zone-if-zo.patch
│ │ ├── 0007-thermal-core-Allow-thermal-zones-to-tell-the-core-to.patch
│ │ ├── 0008-Revert-thermal-core-Allow-thermal-zones-to-tell-the-.patch
│ │ └── 0009-thermal-core-Allow-thermal-zones-to-tell-the-core-to.patch
│ ├── pf-patches-v5
│ │ └── 0001-pf-patches.patch
│ ├── pf-patches-v5-sep
│ │ ├── 0001-uas-set-host-status-byte-on-data-completion-error.patch
│ │ ├── 0002-mm-ksm-Consider-the-number-of-ksm_mm_slot-in-the-gen.patch
│ │ ├── 0003-io_uring-io-wq-limit-retrying-worker-initialisation.patch
│ │ └── 0004-kernel-rerun-task_work-while-freezing-in-get_signal.patch
│ ├── pf-patches-v6
│ │ └── 0001-pf-patches.patch
│ ├── pf-patches-v6-sep
│ │ ├── 0001-uas-set-host-status-byte-on-data-completion-error.patch
│ │ └── 0002-mm-ksm-Consider-the-number-of-ksm_mm_slot-in-the-gen.patch
│ ├── powercap-patches
│ │ └── 0001-powercap-intel_rapl-Add-support-for-AMD-family-1Ah.patch
│ ├── prjc-patches
│ │ └── 0001-PRJC-for-6.10.patch
│ ├── prjc-patches-v2
│ │ └── 0001-PRJC-for-6.10.patch
│ ├── sched-ext-patches
│ │ └── 0001-sched-6.10-Implement-BPF-extensible-scheduler-class.patch
│ ├── sched-ext-patches-v2
│ │ └── 0001-sched-6.10-Implement-BPF-extensible-scheduler-class.patch
│ ├── sched-ext-patches-v3
│ │ └── 0001-sched-6.10-Implement-BPF-extensible-scheduler-class.patch
│ ├── sched-ext-patches-v4
│ │ └── 0001-sched-6.10-Implement-BPF-extensible-scheduler-class.patch
│ ├── spadfs-patches
│ │ └── 0001-spadfs-6.10-merge-v1.0.19.patch
│ ├── spadfs-patches-v2
│ │ └── 0001-spadfs-6.10-merge-v1.0.20.patch
│ ├── steamdeck-patches
│ │ └── 0001-steamdeck-patches.patch
│ ├── steamdeck-patches-sep
│ │ ├── 0001-Cachy-Steam-OLED-HW-Quirks-and-fixes.patch
│ │ ├── 0002-Cachy-Steam-Deck-Audio.patch
│ │ └── 0003-Cachy-Steam-Deck-Patches.patch
│ ├── uksmd-patch
│ │ └── 0001-mm-expose-per-process-KSM-control-via-syscalls.patch
│ ├── uvcvideo-patches
│ │ └── 0001-uvcvideo-6.10-merge-changes-from-dev-tree.patch
│ ├── uvcvideo-patches-all
│ │ └── 0001-uvcvideo-patches.patch
│ ├── uvcvideo-patches-sep
│ │ ├── 0001-media-uvcvideo-Support-timestamp-lists-of-any-size.patch
│ │ ├── 0002-media-uvcvideo-Ignore-empty-TS-packets.patch
│ │ ├── 0003-media-uvcvideo-Quirk-for-invalid-dev_sof-in-Logitech.patch
│ │ ├── 0004-media-uvcvideo-Allow-hw-clock-updates-with-buffers-n.patch
│ │ ├── 0005-media-uvcvideo-Refactor-clock-circular-buffer.patch
│ │ ├── 0006-media-uvcvideo-Fix-hw-timestamp-handling-for-slow-FP.patch
│ │ ├── 0007-media-uvcvideo-Fix-integer-overflow-calculating-time.patch
│ │ ├── 0008-media-uvcvideo-add-quirk-for-invalid-dev_sof-in-Logi.patch
│ │ ├── 0009-media-uvcvideo-Stop-stream-during-unregister.patch
│ │ ├── 0010-media-uvcvideo-Refactor-the-status-irq-API.patch
│ │ ├── 0011-media-uvcvideo-Avoid-race-condition-during-unregiste.patch
│ │ ├── 0012-media-uvcvideo-Exit-early-if-there-is-not-int_urb.patch
│ │ ├── 0013-media-uvcvideo-Allow-custom-control-mapping.patch
│ │ ├── 0014-media-uvcvideo-Refactor-Power-Line-Frequency-limit-s.patch
│ │ ├── 0015-media-uvcvideo-Probe-the-PLF-characteristics.patch
│ │ ├── 0016-media-uvcvideo-Cleanup-version-specific-mapping.patch
│ │ ├── 0017-media-uvcvideo-Remove-PLF-device-quirking.patch
│ │ ├── 0018-media-uvcvideo-Remove-mappings-form-uvc_device_info.patch
│ │ ├── 0019-media-uvcvideo-Replace-get_mapping-with-filter_mappi.patch
│ │ └── 0020-media-uvcvideo-UVC-minimum-relative-pan-tilt-zoom-sp.patch
│ ├── v4l2loopback-patches
│ │ └── 0001-media-v4l2-core-add-v4l2loopback-driver.patch
│ ├── zstd-cachyos-patches
│ │ └── 0001-zstd-cachyos-patches.patch
│ ├── zstd-cachyos-patches-sep
│ │ ├── 0001-zstd-6.10-merge-v1.5.6-into-kernel-tree.patch
│ │ └── 0002-lib-zstd-Refactor-intentional-wrap-around-test.patch
│ ├── zstd-dev-patches
│ │ └── 0001-zstd-dev-patches.patch
│ ├── zstd-dev-patches-sep
│ │ ├── 0001-zstd-6.10-merge-changes-from-dev-tree.patch
│ │ └── 0002-lib-zstd-Refactor-intentional-wrap-around-test.patch
│ ├── zstd-dev-patches-v2
│ │ └── 0001-zstd-dev-patches.patch
│ ├── zstd-dev-patches-v2-sep
│ │ ├── 0001-zstd-6.10-merge-changes-from-dev-tree.patch
│ │ └── 0002-lib-zstd-Refactor-intentional-wrap-around-test.patch
│ ├── zstd-dev-patches-v3
│ │ └── 0001-zstd-dev-patches.patch
│ └── zstd-dev-patches-v3-sep
│ ├── 0001-zstd-6.10-merge-changes-from-dev-tree.patch
│ └── 0002-lib-zstd-Refactor-intentional-wrap-around-test.patch
├── 6.11
│ ├── amd-cache-optimizer-patches
│ │ └── 0001-amd-cache-optimizer-patches.patch
│ ├── amd-cache-optimizer-patches-sep
│ │ ├── 0001-platform-x86-amd-amd_3d_vcache-Add-AMD-3D-V-Cache-op.patch
│ │ └── 0002-platform-x86-amd-amd_3d_vcache-Add-sysfs-ABI-documen.patch
│ ├── amd-hfi-patches
│ │ └── 0001-amd-6.11-merge-changes-from-dev-tree.patch
│ ├── amd-hfi-patches-all
│ │ └── 0001-amd-hfi-patches.patch
│ ├── amd-hfi-patches-sep
│ │ ├── 0001-x86-amd-Move-amd_get_highest_perf-from-amd.c-to-cppc.patch
│ │ ├── 0002-ACPI-CPPC-Adjust-return-code-for-inline-functions-in.patch
│ │ ├── 0003-x86-amd-Rename-amd_get_highest_perf-to-amd_get_boost.patch
│ │ ├── 0004-ACPI-CPPC-Drop-check-for-non-zero-perf-ratio.patch
│ │ ├── 0005-ACPI-CPPC-Adjust-debug-messages-in-amd_set_max_freq_.patch
│ │ ├── 0006-x86-amd-Move-amd_get_highest_perf-out-of-amd-pstate.patch
│ │ ├── 0007-x86-amd-Detect-preferred-cores-in-amd_get_boost_rati.patch
│ │ ├── 0008-cpufreq-amd-pstate-Merge-amd_pstate_highest_perf_set.patch
│ │ ├── 0009-revert-cpufreq-amd-pstate-add-check-for-cpufreq_cpu_.patch
│ │ ├── 0010-cpufreq-amd-pstate-Optimize-amd_pstate_update_limits.patch
│ │ ├── 0011-cpufreq-amd-pstate-Add-documentation-for-amd_pstate_.patch
│ │ ├── 0012-amd-pstate-Add-missing-documentation-for-amd_pstate_.patch
│ │ ├── 0013-x86-cpufeatures-Add-feature-bits-for-AMD-heterogeneo.patch
│ │ ├── 0014-CPPC-Use-heterogeneous-core-topology-for-identifying.patch
│ │ ├── 0015-cpufreq-Add-a-callback-to-update-the-min_freq_req-fr.patch
│ │ ├── 0016-cpufreq-amd-pstate-Set-the-initial-min_freq-to-lowes.patch
│ │ ├── 0017-cpufreq-amd-pstate-Cleanup-the-old-min_freq-qos-requ.patch
│ │ ├── 0018-cpufreq-amd-pstate-Rename-MSR-and-shared-memory-spec.patch
│ │ ├── 0019-cpufreq-amd-pstate-Fix-non-kerneldoc-comment.patch
│ │ ├── 0020-cpufreq-amd-pstate-Fix-amd_pstate-mode-switch-on-sha.patch
│ │ ├── 0021-cpufreq-amd-pstate-Use-nominal-perf-for-limits-when-.patch
│ │ ├── 0022-cpufreq-amd-pstate-Don-t-update-CPPC-request-in-amd_.patch
│ │ ├── 0023-cpufreq-amd-pstate-Use-amd_pstate_update_min_max_lim.patch
│ │ ├── 0024-cpufreq-amd-pstate-Drop-needless-EPP-initialization.patch
│ │ ├── 0025-Revert-cpufreq-amd-pstate-Cleanup-the-old-min_freq-q.patch
│ │ ├── 0026-Revert-cpufreq-amd-pstate-Set-the-initial-min_freq-t.patch
│ │ ├── 0027-Revert-cpufreq-Add-a-callback-to-update-the-min_freq.patch
│ │ ├── 0028-cpufreq-amd-pstate-Remove-the-redundant-verify-funct.patch
│ │ ├── 0029-cpufreq-amd-pstate-Set-the-initial-min_freq-to-lowes.patch
│ │ ├── 0030-Documentation-x86-Add-AMD-Hardware-Feedback-Interfac.patch
│ │ ├── 0031-MAINTAINERS-Add-maintainer-entry-for-AMD-Hardware-Fe.patch
│ │ ├── 0032-x86-cpufeatures-add-X86_FEATURE_WORKLOAD_CLASS-featu.patch
│ │ ├── 0033-x86-msr-index-define-AMD-heterogeneous-CPU-related-M.patch
│ │ ├── 0034-platform-x86-hfi-Introduce-AMD-Hardware-Feedback-Int.patch
│ │ ├── 0035-platform-x86-hfi-parse-CPU-core-ranking-data-from-sh.patch
│ │ ├── 0036-platform-x86-hfi-init-per-cpu-scores-for-each-class.patch
│ │ ├── 0037-platform-x86-hfi-add-online-and-offline-callback-sup.patch
│ │ ├── 0038-platform-x86-hfi-add-power-management-callback.patch
│ │ ├── 0039-x86-cpu-Enable-SD_ASYM_PACKING-for-DIE-Domain-on-AMD.patch
│ │ ├── 0040-x86-process-Clear-hardware-feedback-history-for-AMD-.patch
│ │ ├── 0041-cpufreq-amd-pstate-Disable-preferred-cores-on-design.patch
│ │ ├── 0042-platform-x86-amd-hfi-Set-ITMT-priority-from-ranking-.patch
│ │ └── 0043-platform-x86-hfi-Add-debugfs-support.patch
│ ├── amd-hfi-patches-v2
│ │ └── 0001-amd-6.11-merge-changes-from-dev-tree.patch
│ ├── amd-hfi-patches-v2-all
│ │ └── 0001-amd-hfi-patches.patch
│ ├── amd-hfi-patches-v2-sep
│ │ ├── 0001-x86-amd-Move-amd_get_highest_perf-from-amd.c-to-cppc.patch
│ │ ├── 0002-ACPI-CPPC-Adjust-return-code-for-inline-functions-in.patch
│ │ ├── 0003-x86-amd-Rename-amd_get_highest_perf-to-amd_get_boost.patch
│ │ ├── 0004-ACPI-CPPC-Drop-check-for-non-zero-perf-ratio.patch
│ │ ├── 0005-ACPI-CPPC-Adjust-debug-messages-in-amd_set_max_freq_.patch
│ │ ├── 0006-x86-amd-Move-amd_get_highest_perf-out-of-amd-pstate.patch
│ │ ├── 0007-x86-amd-Detect-preferred-cores-in-amd_get_boost_rati.patch
│ │ ├── 0008-cpufreq-amd-pstate-Merge-amd_pstate_highest_perf_set.patch
│ │ ├── 0009-revert-cpufreq-amd-pstate-add-check-for-cpufreq_cpu_.patch
│ │ ├── 0010-cpufreq-amd-pstate-Optimize-amd_pstate_update_limits.patch
│ │ ├── 0011-cpufreq-amd-pstate-Add-documentation-for-amd_pstate_.patch
│ │ ├── 0012-amd-pstate-Add-missing-documentation-for-amd_pstate_.patch
│ │ ├── 0013-x86-cpufeatures-Add-feature-bits-for-AMD-heterogeneo.patch
│ │ ├── 0014-CPPC-Use-heterogeneous-core-topology-for-identifying.patch
│ │ ├── 0015-cpufreq-Add-a-callback-to-update-the-min_freq_req-fr.patch
│ │ ├── 0016-cpufreq-amd-pstate-Set-the-initial-min_freq-to-lowes.patch
│ │ ├── 0017-cpufreq-amd-pstate-Cleanup-the-old-min_freq-qos-requ.patch
│ │ ├── 0018-cpufreq-amd-pstate-Rename-MSR-and-shared-memory-spec.patch
│ │ ├── 0019-cpufreq-amd-pstate-Fix-non-kerneldoc-comment.patch
│ │ ├── 0020-cpufreq-amd-pstate-Fix-amd_pstate-mode-switch-on-sha.patch
│ │ ├── 0021-cpufreq-amd-pstate-Use-nominal-perf-for-limits-when-.patch
│ │ ├── 0022-cpufreq-amd-pstate-Don-t-update-CPPC-request-in-amd_.patch
│ │ ├── 0023-cpufreq-amd-pstate-Use-amd_pstate_update_min_max_lim.patch
│ │ ├── 0024-cpufreq-amd-pstate-Drop-needless-EPP-initialization.patch
│ │ ├── 0025-Revert-cpufreq-amd-pstate-Cleanup-the-old-min_freq-q.patch
│ │ ├── 0026-Revert-cpufreq-amd-pstate-Set-the-initial-min_freq-t.patch
│ │ ├── 0027-Revert-cpufreq-Add-a-callback-to-update-the-min_freq.patch
│ │ ├── 0028-cpufreq-amd-pstate-Remove-the-redundant-verify-funct.patch
│ │ ├── 0029-cpufreq-amd-pstate-Set-the-initial-min_freq-to-lowes.patch
│ │ ├── 0030-Documentation-x86-Add-AMD-Hardware-Feedback-Interfac.patch
│ │ ├── 0031-MAINTAINERS-Add-maintainer-entry-for-AMD-Hardware-Fe.patch
│ │ ├── 0032-x86-cpufeatures-add-X86_FEATURE_WORKLOAD_CLASS-featu.patch
│ │ ├── 0033-x86-msr-index-define-AMD-heterogeneous-CPU-related-M.patch
│ │ ├── 0034-platform-x86-hfi-Introduce-AMD-Hardware-Feedback-Int.patch
│ │ ├── 0035-platform-x86-hfi-parse-CPU-core-ranking-data-from-sh.patch
│ │ ├── 0036-platform-x86-hfi-init-per-cpu-scores-for-each-class.patch
│ │ ├── 0037-platform-x86-hfi-add-online-and-offline-callback-sup.patch
│ │ ├── 0038-platform-x86-hfi-add-power-management-callback.patch
│ │ ├── 0039-x86-cpu-Enable-SD_ASYM_PACKING-for-DIE-Domain-on-AMD.patch
│ │ ├── 0040-x86-process-Clear-hardware-feedback-history-for-AMD-.patch
│ │ ├── 0041-cpufreq-amd-pstate-Disable-preferred-cores-on-design.patch
│ │ ├── 0042-platform-x86-amd-hfi-Set-ITMT-priority-from-ranking-.patch
│ │ └── 0043-platform-x86-hfi-Add-debugfs-support.patch
│ ├── amd-hfi-patches-v3
│ │ └── 0001-amd-6.11-merge-changes-from-dev-tree.patch
│ ├── amd-hfi-patches-v3-all
│ │ └── 0001-amd-hfi-patches.patch
│ ├── amd-hfi-patches-v3-sep
│ │ ├── 0001-x86-amd-Move-amd_get_highest_perf-from-amd.c-to-cppc.patch
│ │ ├── 0002-ACPI-CPPC-Adjust-return-code-for-inline-functions-in.patch
│ │ ├── 0003-x86-amd-Rename-amd_get_highest_perf-to-amd_get_boost.patch
│ │ ├── 0004-ACPI-CPPC-Drop-check-for-non-zero-perf-ratio.patch
│ │ ├── 0005-ACPI-CPPC-Adjust-debug-messages-in-amd_set_max_freq_.patch
│ │ ├── 0006-x86-amd-Move-amd_get_highest_perf-out-of-amd-pstate.patch
│ │ ├── 0007-x86-amd-Detect-preferred-cores-in-amd_get_boost_rati.patch
│ │ ├── 0008-cpufreq-amd-pstate-Merge-amd_pstate_highest_perf_set.patch
│ │ ├── 0009-revert-cpufreq-amd-pstate-add-check-for-cpufreq_cpu_.patch
│ │ ├── 0010-cpufreq-amd-pstate-Optimize-amd_pstate_update_limits.patch
│ │ ├── 0011-cpufreq-amd-pstate-Add-documentation-for-amd_pstate_.patch
│ │ ├── 0012-amd-pstate-Add-missing-documentation-for-amd_pstate_.patch
│ │ ├── 0013-x86-cpufeatures-Add-feature-bits-for-AMD-heterogeneo.patch
│ │ ├── 0014-CPPC-Use-heterogeneous-core-topology-for-identifying.patch
│ │ ├── 0015-cpufreq-Add-a-callback-to-update-the-min_freq_req-fr.patch
│ │ ├── 0016-cpufreq-amd-pstate-Set-the-initial-min_freq-to-lowes.patch
│ │ ├── 0017-cpufreq-amd-pstate-Cleanup-the-old-min_freq-qos-requ.patch
│ │ ├── 0018-cpufreq-amd-pstate-Rename-MSR-and-shared-memory-spec.patch
│ │ ├── 0019-cpufreq-amd-pstate-Fix-non-kerneldoc-comment.patch
│ │ ├── 0020-cpufreq-amd-pstate-Fix-amd_pstate-mode-switch-on-sha.patch
│ │ ├── 0021-cpufreq-amd-pstate-Use-nominal-perf-for-limits-when-.patch
│ │ ├── 0022-cpufreq-amd-pstate-Don-t-update-CPPC-request-in-amd_.patch
│ │ ├── 0023-cpufreq-amd-pstate-Use-amd_pstate_update_min_max_lim.patch
│ │ ├── 0024-cpufreq-amd-pstate-Drop-needless-EPP-initialization.patch
│ │ ├── 0025-Revert-cpufreq-amd-pstate-Cleanup-the-old-min_freq-q.patch
│ │ ├── 0026-Revert-cpufreq-amd-pstate-Set-the-initial-min_freq-t.patch
│ │ ├── 0027-Revert-cpufreq-Add-a-callback-to-update-the-min_freq.patch
│ │ ├── 0028-cpufreq-amd-pstate-Remove-the-redundant-verify-funct.patch
│ │ ├── 0029-cpufreq-amd-pstate-Set-the-initial-min_freq-to-lowes.patch
│ │ ├── 0030-Documentation-x86-Add-AMD-Hardware-Feedback-Interfac.patch
│ │ ├── 0031-MAINTAINERS-Add-maintainer-entry-for-AMD-Hardware-Fe.patch
│ │ ├── 0032-x86-cpufeatures-add-X86_FEATURE_WORKLOAD_CLASS-featu.patch
│ │ ├── 0033-x86-msr-index-define-AMD-heterogeneous-CPU-related-M.patch
│ │ ├── 0034-platform-x86-hfi-Introduce-AMD-Hardware-Feedback-Int.patch
│ │ ├── 0035-platform-x86-hfi-parse-CPU-core-ranking-data-from-sh.patch
│ │ ├── 0036-platform-x86-hfi-init-per-cpu-scores-for-each-class.patch
│ │ ├── 0037-platform-x86-hfi-add-online-and-offline-callback-sup.patch
│ │ ├── 0038-platform-x86-hfi-add-power-management-callback.patch
│ │ ├── 0039-x86-process-Clear-hardware-feedback-history-for-AMD-.patch
│ │ ├── 0040-cpufreq-amd-pstate-Disable-preferred-cores-on-design.patch
│ │ ├── 0041-platform-x86-amd-hfi-Set-ITMT-priority-from-ranking-.patch
│ │ └── 0042-platform-x86-amd-hfi-Add-debugfs-support.patch
│ ├── amd-hfi-patches-v4
│ │ └── 0001-amd-6.11-merge-changes-from-dev-tree.patch
│ ├── amd-hfi-patches-v4-all
│ │ └── 0001-amd-hfi-patches.patch
│ ├── amd-hfi-patches-v4-sep
│ │ ├── 0001-x86-amd-Move-amd_get_highest_perf-from-amd.c-to-cppc.patch
│ │ ├── 0002-ACPI-CPPC-Adjust-return-code-for-inline-functions-in.patch
│ │ ├── 0003-x86-amd-Rename-amd_get_highest_perf-to-amd_get_boost.patch
│ │ ├── 0004-ACPI-CPPC-Drop-check-for-non-zero-perf-ratio.patch
│ │ ├── 0005-ACPI-CPPC-Adjust-debug-messages-in-amd_set_max_freq_.patch
│ │ ├── 0006-x86-amd-Move-amd_get_highest_perf-out-of-amd-pstate.patch
│ │ ├── 0007-x86-amd-Detect-preferred-cores-in-amd_get_boost_rati.patch
│ │ ├── 0008-cpufreq-amd-pstate-Merge-amd_pstate_highest_perf_set.patch
│ │ ├── 0009-revert-cpufreq-amd-pstate-add-check-for-cpufreq_cpu_.patch
│ │ ├── 0010-cpufreq-amd-pstate-Optimize-amd_pstate_update_limits.patch
│ │ ├── 0011-cpufreq-amd-pstate-Add-documentation-for-amd_pstate_.patch
│ │ ├── 0012-amd-pstate-Add-missing-documentation-for-amd_pstate_.patch
│ │ ├── 0013-x86-cpufeatures-Add-feature-bits-for-AMD-heterogeneo.patch
│ │ ├── 0014-CPPC-Use-heterogeneous-core-topology-for-identifying.patch
│ │ ├── 0015-cpufreq-Add-a-callback-to-update-the-min_freq_req-fr.patch
│ │ ├── 0016-cpufreq-amd-pstate-Set-the-initial-min_freq-to-lowes.patch
│ │ ├── 0017-cpufreq-amd-pstate-Cleanup-the-old-min_freq-qos-requ.patch
│ │ ├── 0018-cpufreq-amd-pstate-Rename-MSR-and-shared-memory-spec.patch
│ │ ├── 0019-cpufreq-amd-pstate-Fix-non-kerneldoc-comment.patch