├── .github └── FUNDING.yml ├── README.md ├── cacule_logo_gh.png ├── helper docs for kernel dev ├── 10.1.1.59.6385.pdf ├── FreeBSD │ └── ULE.pdf ├── GRADU-1428493916.pdf ├── ProfessionalLinuxKernelArchitecture-WolfgangMauerer.pdf ├── Scheduler Domains — The Linux Kernel documentation.html ├── Scheduler Domains — The Linux Kernel documentation_files │ ├── doctools.js │ ├── documentation_options.js │ ├── jquery.js │ ├── language_data.js │ ├── modernizr.js │ ├── pygments.css │ ├── theme.css │ ├── theme.js │ ├── theme_overrides.css │ └── underscore.js ├── Software Interrupt Context Softirqs and Tasklets.html ├── benchmarking │ ├── responsive script │ │ ├── bench │ │ ├── cacule-vs-lowlatency-go.png │ │ ├── cacule-vs-lowlatency-python.png │ │ └── cacule-vs-lowlatency.txt │ ├── stats.ods │ ├── stress-ng │ │ ├── cacule-vs-lowlatency-bogo-ops-per-sec.png │ │ ├── cacule-vs-lowlatency-bogo-ops.png │ │ └── cacule-vs-lowlatency.txt │ └── sysbench │ │ ├── CFS.txt │ │ └── SLAB.txt ├── loadbalance.pdf ├── qemu │ └── Prepare the environment for developing Linux kernel with qemu_.pdf └── teller.patch ├── patches ├── CacULE │ ├── 32bit │ │ └── cacule-32bit-converter.patch │ ├── RDB │ │ ├── README │ │ ├── rdb-autogroup-testing.patch │ │ ├── rdb-testing.patch │ │ └── rdb.patch │ ├── experimental │ │ ├── IL.patch │ │ ├── cacule-5.13-mfs.patch │ │ ├── cacule-5.13-rdb-autogroup.patch │ │ └── rdb-5.13-mfs.patch │ ├── v5.10 │ │ ├── cacule-5.10.patch │ │ ├── rt │ │ │ ├── cacule-5.10-rt.patch │ │ │ └── rdb-5.10-rt.patch │ │ └── xanmod-rt │ │ │ ├── cacule-5.10-rt.patch │ │ │ └── rdb-5.10-rt.patch │ ├── v5.11 │ │ ├── cacule-5.11.patch │ │ └── xanmod-rt │ │ │ └── cacule-5.11-rt.patch │ ├── v5.12 │ │ ├── cacule-5.12.patch │ │ └── rdb-5.12.patch │ ├── v5.13 │ │ ├── cacule-5.13.patch │ │ ├── rt │ │ │ ├── cacule-5.13-rt.patch │ │ │ └── rdb-5.13-rt.patch │ │ └── xanmod-rt │ │ │ └── cacule-5.13-rt.patch │ ├── v5.14 │ │ ├── cacule-5.14-full-rt.patch │ │ ├── cacule-5.14-full.patch │ │ ├── cacule-5.14-rt.patch │ │ └── cacule-5.14.patch │ ├── v5.15 │ │ ├── cacule-5.15-full.patch │ │ ├── cacule-5.15-rt-full.patch │ │ ├── cacule-5.15-rt.patch │ │ └── cacule-5.15.patch │ ├── v5.16 │ │ ├── 0001-cacULE-5.16-RT.patch │ │ └── 0001-cacULE-5.16.patch │ ├── v5.17 │ │ ├── 0001-cacULE-5.17-RT.patch │ │ └── 0001-cacULE-5.17.patch │ ├── v5.18 │ │ └── 0001-cacULE-5.18.patch │ ├── v5.19 │ │ └── 0001-cacULE-5.19.patch │ ├── v5.3 │ │ ├── cacule-5.3-opensuse-15.2.patch │ │ └── cacule-5.3.patch │ ├── v5.4 │ │ ├── cacule-5.4-rt.patch │ │ └── cacule-5.4.patch │ ├── v5.8 │ │ └── cacule-5.8.patch │ ├── v5.9 │ │ ├── cacule5.9-r2.patch │ │ ├── cacule5.9.patch │ │ └── xanmod-rt │ │ │ └── cacule5.9.patch │ └── v6.0 │ │ └── 0001-cacULE-6.0.patch └── Cachy │ ├── v5.4 │ ├── cachy-5.4-r5.patch │ └── cachy-5.4-r7-fix1.patch │ ├── v5.6 │ └── cachy-5.6.15-r5.patch │ ├── v5.7 │ ├── cachy-5.7-r9.patch │ ├── cachy-5.7.10.patch │ └── cachy-5.7.6.patch │ ├── v5.8 │ ├── cachy-5.8-32bit-r5.patch │ ├── cachy-5.8-r2.patch │ ├── cachy-5.8-r5.patch │ ├── cachy-5.8-r6.patch │ ├── cachy-5.8-r7-fix1.patch │ ├── cachy-5.8-r8.patch │ ├── cachy-5.8.3.patch │ └── cachy-5.8.patch │ └── v5.9 │ ├── 02-idle_balance.patch │ ├── cachy-5.9-r1.patch │ ├── cachy-5.9-r2.patch │ ├── cachy-5.9-r3.patch │ ├── cachy-5.9-r8.patch │ ├── cachy-5.9-r9.patch │ └── xanmod-rt │ └── cachy-5.9-r9-rt.patch └── scripts ├── apply_suggested_configs.sh ├── build_and_run.sh ├── command.txt ├── convertqemu.sh ├── convertsuse.sh ├── debugsys.sh ├── runsys.sh ├── search.sh └── source code ├── cachy.c ├── cacy.fairgroup.c ├── core.c ├── dynamic_priorities ├── cachy.c ├── core.c └── sys.c ├── fair.c ├── fair_GALB.c ├── fair_lrqlb.c ├── initKonfig ├── sched-include.h └── sched.h /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/README.md -------------------------------------------------------------------------------- /cacule_logo_gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/cacule_logo_gh.png -------------------------------------------------------------------------------- /helper docs for kernel dev/10.1.1.59.6385.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/helper docs for kernel dev/10.1.1.59.6385.pdf -------------------------------------------------------------------------------- /helper docs for kernel dev/FreeBSD/ULE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/helper docs for kernel dev/FreeBSD/ULE.pdf -------------------------------------------------------------------------------- /helper docs for kernel dev/GRADU-1428493916.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/helper docs for kernel dev/GRADU-1428493916.pdf -------------------------------------------------------------------------------- /helper docs for kernel dev/ProfessionalLinuxKernelArchitecture-WolfgangMauerer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/helper docs for kernel dev/ProfessionalLinuxKernelArchitecture-WolfgangMauerer.pdf -------------------------------------------------------------------------------- /helper docs for kernel dev/Scheduler Domains — The Linux Kernel documentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/helper docs for kernel dev/Scheduler Domains — The Linux Kernel documentation.html -------------------------------------------------------------------------------- /helper docs for kernel dev/Scheduler Domains — The Linux Kernel documentation_files/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/helper docs for kernel dev/Scheduler Domains — The Linux Kernel documentation_files/doctools.js -------------------------------------------------------------------------------- /helper docs for kernel dev/Scheduler Domains — The Linux Kernel documentation_files/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/helper docs for kernel dev/Scheduler Domains — The Linux Kernel documentation_files/documentation_options.js -------------------------------------------------------------------------------- /helper docs for kernel dev/Scheduler Domains — The Linux Kernel documentation_files/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/helper docs for kernel dev/Scheduler Domains — The Linux Kernel documentation_files/jquery.js -------------------------------------------------------------------------------- /helper docs for kernel dev/Scheduler Domains — The Linux Kernel documentation_files/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/helper docs for kernel dev/Scheduler Domains — The Linux Kernel documentation_files/language_data.js -------------------------------------------------------------------------------- /helper docs for kernel dev/Scheduler Domains — The Linux Kernel documentation_files/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/helper docs for kernel dev/Scheduler Domains — The Linux Kernel documentation_files/modernizr.js -------------------------------------------------------------------------------- /helper docs for kernel dev/Scheduler Domains — The Linux Kernel documentation_files/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/helper docs for kernel dev/Scheduler Domains — The Linux Kernel documentation_files/pygments.css -------------------------------------------------------------------------------- /helper docs for kernel dev/Scheduler Domains — The Linux Kernel documentation_files/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/helper docs for kernel dev/Scheduler Domains — The Linux Kernel documentation_files/theme.css -------------------------------------------------------------------------------- /helper docs for kernel dev/Scheduler Domains — The Linux Kernel documentation_files/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/helper docs for kernel dev/Scheduler Domains — The Linux Kernel documentation_files/theme.js -------------------------------------------------------------------------------- /helper docs for kernel dev/Scheduler Domains — The Linux Kernel documentation_files/theme_overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/helper docs for kernel dev/Scheduler Domains — The Linux Kernel documentation_files/theme_overrides.css -------------------------------------------------------------------------------- /helper docs for kernel dev/Scheduler Domains — The Linux Kernel documentation_files/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/helper docs for kernel dev/Scheduler Domains — The Linux Kernel documentation_files/underscore.js -------------------------------------------------------------------------------- /helper docs for kernel dev/Software Interrupt Context Softirqs and Tasklets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/helper docs for kernel dev/Software Interrupt Context Softirqs and Tasklets.html -------------------------------------------------------------------------------- /helper docs for kernel dev/benchmarking/responsive script/bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/helper docs for kernel dev/benchmarking/responsive script/bench -------------------------------------------------------------------------------- /helper docs for kernel dev/benchmarking/responsive script/cacule-vs-lowlatency-go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/helper docs for kernel dev/benchmarking/responsive script/cacule-vs-lowlatency-go.png -------------------------------------------------------------------------------- /helper docs for kernel dev/benchmarking/responsive script/cacule-vs-lowlatency-python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/helper docs for kernel dev/benchmarking/responsive script/cacule-vs-lowlatency-python.png -------------------------------------------------------------------------------- /helper docs for kernel dev/benchmarking/responsive script/cacule-vs-lowlatency.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/helper docs for kernel dev/benchmarking/responsive script/cacule-vs-lowlatency.txt -------------------------------------------------------------------------------- /helper docs for kernel dev/benchmarking/stats.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/helper docs for kernel dev/benchmarking/stats.ods -------------------------------------------------------------------------------- /helper docs for kernel dev/benchmarking/stress-ng/cacule-vs-lowlatency-bogo-ops-per-sec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/helper docs for kernel dev/benchmarking/stress-ng/cacule-vs-lowlatency-bogo-ops-per-sec.png -------------------------------------------------------------------------------- /helper docs for kernel dev/benchmarking/stress-ng/cacule-vs-lowlatency-bogo-ops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/helper docs for kernel dev/benchmarking/stress-ng/cacule-vs-lowlatency-bogo-ops.png -------------------------------------------------------------------------------- /helper docs for kernel dev/benchmarking/stress-ng/cacule-vs-lowlatency.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/helper docs for kernel dev/benchmarking/stress-ng/cacule-vs-lowlatency.txt -------------------------------------------------------------------------------- /helper docs for kernel dev/benchmarking/sysbench/CFS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/helper docs for kernel dev/benchmarking/sysbench/CFS.txt -------------------------------------------------------------------------------- /helper docs for kernel dev/benchmarking/sysbench/SLAB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/helper docs for kernel dev/benchmarking/sysbench/SLAB.txt -------------------------------------------------------------------------------- /helper docs for kernel dev/loadbalance.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/helper docs for kernel dev/loadbalance.pdf -------------------------------------------------------------------------------- /helper docs for kernel dev/qemu/Prepare the environment for developing Linux kernel with qemu_.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/helper docs for kernel dev/qemu/Prepare the environment for developing Linux kernel with qemu_.pdf -------------------------------------------------------------------------------- /helper docs for kernel dev/teller.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/helper docs for kernel dev/teller.patch -------------------------------------------------------------------------------- /patches/CacULE/32bit/cacule-32bit-converter.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/32bit/cacule-32bit-converter.patch -------------------------------------------------------------------------------- /patches/CacULE/RDB/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/RDB/README -------------------------------------------------------------------------------- /patches/CacULE/RDB/rdb-autogroup-testing.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/RDB/rdb-autogroup-testing.patch -------------------------------------------------------------------------------- /patches/CacULE/RDB/rdb-testing.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/RDB/rdb-testing.patch -------------------------------------------------------------------------------- /patches/CacULE/RDB/rdb.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/RDB/rdb.patch -------------------------------------------------------------------------------- /patches/CacULE/experimental/IL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/experimental/IL.patch -------------------------------------------------------------------------------- /patches/CacULE/experimental/cacule-5.13-mfs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/experimental/cacule-5.13-mfs.patch -------------------------------------------------------------------------------- /patches/CacULE/experimental/cacule-5.13-rdb-autogroup.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/experimental/cacule-5.13-rdb-autogroup.patch -------------------------------------------------------------------------------- /patches/CacULE/experimental/rdb-5.13-mfs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/experimental/rdb-5.13-mfs.patch -------------------------------------------------------------------------------- /patches/CacULE/v5.10/cacule-5.10.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v5.10/cacule-5.10.patch -------------------------------------------------------------------------------- /patches/CacULE/v5.10/rt/cacule-5.10-rt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v5.10/rt/cacule-5.10-rt.patch -------------------------------------------------------------------------------- /patches/CacULE/v5.10/rt/rdb-5.10-rt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v5.10/rt/rdb-5.10-rt.patch -------------------------------------------------------------------------------- /patches/CacULE/v5.10/xanmod-rt/cacule-5.10-rt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v5.10/xanmod-rt/cacule-5.10-rt.patch -------------------------------------------------------------------------------- /patches/CacULE/v5.10/xanmod-rt/rdb-5.10-rt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v5.10/xanmod-rt/rdb-5.10-rt.patch -------------------------------------------------------------------------------- /patches/CacULE/v5.11/cacule-5.11.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v5.11/cacule-5.11.patch -------------------------------------------------------------------------------- /patches/CacULE/v5.11/xanmod-rt/cacule-5.11-rt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v5.11/xanmod-rt/cacule-5.11-rt.patch -------------------------------------------------------------------------------- /patches/CacULE/v5.12/cacule-5.12.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v5.12/cacule-5.12.patch -------------------------------------------------------------------------------- /patches/CacULE/v5.12/rdb-5.12.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v5.12/rdb-5.12.patch -------------------------------------------------------------------------------- /patches/CacULE/v5.13/cacule-5.13.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v5.13/cacule-5.13.patch -------------------------------------------------------------------------------- /patches/CacULE/v5.13/rt/cacule-5.13-rt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v5.13/rt/cacule-5.13-rt.patch -------------------------------------------------------------------------------- /patches/CacULE/v5.13/rt/rdb-5.13-rt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v5.13/rt/rdb-5.13-rt.patch -------------------------------------------------------------------------------- /patches/CacULE/v5.13/xanmod-rt/cacule-5.13-rt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v5.13/xanmod-rt/cacule-5.13-rt.patch -------------------------------------------------------------------------------- /patches/CacULE/v5.14/cacule-5.14-full-rt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v5.14/cacule-5.14-full-rt.patch -------------------------------------------------------------------------------- /patches/CacULE/v5.14/cacule-5.14-full.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v5.14/cacule-5.14-full.patch -------------------------------------------------------------------------------- /patches/CacULE/v5.14/cacule-5.14-rt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v5.14/cacule-5.14-rt.patch -------------------------------------------------------------------------------- /patches/CacULE/v5.14/cacule-5.14.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v5.14/cacule-5.14.patch -------------------------------------------------------------------------------- /patches/CacULE/v5.15/cacule-5.15-full.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v5.15/cacule-5.15-full.patch -------------------------------------------------------------------------------- /patches/CacULE/v5.15/cacule-5.15-rt-full.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v5.15/cacule-5.15-rt-full.patch -------------------------------------------------------------------------------- /patches/CacULE/v5.15/cacule-5.15-rt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v5.15/cacule-5.15-rt.patch -------------------------------------------------------------------------------- /patches/CacULE/v5.15/cacule-5.15.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v5.15/cacule-5.15.patch -------------------------------------------------------------------------------- /patches/CacULE/v5.16/0001-cacULE-5.16-RT.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v5.16/0001-cacULE-5.16-RT.patch -------------------------------------------------------------------------------- /patches/CacULE/v5.16/0001-cacULE-5.16.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v5.16/0001-cacULE-5.16.patch -------------------------------------------------------------------------------- /patches/CacULE/v5.17/0001-cacULE-5.17-RT.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v5.17/0001-cacULE-5.17-RT.patch -------------------------------------------------------------------------------- /patches/CacULE/v5.17/0001-cacULE-5.17.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v5.17/0001-cacULE-5.17.patch -------------------------------------------------------------------------------- /patches/CacULE/v5.18/0001-cacULE-5.18.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v5.18/0001-cacULE-5.18.patch -------------------------------------------------------------------------------- /patches/CacULE/v5.19/0001-cacULE-5.19.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v5.19/0001-cacULE-5.19.patch -------------------------------------------------------------------------------- /patches/CacULE/v5.3/cacule-5.3-opensuse-15.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v5.3/cacule-5.3-opensuse-15.2.patch -------------------------------------------------------------------------------- /patches/CacULE/v5.3/cacule-5.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v5.3/cacule-5.3.patch -------------------------------------------------------------------------------- /patches/CacULE/v5.4/cacule-5.4-rt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v5.4/cacule-5.4-rt.patch -------------------------------------------------------------------------------- /patches/CacULE/v5.4/cacule-5.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v5.4/cacule-5.4.patch -------------------------------------------------------------------------------- /patches/CacULE/v5.8/cacule-5.8.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v5.8/cacule-5.8.patch -------------------------------------------------------------------------------- /patches/CacULE/v5.9/cacule5.9-r2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v5.9/cacule5.9-r2.patch -------------------------------------------------------------------------------- /patches/CacULE/v5.9/cacule5.9.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v5.9/cacule5.9.patch -------------------------------------------------------------------------------- /patches/CacULE/v5.9/xanmod-rt/cacule5.9.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v5.9/xanmod-rt/cacule5.9.patch -------------------------------------------------------------------------------- /patches/CacULE/v6.0/0001-cacULE-6.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/CacULE/v6.0/0001-cacULE-6.0.patch -------------------------------------------------------------------------------- /patches/Cachy/v5.4/cachy-5.4-r5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/Cachy/v5.4/cachy-5.4-r5.patch -------------------------------------------------------------------------------- /patches/Cachy/v5.4/cachy-5.4-r7-fix1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/Cachy/v5.4/cachy-5.4-r7-fix1.patch -------------------------------------------------------------------------------- /patches/Cachy/v5.6/cachy-5.6.15-r5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/Cachy/v5.6/cachy-5.6.15-r5.patch -------------------------------------------------------------------------------- /patches/Cachy/v5.7/cachy-5.7-r9.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/Cachy/v5.7/cachy-5.7-r9.patch -------------------------------------------------------------------------------- /patches/Cachy/v5.7/cachy-5.7.10.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/Cachy/v5.7/cachy-5.7.10.patch -------------------------------------------------------------------------------- /patches/Cachy/v5.7/cachy-5.7.6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/Cachy/v5.7/cachy-5.7.6.patch -------------------------------------------------------------------------------- /patches/Cachy/v5.8/cachy-5.8-32bit-r5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/Cachy/v5.8/cachy-5.8-32bit-r5.patch -------------------------------------------------------------------------------- /patches/Cachy/v5.8/cachy-5.8-r2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/Cachy/v5.8/cachy-5.8-r2.patch -------------------------------------------------------------------------------- /patches/Cachy/v5.8/cachy-5.8-r5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/Cachy/v5.8/cachy-5.8-r5.patch -------------------------------------------------------------------------------- /patches/Cachy/v5.8/cachy-5.8-r6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/Cachy/v5.8/cachy-5.8-r6.patch -------------------------------------------------------------------------------- /patches/Cachy/v5.8/cachy-5.8-r7-fix1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/Cachy/v5.8/cachy-5.8-r7-fix1.patch -------------------------------------------------------------------------------- /patches/Cachy/v5.8/cachy-5.8-r8.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/Cachy/v5.8/cachy-5.8-r8.patch -------------------------------------------------------------------------------- /patches/Cachy/v5.8/cachy-5.8.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/Cachy/v5.8/cachy-5.8.3.patch -------------------------------------------------------------------------------- /patches/Cachy/v5.8/cachy-5.8.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/Cachy/v5.8/cachy-5.8.patch -------------------------------------------------------------------------------- /patches/Cachy/v5.9/02-idle_balance.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/Cachy/v5.9/02-idle_balance.patch -------------------------------------------------------------------------------- /patches/Cachy/v5.9/cachy-5.9-r1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/Cachy/v5.9/cachy-5.9-r1.patch -------------------------------------------------------------------------------- /patches/Cachy/v5.9/cachy-5.9-r2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/Cachy/v5.9/cachy-5.9-r2.patch -------------------------------------------------------------------------------- /patches/Cachy/v5.9/cachy-5.9-r3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/Cachy/v5.9/cachy-5.9-r3.patch -------------------------------------------------------------------------------- /patches/Cachy/v5.9/cachy-5.9-r8.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/Cachy/v5.9/cachy-5.9-r8.patch -------------------------------------------------------------------------------- /patches/Cachy/v5.9/cachy-5.9-r9.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/Cachy/v5.9/cachy-5.9-r9.patch -------------------------------------------------------------------------------- /patches/Cachy/v5.9/xanmod-rt/cachy-5.9-r9-rt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/patches/Cachy/v5.9/xanmod-rt/cachy-5.9-r9-rt.patch -------------------------------------------------------------------------------- /scripts/apply_suggested_configs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/scripts/apply_suggested_configs.sh -------------------------------------------------------------------------------- /scripts/build_and_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/scripts/build_and_run.sh -------------------------------------------------------------------------------- /scripts/command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/scripts/command.txt -------------------------------------------------------------------------------- /scripts/convertqemu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/scripts/convertqemu.sh -------------------------------------------------------------------------------- /scripts/convertsuse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/scripts/convertsuse.sh -------------------------------------------------------------------------------- /scripts/debugsys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/scripts/debugsys.sh -------------------------------------------------------------------------------- /scripts/runsys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/scripts/runsys.sh -------------------------------------------------------------------------------- /scripts/search.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/scripts/search.sh -------------------------------------------------------------------------------- /scripts/source code/cachy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/scripts/source code/cachy.c -------------------------------------------------------------------------------- /scripts/source code/cacy.fairgroup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/scripts/source code/cacy.fairgroup.c -------------------------------------------------------------------------------- /scripts/source code/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/scripts/source code/core.c -------------------------------------------------------------------------------- /scripts/source code/dynamic_priorities/cachy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/scripts/source code/dynamic_priorities/cachy.c -------------------------------------------------------------------------------- /scripts/source code/dynamic_priorities/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/scripts/source code/dynamic_priorities/core.c -------------------------------------------------------------------------------- /scripts/source code/dynamic_priorities/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/scripts/source code/dynamic_priorities/sys.c -------------------------------------------------------------------------------- /scripts/source code/fair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/scripts/source code/fair.c -------------------------------------------------------------------------------- /scripts/source code/fair_GALB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/scripts/source code/fair_GALB.c -------------------------------------------------------------------------------- /scripts/source code/fair_lrqlb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/scripts/source code/fair_lrqlb.c -------------------------------------------------------------------------------- /scripts/source code/initKonfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/scripts/source code/initKonfig -------------------------------------------------------------------------------- /scripts/source code/sched-include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/scripts/source code/sched-include.h -------------------------------------------------------------------------------- /scripts/source code/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cacule-cpu-scheduler/HEAD/scripts/source code/sched.h --------------------------------------------------------------------------------