├── .dockerignore ├── .github └── workflows │ └── code.yml ├── .gitignore ├── .rubocop.yml ├── .shellcheckrc ├── COPYING ├── Gemfile ├── Makefile ├── README.md ├── Rakefile ├── _config.yml ├── bin ├── create-stats-matrix ├── dump-yaml ├── event │ ├── Makefile │ ├── wait │ └── wakeup.c ├── expand-job ├── gen-doc ├── job-mrt ├── job-path ├── kexec-lkp ├── lkp ├── lkp-setup-rootfs ├── log_cmd ├── log_test ├── merge-remote-result ├── perf-events ├── post-run ├── proc-local ├── program-options ├── rsync-rootfs ├── run-ipconfig ├── run-lkp ├── run-local ├── run-local-monitor.sh ├── run-local.sh ├── run-with-job ├── set_nic_irq_affinity ├── setup-local └── yaml-to-shell-vars ├── cluster ├── cs-lkp-hsw-ep5 └── cs-localhost ├── daemon ├── cassandra-server ├── httpd ├── iperf-server ├── memcached ├── mongodb ├── nepim-server ├── netpipe-server ├── netserver ├── nfsd ├── nuttcp-server ├── qperf-server ├── redis-server ├── sockperf-server ├── tbench-server ├── thrulay-server ├── uperf-server └── wrapper ├── distro ├── adaptation-pkg │ ├── aliyun │ ├── amazon_linux │ ├── centos │ ├── clear │ ├── debian │ ├── exaleap-riscv-linux │ ├── fedora │ ├── opensuse │ ├── redhat │ ├── rocky │ └── ubuntu ├── adaptation │ ├── README.md │ ├── aliyun │ ├── amazon_linux │ │ ├── 2 │ │ ├── 2023 │ │ └── default │ ├── archlinux │ │ └── default │ ├── centos │ │ ├── 9 │ │ └── default │ ├── clear │ │ └── default │ ├── debian │ │ ├── 10 │ │ ├── 11 │ │ ├── 12 │ │ ├── bookworm_sid │ │ ├── default │ │ └── trixie_sid │ ├── fedora │ │ ├── 38 │ │ ├── 39 │ │ ├── 41 │ │ └── default │ ├── opensuse │ │ └── default │ ├── oracle │ ├── redhat │ │ ├── 8 │ │ ├── 9 │ │ └── default │ ├── rocky │ └── ubuntu │ │ ├── 20.04 │ │ ├── 21.04 │ │ ├── 22.04 │ │ ├── 24.04 │ │ └── default ├── aliyun ├── apt-sources-list ├── centos ├── clear ├── common ├── config-rootfs │ ├── common │ │ ├── cleanup-fstab │ │ ├── copy-lkp-rootfs-addon │ │ └── update-rsync-rootfs-version │ ├── fedora │ │ ├── disable-dhcp │ │ └── disable-selinux │ └── ubuntu │ │ └── disable-dhcp ├── debian ├── depends │ ├── blktrace │ ├── cluster │ ├── fs │ ├── fs1 │ ├── fs2 │ ├── hw │ ├── lkp │ ├── lkp-dev │ ├── md │ ├── msr │ ├── nfsiostat │ ├── nfsiozone │ ├── numactl │ ├── numainfo │ ├── python │ ├── qemu │ └── setup-nic ├── installer │ ├── aliyun │ ├── amazon_linux │ ├── archlinux │ ├── centos │ ├── clear │ ├── debian │ ├── exaleap-riscv-linux │ ├── fedora │ ├── opensuse │ ├── oracle │ ├── redhat │ ├── rocky │ └── ubuntu ├── keep-deb └── ubuntu ├── doc ├── README-job-allocation.md ├── README-job-file.md ├── README.md ├── add-testcase.md ├── command-index │ ├── 10-install │ ├── 20-job │ ├── 40-test │ ├── 60-result │ └── 90-debug ├── community-user-guide-index.md ├── faq.md ├── how_to_kill_monitor_and_daemon.md ├── how_to_run_local_monitor.md ├── how_to_run_mytest_on_ubuntu_14.04.md └── lkp-howto.md ├── docker ├── README.md ├── amazonlinux │ └── Dockerfile ├── archlinux │ └── Dockerfile ├── attach ├── build ├── centos │ └── Dockerfile ├── debian │ └── Dockerfile ├── fedora │ └── Dockerfile ├── init ├── install ├── opensuse │ └── Dockerfile ├── oraclelinux │ └── Dockerfile ├── redhat │ ├── CentOS-8-Vault.repo │ └── Dockerfile ├── rockylinux │ └── Dockerfile ├── rt ├── run ├── test └── ubuntu │ └── Dockerfile ├── etc ├── add-max-latency ├── btrfs-crit-pattern ├── cpuid ├── default_stats.yaml ├── dmesg-kill-pattern ├── event-counter-patterns ├── event-counter-prefixes ├── ext4-crit-pattern ├── failure ├── ftrace_key_prefix ├── hide-stderr │ └── nfs ├── ignore-part-prefixes ├── ignore-stderr │ ├── OOM │ ├── blktests │ ├── boot │ ├── btrfs │ ├── cassandra │ ├── cifs │ ├── dd │ ├── ftq │ ├── fxmark │ ├── hwsim │ ├── kbuild │ ├── kernel-selftests │ ├── kernel-selftests-bpf │ ├── leaking-addresses │ ├── libhugetlbfs-test │ ├── lkp-qemu │ ├── lmbench3 │ ├── locktorture │ ├── ltp │ ├── makepkg │ ├── mce-log │ ├── mce-test │ ├── mdadm-selftests │ ├── memtier │ ├── modprobe │ ├── monitor │ ├── netperf │ ├── netpipe │ ├── ntpdate │ ├── nvml │ ├── ocfs2test │ ├── oltp │ ├── oom-killer │ ├── openssl-speed │ ├── pack-deps │ ├── perf │ ├── perf-event-attr │ ├── perf-profile │ ├── pft │ ├── phoronix-test-suite │ ├── pm-qa │ ├── pmbench │ ├── reaim │ ├── stress-ng │ ├── stutter │ ├── suspend-stress │ ├── systemd │ ├── tcrypt │ ├── test-bpf │ ├── trace-cmd │ ├── trinity │ ├── unixbench │ ├── vm-scalability │ ├── watchdog │ ├── wipefs │ ├── xfstests │ └── ycsb ├── independent-counter-prefixes ├── index-latency-all.yaml ├── index-latency.yaml ├── index-perf-all.yaml ├── index-perf.yaml ├── index-power.yaml ├── index-size.yaml ├── kconfigs.yaml ├── kmsg-denylist.raw ├── linux-device-names ├── linux-perf-test-cases ├── linux-test-cases ├── makepkg.conf ├── monitors_need_gzip ├── oops-pattern ├── oops-pattern-ignore ├── other-test-cases ├── pass ├── perf-metrics-patterns ├── perf-metrics-prefixes ├── perf-metrics-threshold.yaml ├── plot-unit.yaml ├── report-allowlist ├── stat-allowlist ├── stat-denylist ├── unit-size.yaml ├── valid-range-iostat.yaml ├── valid-range-turbostat.yaml ├── valid-range-vmstat.yaml └── xfs-alert-pattern ├── filters ├── boot_params ├── constraints.rb ├── disk ├── initrds.rb ├── md ├── need_cpu ├── need_cpuid ├── need_kconfig.rb ├── need_kconfig_hw.rb ├── need_kernel_version.rb ├── need_memory ├── need_node ├── need_physical_tbox ├── nr_threads ├── run_on_local_disk └── suggest_kconfig.rb ├── hosts ├── lkp-hsw-d01 ├── lkp-ivb-d01 ├── lkp-ivb-d02 ├── lkp-ivb-d04 ├── lkp-skl-d01 ├── vm-snb └── vm-snb-i386 ├── include ├── category │ ├── benchmark │ ├── functional │ ├── noise-benchmark │ └── power ├── cgroup2 ├── disk │ ├── nr_brd │ ├── nr_hdd │ ├── nr_pmem │ ├── nr_srd │ └── nr_ssd ├── fs │ ├── OTHERS │ ├── nfsv3 │ └── nfsv4 ├── fs1 ├── fs2 ├── fuse ├── intel_powerclamp ├── intel_pstate ├── iosched │ └── scheduler ├── kernel-selftests-lkdtm ├── md │ └── raid_level ├── swap └── tbox_group │ └── vm ├── job-scripts ├── monitor ├── monitor-mt ├── monitor-mt-noperf ├── monitor-mt-noperf.yaml ├── monitor-mt.yaml └── monitor.yaml ├── jobs ├── README.md ├── adrestia.yaml ├── aim7-fs-1brd.yaml ├── aim7-fs-raid.yaml ├── aim9.yaml ├── analyze-suspend.yaml ├── apachebench.yaml ├── autonuma-benchmark.yaml ├── avocado.yaml ├── blktests-block.yaml ├── blktests-nvme.yaml ├── blktests-scsi.yaml ├── blktests.yaml ├── blogbench-1hdd.yaml ├── blogbench-1ssd.yaml ├── blogbench.yaml ├── boot-trace.yaml ├── boot.yaml ├── borrow-10d.yaml ├── borrow-1d.yaml ├── borrow-1h.yaml ├── bust-shm-exit.yaml ├── cassandra.yaml ├── cgroup2-test.yaml ├── cgroup2.yaml ├── chromeswap.yaml ├── coremark.yaml ├── cpu-hotplug.yaml ├── cyclictest.yaml ├── dbench.yaml ├── debug.yaml ├── ebizzy-cgroup2.yaml ├── ebizzy.yaml ├── exit-free.yaml ├── ext4-frags.yaml ├── filebench-part1-1ssd.yaml ├── filebench-part1.yaml ├── filebench-part2.yaml ├── filebench-part3.yaml ├── fio-basic-1hdd-write-large-memory.yaml ├── fio-basic-1hdd-write.yaml ├── fio-basic-1ssd-nvme-read.yaml ├── fio-basic-1ssd-nvme-write-nfs.yaml ├── fio-basic-1ssd-nvme-write.yaml ├── fio-basic-1ssd-write.yaml ├── fio-basic-2pmem-256G.yaml ├── fio-basic-2pmem-dax-256G.yaml ├── fio-basic-2pmem-dax-lkp-csl-2sp2.yaml ├── fio-basic-2pmem-device-dax-256G.yaml ├── fio-basic-2pmem.yaml ├── fio-basic-local-disk.yaml ├── fio-basic-pagecache-demo.yaml ├── fio-basic-read-1ssd.yaml ├── fio-jbod-12hdd-randwrite-sync-4k.yaml ├── fio-jbod-12hdd.yaml ├── fsmark-1hdd-400m.yaml ├── fsmark-1hdd-60g.yaml ├── fsmark-1hdd.yaml ├── fsmark-1ssd-nfs.yaml ├── fsmark-1ssd-nvme-small-nfs.yaml ├── fsmark-1ssd-nvme-small.yaml ├── fsmark-1ssd.yaml ├── fsmark-3hdd-raid-nfs.yaml ├── fsmark-4hdd-raid.yaml ├── fsmark-ext4.yaml ├── fsmark-generic-1brd.yaml ├── fsmark-generic-1hdd.yaml ├── fsmark-generic-1ssd.yaml ├── fsmark-generic-brd-raid.yaml ├── fsmark-stress-journal-1brd.yaml ├── fsmark-stress-journal-1hdd.yaml ├── fsmark-stress-journal-1ssd.yaml ├── fsmark-stress-journal-raid.yaml ├── ftq.yaml ├── ftrace-onoff.yaml ├── fwq.yaml ├── fxmark-1ssd.yaml ├── fxmark.yaml ├── hackbench-cgroup2.yaml ├── hackbench-cpuset.yaml ├── hackbench.yaml ├── hibernate-stress.yaml ├── hibernate.yaml ├── hpcc.yaml ├── hwsim-part1.yaml ├── hwsim-part2.yaml ├── hwsim-part3.yaml ├── hwsim-part4.yaml ├── idle-inject.yaml ├── idle.yaml ├── igt-part1.yaml ├── igt-part2.yaml ├── igt-part3.yaml ├── igt-part4.yaml ├── igt-part5.yaml ├── intel-ipsec-mb ├── iozone.yaml ├── iperf.yaml ├── jitter.yaml ├── kbuild-cgroup2.yaml ├── kbuild.yaml ├── kbuild8.yaml ├── kernbench.yaml ├── kernel-selftests-bpf.yaml ├── kernel-selftests-dynamic-debug.yaml ├── kernel-selftests-ftrace.yaml ├── kernel-selftests-kvm.yaml ├── kernel-selftests-mm-vmalloc.yaml ├── kernel-selftests-net-perf.yaml ├── kernel-selftests-net.yaml ├── kernel-selftests-rcutorture.yaml ├── kernel-selftests-rust.yaml ├── kernel-selftests-sgx.yaml ├── kernel-selftests-x86.yaml ├── kernel-selftests.yaml ├── kmemleak-test.yaml ├── ku-latency.yaml ├── kunit-group-03.yaml ├── kunit.yaml ├── kvm-unit-tests-qemu.yaml ├── kvm-unit-tests.yaml ├── leaking-addresses.yaml ├── lib-micro.yaml ├── libhugetlbfs-test.yaml ├── linkbench.yaml ├── linpack-swap.yaml ├── linpack.yaml ├── lkvs-client.yaml ├── lkvs-server.yaml ├── lkvs.yaml ├── lmbench3-bw-mem.yaml ├── lmbench3-mem-latency.yaml ├── lmbench3.yaml ├── local-tests │ ├── ebizzy-local-test.yaml │ ├── fio-basic-local-test.yaml │ ├── hackbench-local-test.yaml │ ├── kbuild-local-test.yaml │ ├── netperf-local-test.yaml │ ├── pigz-local-test.yaml │ ├── reaim-local-test.yaml │ ├── unixbench-local-test.yaml │ ├── vm-scalability-local-test.yaml │ └── will-it-scale-local-test.yaml ├── locktorture.yaml ├── ltp-crashme.yaml ├── ltp-cve.yaml ├── ltp-dio.yaml ├── ltp-lvm.yaml ├── ltp-mm-oom.yaml ├── ltp-mm.yaml ├── ltp-numa.yaml ├── ltp-part1.yaml ├── ltp-part2.yaml ├── ltp-part3.yaml ├── ltp-part4.yaml ├── ltp-part5.yaml ├── ltp-part6.yaml ├── ltp-scsi_debug.yaml ├── ltp-stress-part1.yaml ├── ltp-stress-part2.yaml ├── ltp-syscalls-numa.yaml ├── ltp-syscalls.yaml ├── ltp-tracing.yaml ├── lz4-test.yaml ├── makepkg-deps.yaml ├── makepkg.yaml ├── mce-log.yaml ├── mce-test.yaml ├── mcperf.yaml ├── mdadm-selftests.yaml ├── memtier-dcpmm.yaml ├── memtier.yaml ├── mutilate.yaml ├── mytest.yaml ├── ndctl.yaml ├── nepim.yaml ├── netperf-cgroup2.yaml ├── netperf.yaml ├── netpipe.yaml ├── nfs-iozone.yaml ├── nfs-test.yaml ├── nuttcp.yaml ├── nvml-dax.yaml ├── nvml.yaml ├── ocfs2test-mkfs.yaml ├── ocfs2test-quick.yaml ├── ocfs2test.yaml ├── oltp.yaml ├── openssl-speed.yaml ├── pack-deps.yaml ├── packetdrill.yaml ├── pbzip2.yaml ├── perf-bench-futex.yaml ├── perf-bench-numa-mem.yaml ├── perf-bench-sched-pipe.yaml ├── perf-event-tests.yaml ├── perf-fuzzer.yaml ├── perf-sanity-tests.yaml ├── pft.yaml ├── pgbench.yaml ├── phpbench.yaml ├── pigz-cgroup2.yaml ├── pigz.yaml ├── pixz.yaml ├── plzip.yaml ├── pm-qa-laptops.yaml ├── pm-qa.yaml ├── pmbench-dcpmm.yaml ├── pmbench.yaml ├── postmark.yaml ├── power-idle.yaml ├── pts-avx-part1.yaml ├── pts-avx-part2.yaml ├── pts-bad.yaml ├── pts-blender-opencl.yaml ├── pts-needx-opencl.yaml ├── pts-needx-part1.yaml ├── pts-opencl.yaml ├── pts-part1.yaml ├── pts-part2.yaml ├── pts-part3.yaml ├── pts-part4.yaml ├── pts-sensor.yaml ├── pts-slow.yaml ├── pxz.yaml ├── pybench.yaml ├── qat.yaml ├── qperf.yaml ├── rcurefscale.yaml ├── rcuscale.yaml ├── rcutorture.yaml ├── rdma-pyverbs.yml ├── reaim-disk-1ssd.yaml ├── reaim-disk.yaml ├── reaim.yaml ├── redis.yaml ├── rocksdb.yaml ├── rt-app.yaml ├── schbench.yaml ├── siege.yaml ├── simd-stress.yaml ├── sockperf.yaml ├── stream.yaml ├── stress-ng-1hdd.yaml ├── stress-ng-1ssd.yaml ├── stress-ng-cpu-cache.yaml ├── stress-ng-network.yaml ├── stress-ng-part1.yaml ├── stress-ng-part2.yaml ├── stress-ng-part3.yaml ├── stress-ng-part4.yaml ├── stress-ng-part5.yaml ├── stress-ng-scheduler.yaml ├── stutter.yaml ├── suspend-stress-10-quick.yaml ├── suspend-stress-freeze.yaml ├── suspend-stress.yaml ├── suspend.yaml ├── swapin.yaml ├── sysbench-cpu.yaml ├── sysbench-fileio-1ssd.yaml ├── sysbench-fileio.yaml ├── sysbench-memory.yaml ├── sysbench-mutex.yaml ├── sysbench-threads.yaml ├── tbench.yaml ├── tcrypt.yaml ├── test-bpf.yaml ├── thrulay.yaml ├── tinymembench.yaml ├── tlbflush.yaml ├── trinity-300s.yaml ├── trinity.yaml ├── unixbench-2d.yaml ├── unixbench-cgroup2.yaml ├── unixbench.yaml ├── uperf.yaml ├── v4l2.yaml ├── vm-scalability-hugetlb.yaml ├── vm-scalability-numa.yaml ├── vm-scalability-swap-1pmem.yaml ├── vm-scalability-swap-1ssd.yaml ├── vm-scalability-swap-4pmem.yaml ├── vm-scalability-swap.yaml ├── vm-scalability.yaml ├── vmem-nvdimm.yaml ├── will-it-scale-cgroup2.yaml ├── will-it-scale-part1.yaml ├── will-it-scale-part2.yaml ├── will-it-scale-part3.yaml ├── will-it-scale-part4.yaml ├── will-it-scale.yaml ├── xfstests-btrfs.yaml ├── xfstests-cifs.yaml ├── xfstests-ext4-dax.yaml ├── xfstests-ext4.yaml ├── xfstests-generic-dax.yaml ├── xfstests-generic-part1.yaml ├── xfstests-generic-part2.yaml ├── xfstests-generic-part3.yaml ├── xfstests-generic-part4.yaml ├── xfstests-ocfs2.yaml ├── xfstests-udf.yaml ├── xfstests-xfs-part1.yaml ├── xfstests-xfs-part2.yaml ├── xfstests-xfs-part3.yaml ├── xfstests-xfs-part4.yaml ├── xfstests-xfs-part5.yaml ├── xfstests-xfs-slow.yaml └── ycsb.yaml ├── kbuild ├── etc │ └── kbuild-kcflags ├── kbuild.sh └── make.cross ├── lib ├── apache.sh ├── array.rb ├── assert.rb ├── axis.rb ├── bash.rb ├── bootstrap.sh ├── bounds.rb ├── build.sh ├── builtin.sh ├── cache.rb ├── cgroup.sh ├── changed_stat.rb ├── common.rb ├── common.sh ├── compare.rb ├── constant.rb ├── constant.sh ├── curl.sh ├── data_analysis.rb ├── data_store.rb ├── debug.sh ├── detect-system.sh ├── distro_info.rb ├── dmesg.rb ├── docker.sh ├── enumerator.rb ├── env.sh ├── erb.rb ├── fs_ext.sh ├── ftrace.rb ├── ftrace.sh ├── ftrace_funcgraph.rb ├── git-tag │ └── tag-patterns-default ├── git.rb ├── git.sh ├── git │ ├── author.rb │ ├── base.rb │ ├── cache.rb │ ├── lib.rb │ └── object.rb ├── hash.rb ├── hashugar.rb ├── host.sh ├── http.sh ├── install.rb ├── install.sh ├── job-init.sh ├── job.rb ├── job.sh ├── job2sh.rb ├── kernel_tag.rb ├── kexec.sh ├── kmemleak.sh ├── lkp_cmd.sh ├── lkp_git.rb ├── lkp_path.rb ├── lkp_path.sh ├── lkp_pattern.rb ├── lkp_tmpdir.rb ├── log.rb ├── log.sh ├── matrix.rb ├── misc-base.sh ├── mount.sh ├── network.sh ├── noise.rb ├── nresult_root.rb ├── numactl.sh ├── nvdimm.sh ├── perf_metrics.rb ├── plot.rb ├── programs.rb ├── property.rb ├── qemu.sh ├── reboot.sh ├── repo_spec.rb ├── reproduce-log.sh ├── resctrl.sh ├── result.rb ├── result.sh ├── result_root.rb ├── ruby.rb ├── run-env.sh ├── run_env.rb ├── runtime_loop.sh ├── statistics.rb ├── stats.rb ├── string.rb ├── sysinfo.sh ├── tbox.sh ├── tests.rb ├── tests │ ├── avocado.sh │ ├── build-qemu.sh │ ├── common.sh │ ├── fixup.sh │ ├── kernel-selftests.sh │ ├── kvm-unit-tests.sh │ ├── lkvs.sh │ ├── ltp.sh │ ├── nvml.sh │ ├── perf_event_tests.sh │ ├── phoronix-test-suite.sh │ ├── pkgbuild.sh │ ├── pmu-tools.sh │ ├── stats.rb │ ├── update-llvm.sh │ ├── version.sh │ ├── vmem.sh │ └── xfstests.sh ├── time.rb ├── ucode.sh ├── unit.rb ├── unit.sh ├── upload.sh ├── wait.sh ├── wget.sh ├── wget_busybox.sh └── yaml.rb ├── lkp-exec ├── __result ├── __rt ├── _result ├── _rm ├── _rt ├── bash ├── dash ├── delete_mrts ├── docker ├── install ├── irb ├── ll ├── ls ├── pry ├── qemu ├── result ├── rm-path ├── rt ├── ruby ├── ruby_eval └── stat ├── mailing-list ├── dpdk │ ├── DEFAULTS │ └── dev.dpdk.org ├── git │ ├── DEFAULTS │ └── git.vger.kernel.org ├── linux │ ├── DEFAULTS │ ├── alsa-devel.alsa-project.org │ ├── alsa-devel.vger.kernel.org │ ├── bpf.vger.kernel.org │ ├── ceph-devel.vger.kernel.org │ ├── cgroups.vger.kernel.org │ ├── devicetree.vger.kernel.org │ ├── dmaengine.vger.kernel.org │ ├── dri-devel.lists.freedesktop.org │ ├── driverdev-devel.linuxdriverproject.org │ ├── fio.vger.kernel.org │ ├── intel-gfx.lists.freedesktop.org │ ├── intel-wired-lan.osuosl.org │ ├── iommu.lists.linux.dev │ ├── kernel-janitors.vger.kernel.org │ ├── kernel-patch-test.lists.linaro.org │ ├── kernel-testers.vger.kernel.org │ ├── keyrings.vger.kernel.org │ ├── kvm-ppc.vger.kernel.org │ ├── kvm.vger.kernel.org │ ├── linux-acpi.vger.kernel.org │ ├── linux-actions.lists.infradead.org │ ├── linux-am33-list.redhat.com │ ├── linux-amlogic.lists.infradead.org │ ├── linux-api.vger.kernel.org │ ├── linux-arm-kernel.lists.infradead.org │ ├── linux-arm-msm.vger.kernel.org │ ├── linux-arm.lists.infradead.org │ ├── linux-aspeed.lists.ozlabs.org │ ├── linux-atm-general.lists.sourceforge.net │ ├── linux-audit.redhat.com │ ├── linux-bcache.vger.kernel.org │ ├── linux-block.vger.kernel.org │ ├── linux-bluetooth.vger.kernel.org │ ├── linux-btrfs.vger.kernel.org │ ├── linux-c6x-dev.linux-c6x.org │ ├── linux-cachefs.redhat.com │ ├── linux-cifs.vger.kernel.org │ ├── linux-clk.vger.kernel.org │ ├── linux-crypto.vger.kernel.org │ ├── linux-cxl.vger.kernel.org │ ├── linux-edac.vger.kernel.org │ ├── linux-embedded.vger.kernel.org │ ├── linux-erofs.lists.ozlabs.org │ ├── linux-ext4.vger.kernel.org │ ├── linux-fbdev.vger.kernel.org │ ├── linux-fsdevel.vger.kernel.org │ ├── linux-gpio.vger.kernel.org │ ├── linux-graphics-maintainer.mailman2.vmware.com │ ├── linux-i2c.vger.kernel.org │ ├── linux-ide.vger.kernel.org │ ├── linux-iio.vger.kernel.org │ ├── linux-ima-devel.lists.sourceforge.net │ ├── linux-ima-user.lists.sourceforge.net │ ├── linux-kernel-mentees.lists.linuxfoundation.org │ ├── linux-kernel.vger.kernel.org │ ├── linux-kselftest.vger.kernel.org │ ├── linux-media.vger.kernel.org │ ├── linux-mm.kvack.org │ ├── linux-mmc.vger.kernel.org │ ├── linux-nfs.vger.kernel.org │ ├── linux-nvdimm.lists.01.org │ ├── linux-nvme.lists.infradead.org │ ├── linux-omap.vger.kernel.org │ ├── linux-pci.vger.kernel.org │ ├── linux-pm.vger.kernel.org │ ├── linux-raid.vger.kernel.org │ ├── linux-rdma.vger.kernel.org │ ├── linux-riscv.lists.infradead.org │ ├── linux-rpi-kernel.lists.infradead.org │ ├── linux-scsi.vger.kernel.org │ ├── linux-serial.vger.kernel.org │ ├── linux-snps-arc.lists.infradead.org │ ├── linux-stm32.st-md-mailman.stormreply.com │ ├── linux-usb.vger.kernel.org │ ├── linux-wireless.vger.kernel.org │ ├── linux-xfs.vger.kernel.org │ ├── linux1394-devel.lists.sourceforge.net │ ├── linuxppc-dev.lists.ozlabs.org │ ├── mptcp.lists.01.org │ ├── mptcp.lists.linux.dev │ ├── netdev.vger.kernel.org │ ├── netfilter-devel.vger.kernel.org │ ├── ntfs3.lists.linux.dev │ ├── nvdimm.lists.linux.dev │ ├── patches.lists.linux.dev │ ├── rust-for-linux.vger.kernel.org │ └── sound-open-firmware.alsa-project.org ├── openvswitch │ ├── DEFAULTS │ └── dev.openvswitch.org ├── qemu │ ├── DEFAULTS │ └── qemu-devel.nongnu.org └── xen │ ├── DEFAULTS │ └── xen-devel.lists.xenproject.org ├── monitors ├── blktrace ├── bpfcc-tools ├── bpfcc-tools2 ├── bpfcc-tools3 ├── bpftrace ├── bpftrace.bt ├── buddyinfo ├── cat-proc-pid ├── cpufreq-stats ├── cpuidle ├── custom-monitor ├── debug-monitor ├── diskstats ├── energy ├── ethtool ├── ftrace ├── ftrace-event ├── ftrace-funcgraph ├── grep_cpuidle ├── heartbeat ├── interrupts ├── iostat ├── irq_exception_noise ├── irq_noise ├── kmemleak ├── kmsg ├── kthread_noise ├── kvm ├── lock_stat ├── mdstat ├── meminfo ├── memory--numa_stat ├── memory--stat ├── mountstats ├── mpstat ├── nfs-hang ├── nfsstat ├── no-stdout │ ├── boot-time │ ├── cat-file │ ├── perf-c2c │ ├── perf-c2c.yaml │ ├── perf-mem │ ├── perf-profile │ ├── perf-pt │ ├── perf-report-srcline │ ├── sar │ ├── trace-cmd │ └── wrapper ├── numa-meminfo ├── numa-numastat ├── numa-vmstat ├── one-shot │ ├── bdi_dev_mapping │ ├── boot-meminfo │ ├── boot-slabinfo │ ├── find │ ├── memmap │ ├── numainfo │ └── wrapper ├── oom-killer ├── pagetypeinfo ├── perf-node ├── perf-probe ├── perf-record-report ├── perf-sched ├── perf-stat ├── plain │ ├── wait │ └── watchdog ├── pmeter ├── pmeter:yokogawa-wt310 ├── pmeter_extech ├── pmu-tools ├── proc-stat ├── proc-vmstat ├── save_on_exit ├── sched_debug ├── slabinfo ├── softirqs ├── stack ├── syscalls ├── thermal ├── top ├── toplev ├── turbostat ├── uptime ├── vmstat ├── wrapper └── zoneinfo ├── pack ├── default └── quiet ├── params ├── agent_threads ├── cpuset.cpus ├── cpuset.mems ├── disk ├── eatmem_size ├── fs ├── fs1 ├── fs2 ├── iosched ├── iterations ├── mapsize ├── master_threads ├── md ├── memcached_memsize ├── memory.high ├── memory.limit_in_bytes ├── memory.low ├── memory.max ├── memory.memsw.limit_in_bytes ├── memory.soft_limit_in_bytes ├── message_threads ├── mytest ├── nr_instances ├── nr_processes ├── nr_task ├── nr_threads ├── period ├── ramdisk_size ├── runtime ├── setsize ├── size ├── test_memory_size ├── testtime ├── total_setsize ├── unit_size └── worker_threads ├── plot ├── plot-all ├── plot-balance_dirty_pages ├── plot-bdi_dirty_state ├── plot-global_dirty_state ├── plot-iostat ├── plot-lmbench ├── plot-nfs-commit ├── plot-task-bw ├── plot-vmstat └── plot-writeback_single_inode ├── post-run └── .template_print-result-root ├── programs ├── adrestia │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ └── depends │ └── run ├── aim7 │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── 01.patch │ │ └── PKGBUILD │ └── run ├── aim9 │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── 01.patch │ │ └── PKGBUILD │ └── run ├── analyze-suspend │ ├── include │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev │ └── run ├── apachebench │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ └── depends │ └── run ├── autonuma-benchmark │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ └── depends │ └── run ├── avocado │ ├── include │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── addon │ │ │ ├── tdx-centos.cfg │ │ │ └── tdx-ubuntu.cfg │ │ ├── depends │ │ └── depends-dev │ └── run ├── blktests │ ├── include │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── addon │ │ │ └── tests │ │ │ │ ├── block-standalone │ │ │ │ ├── nvme-standalone │ │ │ │ └── srp-standalone │ │ ├── depends │ │ └── depends-dev │ └── run ├── blogbench │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ └── PKGBUILD │ └── run ├── bpfcc-tools │ ├── include │ ├── meta.yaml │ └── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev ├── bpftrace │ ├── meta.yaml │ └── pkg │ │ └── PKGBUILD ├── bust-shm-exit │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ └── PKGBUILD │ └── run ├── cassandra │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ └── depends │ └── run ├── chromeswap │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ └── depends │ └── run ├── coremark │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ └── PKGBUILD │ └── run ├── cpu-hotplug │ ├── meta.yaml │ └── run ├── cyclictest │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ └── depends-dev │ └── run ├── daxctl │ ├── meta.yaml │ └── pkg ├── dbench │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev │ └── run ├── dd │ ├── jobs │ │ ├── dd-write-11hdd-ext4.yaml │ │ ├── dd-write-11hdd.yaml │ │ ├── dd-write-1hdd-fuse.yaml │ │ ├── dd-write-1hdd.yaml │ │ ├── dd-write-1ssd.yaml │ │ ├── dd-write-4hdd-fuse.yaml │ │ ├── dd-write-4hdd.yaml │ │ ├── dd-write-hdd-usb.yaml │ │ ├── dd-write-nfs.yaml │ │ └── dd-write.yaml │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ └── depends │ └── run ├── debug-test │ └── run ├── default │ ├── meta.yaml │ ├── parse │ └── run ├── device-dax │ ├── meta.yaml │ └── pkg ├── eatmem │ ├── meta.yaml │ └── pkg ├── ebizzy │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── .AURINFO │ │ ├── 0001-ebizzy.patch │ │ └── PKGBUILD │ └── run ├── energy │ ├── meta.yaml │ └── pkg ├── exit-free │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ └── depends │ └── run ├── ext4-frags │ ├── meta.yaml │ ├── parse │ └── run ├── f2fs-tools │ ├── meta.yaml │ └── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev ├── filebench │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends-dev │ │ ├── filebench01.patch │ │ └── filebench02.patch │ └── run ├── fio │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev │ └── run ├── fsmark │ ├── include │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ └── PKGBUILD │ └── run ├── ftq │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ └── PKGBUILD │ └── run ├── ftrace-onoff │ ├── include │ ├── meta.yaml │ └── run ├── fwq │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ └── PKGBUILD │ └── run ├── fxmark │ ├── include │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ ├── depends-dev │ │ └── fxmark.patch │ └── run ├── gcc │ ├── meta.yaml │ └── pkg │ │ ├── PKGBUILD │ │ ├── gcc-4.8-filename-output.patch │ │ ├── gcc-ada.install │ │ ├── gcc-fortran.install │ │ ├── gcc-go.install │ │ ├── gcc-libs.install │ │ └── gcc.install ├── hackbench │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev │ └── run ├── hpcc │ ├── include │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── allowlist │ │ └── depends │ └── run ├── hwsim │ ├── include │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev │ └── run ├── idle │ ├── meta.yaml │ ├── parse │ └── run ├── igt │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── addon │ │ │ └── tests │ │ │ │ └── standalone │ │ ├── depends │ │ ├── depends-dev │ │ └── exclude │ └── run ├── intel-ipsec-mb │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ └── depends │ └── run ├── iostat │ ├── meta.yaml │ ├── parse │ └── pkg │ │ └── depends ├── iozone │ ├── include │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ └── iozone.install │ └── run ├── iperf │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ └── depends │ └── run ├── jitter │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ └── PKGBUILD │ └── run ├── kbuild │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ └── depends │ └── run ├── kernbench │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ └── depends │ └── run ├── kernel-selftests-bpf │ ├── include │ ├── parse │ ├── pkg │ └── run ├── kernel-selftests-rust │ ├── include │ ├── parse │ ├── pkg │ └── run ├── kernel-selftests │ ├── include │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev │ └── run ├── kmemleak-test │ ├── meta.yaml │ ├── parse │ └── run ├── ku-latency │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── 0001-ku-latency.c-rename-var-index-to-kuIndex.patch │ │ └── PKGBUILD │ └── run ├── kunit │ ├── include │ ├── meta.yaml │ ├── parse │ └── run ├── kvm-unit-tests-qemu │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── addon │ │ └── depends │ └── run ├── kvm-unit-tests │ ├── include │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ └── depends │ └── run ├── leaking-addresses │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev │ └── run ├── lib-micro │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ └── list.patch │ └── run ├── libfdt-dev │ ├── meta.yaml │ └── pkg │ │ └── PKGBUILD ├── libhugetlbfs-test │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── 0001-tests-hugetests.h-fix-compile-errors-under-centos.patch │ │ ├── PKGBUILD │ │ └── depends │ └── run ├── liboop │ ├── meta.yaml │ └── pkg │ │ └── PKGBUILD ├── linkbench │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev │ └── run ├── linpack │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── .AURINFO │ │ ├── PKGBUILD │ │ ├── depends │ │ ├── linpack.conf │ │ ├── readme.install │ │ └── runme.template │ └── run ├── lkp-src │ └── pkg │ │ └── PKGBUILD ├── lkvs │ ├── include │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ └── depends │ └── run ├── lmbench3 │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── Fix-rpc.h-not-found.patch │ │ ├── PKGBUILD │ │ ├── depends │ │ └── lmbench3.patch │ └── run ├── locktorture │ ├── include │ ├── meta.yaml │ ├── parse │ └── run ├── ltp │ ├── include │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── addon │ │ │ ├── exclude │ │ │ └── tests │ │ │ │ └── syscalls-standalone │ │ ├── depends │ │ └── depends-dev │ └── run ├── lz4-test │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ └── depends │ └── run ├── lzlib │ ├── meta.yaml │ └── pkg │ │ └── PKGBUILD ├── makepkg-deps ├── makepkg │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ └── depends │ └── run ├── mce-log │ ├── include │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev │ └── run ├── mce-test │ ├── include │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev │ └── run ├── mcperf │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ └── depends │ └── run ├── mdadm-selftests │ ├── include │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev │ └── run ├── memcached-setup │ └── pkg │ │ └── depends ├── memcached │ └── pkg │ │ └── depends ├── memtier │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev │ └── run ├── migratepages │ ├── meta.yaml │ ├── parse │ └── run ├── mongodb │ ├── meta.yaml │ └── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev ├── mountstats │ ├── parse │ └── pkg │ │ └── depends ├── mpstat │ ├── meta.yaml │ ├── parse │ └── pkg ├── mutilate │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── 0001-SConstruct-update-to-python3-version.patch │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev │ └── run ├── mytest │ ├── meta.yaml │ └── run ├── ndctl │ ├── include │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ ├── depends-dev │ │ └── ndctl.patch │ └── run ├── nepim │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── 0001-src-Makefile-change-sequence-of-options-for-gcc.patch │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev │ └── run ├── netperf │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev │ └── run ├── netpipe │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ └── depends │ └── run ├── nuttcp │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ └── PKGBUILD │ └── run ├── nvdimm │ ├── meta.yaml │ └── pkg ├── nvml │ ├── include │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev │ └── run ├── ocfs2test │ ├── include │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── addon │ │ │ ├── tests │ │ │ │ ├── test-aiostress │ │ │ │ ├── test-backup_super │ │ │ │ ├── test-buildkernel │ │ │ │ ├── test-create_and_open │ │ │ │ ├── test-directaio │ │ │ │ ├── test-filesizelimits │ │ │ │ ├── test-fillverifyholes │ │ │ │ ├── test-inline │ │ │ │ ├── test-mkfs │ │ │ │ ├── test-mmap │ │ │ │ ├── test-mmaptruncate │ │ │ │ ├── test-quick │ │ │ │ ├── test-reflink │ │ │ │ ├── test-renamewriterace │ │ │ │ ├── test-reserve_space │ │ │ │ ├── test-sendfile │ │ │ │ ├── test-splice │ │ │ │ ├── test-tunefs │ │ │ │ └── test-xattr │ │ │ └── timing-0.0.1.tar.gz │ │ ├── depends │ │ ├── depends-dev │ │ ├── ocfs2test.patch │ │ ├── ocfs2test02.patch │ │ └── ocfs2test03.patch │ └── run ├── oltp │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev │ └── run ├── openssl-speed │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ └── depends │ └── run ├── pack-deps │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ └── depends │ └── run ├── packetdrill │ ├── include │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev │ └── run ├── pbzip2 │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev │ └── run ├── pepc │ ├── meta.yaml │ └── pkg │ │ ├── PKGBUILD │ │ └── depends ├── perf-bench-futex │ ├── meta.yaml │ ├── parse │ ├── pkg │ └── run ├── perf-bench-numa-mem │ ├── meta.yaml │ ├── parse │ ├── pkg │ └── run ├── perf-bench-sched-pipe │ ├── meta.yaml │ ├── parse │ ├── pkg │ └── run ├── perf-c2c │ ├── meta.yaml │ ├── parse │ └── pkg ├── perf-event-tests │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ └── depends │ └── run ├── perf-fuzzer │ ├── meta.yaml │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── pr-25.patch │ └── run ├── perf-mem │ ├── meta.yaml │ ├── parse │ └── pkg ├── perf-node │ ├── meta.yaml │ ├── parse │ └── pkg ├── perf-probe │ ├── meta.yaml │ └── pkg ├── perf-profile │ ├── include │ ├── meta.yaml │ ├── parse │ └── pkg ├── perf-record-report │ ├── meta.yaml │ └── pkg ├── perf-report-srcline │ ├── meta.yaml │ └── pkg ├── perf-sanity-tests │ ├── meta.yaml │ ├── parse │ ├── pkg │ └── run ├── perf-stat │ ├── include │ ├── meta.yaml │ ├── parse │ └── pkg ├── perf │ ├── meta.yaml │ └── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev ├── pft │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev │ └── run ├── pgbench │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ └── depends │ └── run ├── phoronix-test-suite │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ └── depends │ ├── run │ └── xinitrc ├── phpbench │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ └── depends │ └── run ├── pigz │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ └── depends │ └── run ├── pixz │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev │ └── run ├── plzip │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev │ └── run ├── pm-qa │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev │ ├── run │ └── xinitrc ├── pmbench │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev │ └── run ├── pmdk │ ├── meta.yaml │ └── pkg │ │ ├── PKGBUILD │ │ └── depends-dev ├── pmu-tools │ ├── meta.yaml │ ├── parse │ └── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev ├── postmark │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ └── PKGBUILD │ └── run ├── power-idle │ ├── meta.yaml │ ├── parse │ └── run ├── pxz │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev │ └── run ├── pybench │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ └── depends │ └── run ├── qat │ ├── include │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ └── depends │ └── run ├── qemu-next │ └── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev ├── qperf │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev │ └── run ├── rcurefscale │ ├── include │ ├── meta.yaml │ ├── parse │ └── run ├── rcuscale │ ├── include │ ├── meta.yaml │ ├── parse │ └── run ├── rcutorture │ ├── include │ ├── meta.yaml │ ├── parse │ └── run ├── rdma-pyverbs │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev │ └── run ├── reaim │ ├── include │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ ├── depends-dev │ │ └── reaim.patch │ └── run ├── redis-server │ ├── meta.yaml │ └── pkg │ │ └── PKGBUILD ├── redis │ ├── meta.yaml │ ├── parse │ └── run ├── rocksdb │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev │ └── run ├── rt-app │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ ├── depends-dev │ │ └── rt-app.patch │ └── run ├── rt-tests │ ├── meta.yaml │ └── pkg │ │ ├── PKGBUILD │ │ └── depends-dev ├── run-ipconfig.i386 │ └── pkg │ │ └── depends ├── run-ipconfig │ └── pkg │ │ └── depends ├── sar │ ├── meta.yaml │ ├── parse │ └── pkg │ │ └── PKGBUILD ├── schbench │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ └── PKGBUILD │ └── run ├── siege │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ └── depends │ └── run ├── simd-stress │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ └── PKGBUILD │ └── run ├── sleep │ ├── meta.yaml │ ├── parse │ └── run ├── sockperf │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ └── PKGBUILD │ └── run ├── stream │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ └── depends │ └── run ├── stress-ng │ ├── include │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev │ └── run ├── stutter │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ └── PKGBUILD │ └── run ├── suspend-stress │ ├── include │ ├── meta.yaml │ ├── parse │ └── run ├── suspend │ ├── include │ ├── meta.yaml │ ├── parse │ └── run ├── swapin │ ├── meta.yaml │ ├── parse │ ├── pkg │ └── run ├── sysbench-cpu │ ├── meta.yaml │ ├── parse │ ├── pkg │ └── run ├── sysbench-fileio │ ├── meta.yaml │ ├── parse │ ├── pkg │ └── run ├── sysbench-memory │ ├── meta.yaml │ ├── parse │ ├── pkg │ └── run ├── sysbench-mutex │ ├── meta.yaml │ ├── parse │ ├── pkg │ └── run ├── sysbench-threads │ ├── meta.yaml │ ├── parse │ ├── pkg │ └── run ├── sysbench │ ├── meta.yaml │ ├── parse │ └── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ ├── depends-dev │ │ └── fix-race-in-rnd.patch ├── tbench │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev │ └── run ├── tcrypt │ ├── include │ ├── meta.yaml │ ├── parse │ └── run ├── test-bpf │ ├── include │ ├── meta.yaml │ ├── parse │ └── run ├── thrulay │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ └── PKGBUILD │ └── run ├── tinymembench │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ └── depends │ └── run ├── tlbflush │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ └── tlbflush.c │ └── run ├── toplev │ ├── meta.yaml │ ├── parse │ └── pkg ├── trace-cmd │ ├── meta.yaml │ └── pkg │ │ ├── PKGBUILD │ │ └── depends-dev ├── trinity-static-i386 │ ├── meta.yaml │ └── pkg │ │ ├── PKGBUILD │ │ └── depends-dev ├── trinity-static-x86_64 │ ├── meta.yaml │ └── pkg │ │ ├── PKGBUILD │ │ └── depends-dev ├── trinity │ ├── meta.yaml │ ├── pkg │ │ ├── PKGBUILD │ │ └── depends-dev │ └── run ├── turbostat │ ├── meta.yaml │ ├── parse │ └── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev ├── unixbench │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ ├── depends-dev │ │ └── unixbench.patch │ ├── run │ └── xinitrc ├── uperf │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev │ ├── run │ └── uperf_web.xml ├── v4l2 │ ├── include │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev │ └── run ├── vm-scalability │ ├── include │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev │ └── run ├── vmem │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ └── depends-dev │ └── run ├── vmstat │ ├── meta.yaml │ ├── parse │ └── pkg │ │ └── depends ├── will-it-scale │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── PKGBUILD │ │ ├── depends │ │ ├── depends-dev │ │ └── will-it-scale.patch │ └── run ├── xfstests │ ├── include │ ├── meta.yaml │ ├── parse │ ├── pkg │ │ ├── .SRCINFO │ │ ├── PKGBUILD │ │ ├── addon │ │ │ ├── cifs-recommended │ │ │ ├── split-rules │ │ │ ├── tests │ │ │ │ ├── btrfs-standalone │ │ │ │ ├── ext4-standalone │ │ │ │ ├── generic-standalone │ │ │ │ └── xfs-standalone │ │ │ └── tools │ │ │ │ ├── xfstests-extract-new-testcase │ │ │ │ └── xfstests-extract-new-testcase.sh │ │ ├── depends │ │ ├── depends-dev │ │ └── xfstests.install │ └── run └── ycsb │ ├── meta.yaml │ ├── parse │ ├── pkg │ ├── PKGBUILD │ └── depends │ └── run ├── repo └── linux │ ├── .ignore │ ├── 96boards │ ├── DEFAULTS │ ├── aaronlu │ ├── abelloni │ ├── abelvesa │ ├── abhinavk-msm │ ├── ablock84-btrfs │ ├── acme │ ├── acmel │ ├── acpi │ ├── acrn │ ├── adamschmalhofer │ ├── aegl │ ├── afaerber │ ├── afaerber-actions │ ├── afaerber-lora │ ├── afaerber-realtek │ ├── agd5f │ ├── agk-dm │ ├── agraf-2.6 │ ├── agross │ ├── agross-msm │ ├── agruen-richacl │ ├── ah-configfs │ ├── ah-lkp │ ├── ah-rust-timekeeping │ ├── aia21-ntfs │ ├── airlied │ ├── ajitkhaparde1 │ ├── ak-misc │ ├── akpm-mm │ ├── akpm-mm-git │ ├── akpm-mm-play │ ├── akpm-mmtemp │ ├── alaahl │ ├── alarsson-sparc │ ├── alexandrebelloni │ ├── alexghiti │ ├── alexshi │ ├── alexshi-power-scheduling │ ├── alibaba-alikernel │ ├── allisonhenderson-xfs-work │ ├── alobakin │ ├── alsa-kprivate │ ├── ambarus │ ├── amd-pstate │ ├── amir73il │ ├── amit-virtio │ ├── amlogic │ ├── ammarfaizi2-block │ ├── anderco │ ├── andersson │ ├── andersson-remoteproc │ ├── andi-shyti │ ├── andiry-nova-submission │ ├── andrea-aa │ ├── andrii-bpf-next │ ├── android-common │ ├── android-exynos │ ├── android-goldfish │ ├── android-lk │ ├── android-msm │ ├── android-omap │ ├── android-samsung │ ├── android-tegra │ ├── andy-auxdisplay │ ├── andy-gpio-intel │ ├── andy-shev │ ├── anguy11-net-queue │ ├── anguy11-next-queue │ ├── anholt │ ├── anna-maria-devel │ ├── anna-nfs │ ├── anna-nfs-rdma │ ├── anolis-intel-cloud │ ├── anttip-media-tree │ ├── ardb │ ├── arm │ ├── arm-de │ ├── arm-integrator │ ├── arm-iv │ ├── arm-perf │ ├── arm-platforms │ ├── arm-software-lisa │ ├── arm-tegra │ ├── arm-uclinux │ ├── arm64 │ ├── arnd-asm-generic │ ├── arnd-playground │ ├── arsenerei │ ├── asahilinux │ ├── ash │ ├── ash-stm │ ├── ashyti │ ├── ast-bpf │ ├── at91 │ ├── atenart │ ├── ath │ ├── atishp04 │ ├── atishp04-riscv │ ├── atomlin │ ├── atorgue-stm32 │ ├── atull-fpga │ ├── audit │ ├── audit-next │ ├── avpatel │ ├── awilliam-vfio │ ├── axboe-block │ ├── backports │ ├── balbi-usb │ ├── baohua │ ├── baserock │ ├── batman │ ├── baylibre-clk-meson │ ├── bboozzoo │ ├── bbrezillon │ ├── bbrezillon-0day │ ├── bcachefs │ ├── bcain │ ├── bcousson-omap-dt │ ├── benh-fsi │ ├── benh-powerpc │ ├── bergwolf │ ├── bigeasy-futex │ ├── bigeasy-staging │ ├── bleung-chrome-platform │ ├── bluetooth │ ├── bluetooth-next │ ├── bod │ ├── boddob │ ├── boqun │ ├── borntraeger │ ├── bp │ ├── bpf │ ├── bpf-next │ ├── bradfa │ ├── brauner │ ├── brauner-github │ ├── brauner-vfs │ ├── brgl │ ├── bristot │ ├── broadcom-arm64 │ ├── broadcom-stblinux │ ├── brodo │ ├── broonie-ci │ ├── broonie-misc │ ├── broonie-regmap │ ├── broonie-regulator │ ├── broonie-sound │ ├── broonie-spi │ ├── btrfs │ ├── bvanassche │ ├── bwh-stable-rt │ ├── bytedance │ ├── bzolnier │ ├── c6x-upstreaming │ ├── carlocaione-meson │ ├── cbeznea │ ├── cbrake │ ├── cdall │ ├── cdraman-opa │ ├── cel │ ├── cel-2.6 │ ├── cel-cel-2.6 │ ├── cem-xfsprogs-dev │ ├── ceph-client │ ├── chandanbabu │ ├── chandanr │ ├── chanwoo │ ├── chanwoo-extcon │ ├── chao │ ├── char-misc │ ├── chenhuacai-loongson │ ├── chenxing │ ├── chesterlintw-s32g │ ├── chleroy │ ├── christoph │ ├── chrome-os │ ├── chrome-platform │ ├── chunkuang-hu │ ├── chyyuu │ ├── cifs │ ├── cilium │ ├── cip │ ├── cjb-mmc │ ├── ckhu-mediatek │ ├── clangbuiltlinux │ ├── clk │ ├── clk-meson │ ├── clrkwllms-rt │ ├── cmarinas-aarch64 │ ├── cmetcalf-tile │ ├── cminyard-ipmi │ ├── codomania-kvm │ ├── cohuck │ ├── columbia-kvm-arm │ ├── colyli-bcache │ ├── congwang │ ├── conor │ ├── cooloney-leds │ ├── cooper-chiou │ ├── coresight │ ├── cornelisnetworks │ ├── crng-random │ ├── cschaufler-next-smack │ ├── cschaufler-smack-next │ ├── cscott │ ├── csky-linux │ ├── curro │ ├── cxl │ ├── czankel-xtensa │ ├── dacohen-intel-mid │ ├── daeinki-drm-exynos │ ├── daniel-lezcano │ ├── daniel-thompson │ ├── daniel-tux3 │ ├── danielt │ ├── dato │ ├── daveh-devel │ ├── daveh-x86-kaiser │ ├── daveh-x86-mm │ ├── daveh-x86-mpx │ ├── daveh-x86-pkeys │ ├── davej-cpufreq │ ├── davejiang │ ├── davem-ide │ ├── davem-sparc │ ├── davem-sparc-next │ ├── davidb-msm │ ├── davidhildenbrand │ ├── dborkman-bpf │ ├── dcui-tdx │ ├── ddalessa │ ├── deathsimple │ ├── deepa-hub-vfs │ ├── deller-fbdev │ ├── deller-parisc │ ├── dennis-misc │ ├── dennis-percpu │ ├── dennisszhou │ ├── derkling │ ├── device-mapper-dm │ ├── devicetree-rebasing │ ├── dfaggioli │ ├── dgc-xfs │ ├── dgc-xfsprogs-dev │ ├── dhowells-frv │ ├── dhowells-fs │ ├── dhowells-mn10300 │ ├── dhowells-modsign │ ├── dhowells-security-keys │ ├── digger │ ├── digitalocean-coresched │ ├── dinguyen │ ├── djakov-icc │ ├── djbw │ ├── djbw-dmaengine │ ├── djbw-isci │ ├── djbw-nvdimm │ ├── djbw-usb │ ├── djiang │ ├── djwong-xfs │ ├── djwong-xfsprogs-dev │ ├── dlech │ ├── dledford │ ├── dledford-rdma │ ├── dlemoal-libata │ ├── dlemoal-zonefs │ ├── dlezcano │ ├── dlezcano-clockevents │ ├── dlm │ ├── driver-core │ ├── drm │ ├── drm-drm-intel │ ├── drm-exynos │ ├── drm-fsl-dcu │ ├── drm-i915 │ ├── drm-intel │ ├── drm-misc │ ├── drm-msm │ ├── drm-tegra │ ├── drm-tip │ ├── drm-xe │ ├── dsahern │ ├── dsahern-iproute2-next │ ├── dsahern-linux-git │ ├── dtor-input │ ├── dvdhrm │ ├── dvyukov │ ├── dwindsor-kspp │ ├── dwindsor-stackrlimits │ ├── dwmw2 │ ├── eballetbo-chrome-platform │ ├── ebiederm-net-next │ ├── ebiederm-sysctl │ ├── ebiederm-user-namespace │ ├── ebiggers │ ├── ebiggers-xfsprogs-dev │ ├── efi │ ├── egtvedt-avr32 │ ├── elder │ ├── emiliolopez │ ├── ereshetova-stable │ ├── ericvh │ ├── ericvh-v9fs │ ├── esmil │ ├── evalenti-soc-thermal │ ├── evasdk │ ├── evdenis-floppy │ ├── evelikov │ ├── ewheelerinc │ ├── experimental │ ├── ezequiel │ ├── fdmanana │ ├── fpga │ ├── fracktal │ ├── frank-w-bpi-r2-4.14 │ ├── frederic-dynticks │ ├── freescale-fslc │ ├── frowand │ ├── fscrypt │ ├── fsl-latif │ ├── fujitsu-integration │ ├── fweisbec-tracing │ ├── fwestphal-net │ ├── fwestphal-nf │ ├── fyu1 │ ├── gabbayo │ ├── galak-powerpc │ ├── galak-qcom │ ├── gclement │ ├── gclement-mvebu │ ├── gdamjan │ ├── geert-m68k │ ├── geert-renesas-devel │ ├── geert-renesas-drivers │ ├── geoff-kexec │ ├── geoff-ntb-work │ ├── geoff-ps3 │ ├── geoffreybennett-scarlett-gen2 │ ├── georgi-djakov │ ├── gerg-ks8695 │ ├── gerg-m68knommu │ ├── gfs2 │ ├── git-nouveau-2.6 │ ├── glaubitz-sh │ ├── gliakhovetski-v4l-dvb │ ├── glikely │ ├── glommer-memcg │ ├── goldwynr │ ├── google-ktsan │ ├── gourryinverse │ ├── greentime │ ├── gregkh-spdx │ ├── gregkh-test │ ├── groeck-staging │ ├── grover │ ├── gthelen │ ├── gustavoars │ ├── gxt │ ├── habanaai │ ├── habanaai-drivers-accel-habanalabs │ ├── hansendc │ ├── hansg │ ├── hare-nvme │ ├── hare-scsi-devel │ ├── harihend1973 │ ├── hauke │ ├── hawk-net-next-xdp │ ├── hch-block │ ├── hch-configfs │ ├── hch-dma-mapping │ ├── hch-ioremap │ ├── hch-misc │ ├── hch-uuid │ ├── hch-xfs │ ├── hcodina │ ├── helgaas-pci │ ├── herbert-crypto-2.6 │ ├── herbert-cryptodev-2.6 │ ├── hid │ ├── himanshujha199640-next │ ├── hisilicon-hisi │ ├── holtmann-ktls │ ├── horms-ipvs │ ├── horms-ipvs-next │ ├── horms-renesas │ ├── horms-renesas-backport │ ├── horms-renesas-bsp │ ├── horosco │ ├── hpa-espfix64 │ ├── huangrui │ ├── hubcap │ ├── hverkuil-media-tree │ ├── hying-caritas │ ├── hyperv │ ├── hzhuang1 │ ├── i3c │ ├── ianc │ ├── ido │ ├── idryomov-btrfs-unstable │ ├── ieee1394-linux1394 │ ├── ihalip │ ├── ij │ ├── imbrenda │ ├── intel-4.9 │ ├── intel-amx │ ├── intel-gvt │ ├── intel-lts │ ├── intel-tdx │ ├── intel-thunderbolt-software-tree │ ├── iommu │ ├── isilence │ ├── iwamatsu-rt-devel │ ├── iwamatsu-stable │ ├── iwamatsu-visconti │ ├── iweiny │ ├── iwi │ ├── iwlwifi-chromeos │ ├── iwlwifi-fixes │ ├── iwlwifi-next │ ├── j-anaszewski-leds │ ├── jack-fs │ ├── jackchuang │ ├── jaegeuk-f2fs │ ├── jaegeuk-f2fs-stable │ ├── jakob-koschel │ ├── jamesjjliao │ ├── jani-drm │ ├── jarkko-riscv │ ├── jarkko-riscv-keystone │ ├── jarkko-tpmdd │ ├── jarkkojs-tpmdd │ ├── jarodwilson-muck │ ├── jassibrar-mailbox │ ├── jbarnes │ ├── jbarnes-drm-intel │ ├── jbarnes-pci │ ├── jberg-iw │ ├── jberg-um │ ├── jcmvbkbc-xtensa │ ├── jdelvare-staging │ ├── jeffm-btrfs │ ├── jeffm-reiserfs │ ├── jejb-binfmt-misc │ ├── jejb-coc │ ├── jejb-parisc-2.6 │ ├── jejb-scsi │ ├── jejb-tpmdd │ ├── jekhor-yogabook │ ├── jens-wiklander-tee │ ├── jeremy-xen │ ├── jes │ ├── jesper-artpec │ ├── jesper-cris │ ├── jesse-openvswitch │ ├── jeyu │ ├── jfern │ ├── jforbes │ ├── jgarzik │ ├── jgarzik-libata-dev │ ├── jgg-iommufd │ ├── jgross │ ├── jgunthorpe │ ├── jh80chung-dw-mmc │ ├── jhogan │ ├── jhogan-kvm-mips │ ├── jhogan-metag │ ├── jhogan-mips │ ├── jhogan-tz1090 │ ├── jiangliu │ ├── jianwei-wang-drm-fsl-dcu │ ├── jic23-cxl-staging │ ├── jic23-iio │ ├── jic23-wrapdrive │ ├── jikos-apm │ ├── jikos-block │ ├── jikos-hid │ ├── jikos-livepatching │ ├── jikos-trivial │ ├── jimc │ ├── jingoo │ ├── jirislaby │ ├── jirislaby-kgraft │ ├── jirislaby-stable │ ├── jj-apparmor │ ├── jkastner │ ├── jkirsher-ethtool │ ├── jkirsher-iproute2 │ ├── jkirsher-net-queue │ ├── jkirsher-next-queue │ ├── jkirsher-rdma │ ├── jlawall │ ├── jlayton │ ├── jlbec-configfs │ ├── jlbec-ocfs2 │ ├── jlelli │ ├── jmbnyc │ ├── jmondi │ ├── jmorris-security │ ├── joe-lawrence │ ├── joel-aspeed │ ├── joel-bmc │ ├── joel-fsi │ ├── joel-granados │ ├── joel-microwatt │ ├── joern-bcon2 │ ├── johan │ ├── johan-gnss │ ├── johan-usb-serial │ ├── john-stultz │ ├── jolsa-perf │ ├── jolsa-unwind │ ├── jonhunter │ ├── jonmason-ntb │ ├── joonsookim │ ├── joro │ ├── joro-iommu │ ├── josef-btrfs-next │ ├── josh │ ├── joshua-henderson │ ├── jpirko-mlxsw │ ├── jpoimboe │ ├── jsarha │ ├── jsung-dvb-vb2 │ ├── jszhang-berlin │ ├── jth │ ├── julia-stable-rt │ ├── jwboyer-fedora │ ├── jwessel-kgdb │ ├── jyang │ ├── kabel │ ├── kaccardi │ ├── kanakajuvva │ ├── kas │ ├── kasatkin-digsig │ ├── kasatkin-tizen │ ├── kbingham │ ├── kbingham-rcar │ ├── kbingham-scripts-gdb │ ├── kbusch │ ├── kdave │ ├── kdave-btrfs-devel │ ├── kdave-btrfs-progs │ ├── kdebski-media-tree-2 │ ├── kees │ ├── kees-test │ ├── kevin78 │ ├── keystone │ ├── kgene-samsung │ ├── khilman │ ├── khilman-amlogic │ ├── khilman-omap │ ├── kishon-phy │ ├── kkdwivedi │ ├── klassert-ipsec │ ├── klassert-ipsec-next │ ├── kleikamp-shaggy │ ├── kleist │ ├── kliang2-perf │ ├── km13park-1 │ ├── knsathya │ ├── konis-nilfs2 │ ├── konrad-ibft │ ├── konrad-mm │ ├── konrad-swiotlb │ ├── konrad-xen │ ├── koverstreet-bcachefs │ ├── kpsingh │ ├── kraxel │ ├── krisman-unicode │ ├── kristleifur │ ├── kristo │ ├── krzk │ ├── krzk-dt │ ├── krzk-github │ ├── krzk-mem-ctrl │ ├── krzk-w1 │ ├── kuba │ ├── kvm │ ├── kvm-riscv │ ├── kvm-x86 │ ├── kvmarm │ ├── kvms390 │ ├── kvms390-kvm-s390-vfio │ ├── kvms390-vfio-ccw │ ├── kwilczynski │ ├── kwilczynski-pci │ ├── l1k │ ├── lanaczko │ ├── landlock-lsm │ ├── lantianyu │ ├── lawall-next │ ├── ldesroches │ ├── ldewangan-upstream │ ├── lee │ ├── lee-backlight │ ├── lee-jones │ ├── lee-leds │ ├── lee-mfd │ ├── legion │ ├── lenb │ ├── leo │ ├── leon-iproute2 │ ├── leon-rdma │ ├── lftan-nios2 │ ├── lian-bo │ ├── libata │ ├── linkinjeon-exfat │ ├── linus │ ├── linusw-gpio │ ├── linusw-nomadik │ ├── linusw-pinctrl │ ├── linusw-stericsson │ ├── linux │ ├── linux-devel │ ├── linux-next │ ├── linux-nvme │ ├── linux-stable-rc │ ├── linux-ubuntu │ ├── linuxppc │ ├── linuxsecuritymodule │ ├── linuxtv-media │ ├── linuxtv-media-pending │ ├── linuxwmt-code │ ├── linville-wireless │ ├── linville-wireless-next │ ├── linville-wireless-testing │ ├── linyunsheng │ ├── litex-hub │ ├── liu-song-6 │ ├── liubogithub-btrfs-work │ ├── livepatching │ ├── lizf-3.4.y │ ├── ljones-3.0-ux500 │ ├── lkundrak-mmp │ ├── lliubbo │ ├── lp0 │ ├── lpieralisi │ ├── lpieralisi-pci │ ├── lrg-asoc │ ├── ls-zhu │ ├── lst │ ├── lubaolu-intel-iommu │ ├── luca-wl12xx │ ├── lucvoo │ ├── luisbg │ ├── luisbg-befs │ ├── lumag-msm │ ├── lunn │ ├── luto │ ├── lwn │ ├── lyrazhang │ ├── madvenka786 │ ├── manabian-lpc │ ├── mani-actions │ ├── mani-bitmain │ ├── mani-mhi │ ├── mani-rda │ ├── marex-2.6 │ ├── mark │ ├── markyzq-drm-rockchip │ ├── martin-lau-bpf-next │ ├── martinbrandenburg │ ├── martineau │ ├── martinetd │ ├── martyn │ ├── martyn-linux │ ├── masahiroy │ ├── masahiroy-kbuild │ ├── masahiroy-uniphier │ ├── masneyb │ ├── mason-btrfs │ ├── matthias-bgg │ ├── matthiasgoergens │ ├── mattst88-alpha │ ├── matttbe-net-next │ ├── matwey │ ├── mbenes │ ├── mbgg-mediatek │ ├── mbrevoort │ ├── mbroz │ ├── mcgrof │ ├── mcgrof-crda │ ├── mcgrof-next │ ├── mcgrof-pci │ ├── mcgrof-stable │ ├── mcgrof-test │ ├── mchehab-edac │ ├── mchehab-experimental │ ├── mchehab-media │ ├── mchehab-media-next │ ├── mchinth │ ├── mcoquelin-sti │ ├── mcoquelin-stm32 │ ├── mdf │ ├── mdf-fpga │ ├── mdraid │ ├── media-tree │ ├── mediatek │ ├── meghadey-crypto │ ├── mel │ ├── mel-balancenuma │ ├── mellanox │ ├── melver │ ├── mfleming │ ├── mfleming-efi │ ├── mgr │ ├── mhalcrow │ ├── mhiramat │ ├── mhocko-mm │ ├── miaoxie-btrfs │ ├── mic │ ├── mic92 │ ├── micah-morton │ ├── microchip-ung-upstream │ ├── milokim │ ├── minggr │ ├── mingo-tip │ ├── mips-linux │ ├── miquelraynal │ ├── mjguzik │ ├── mkl-can │ ├── mkl-can-next │ ├── mkp │ ├── mkp-scsi │ ├── mkubecek-ethtool │ ├── mlankhorst │ ├── mlin │ ├── mmarek-kbuild │ ├── mnyman-xhci │ ├── modules │ ├── monstr │ ├── monstr-microblaze │ ├── morimoto │ ├── morse │ ├── mpe │ ├── mpe-fullhistory │ ├── mptcp │ ├── mraynal │ ├── mrchapp │ ├── mripard │ ├── mst-vhost │ ├── mszeredi-fuse │ ├── mszeredi-vfs │ ├── mszyprow │ ├── mszyprowski │ ├── mtd │ ├── mtitinger-pm │ ├── mturquette │ ├── mwalle │ ├── mzx │ ├── mzx-devfreq │ ├── mzx-extcon │ ├── nab-target-pending │ ├── namhyung-perf │ ├── narmstrong-oxnas │ ├── nathan │ ├── nathanchance │ ├── nbd168-wireless │ ├── nbdd0121 │ ├── neeraju │ ├── net │ ├── net-next │ ├── netdev-net │ ├── netdev-net-next │ ├── netfilter-nf │ ├── netfilter-nf-next │ ├── nf-next │ ├── nferre-at91 │ ├── nicolasdichtel │ ├── niks │ ├── nmenon │ ├── nmenon-2.6-playground │ ├── nolibc │ ├── norov │ ├── notro │ ├── nsa │ ├── nsaenz-rpi │ ├── nsekhar-davinci │ ├── nvdimm │ ├── ogabbay │ ├── ogabbay-accel │ ├── ohad-hwspinlock │ ├── ohad-remoteproc │ ├── ohad-rpmsg │ ├── ojeda │ ├── ojeda-linux │ ├── oleg-misc │ ├── olof-chrome-platform │ ├── olof-misc │ ├── omap-audio │ ├── openchannelssd │ ├── opencloudos │ ├── openeuler │ ├── openipmi-ipmi │ ├── openrisc │ ├── oracle-dtrace │ ├── osandov │ ├── ostr │ ├── oupton │ ├── overlayfs-vfs │ ├── oxnas │ ├── pabeni-net │ ├── pabeni-net-next │ ├── pablo-gtp │ ├── padovan │ ├── pali │ ├── palmer │ ├── palmer-dm-user │ ├── palmer-riscv │ ├── pantoniou-beagle-track-mainline │ ├── paragon-software-group-ntfs3 │ ├── pateldipen1984 │ ├── patjak-drm-gma500 │ ├── paulburton │ ├── paulburton-linux │ ├── paulg │ ├── paulg-4.8-rt-patches │ ├── paulg-4.9-rt-patches │ ├── paulmck-rcu │ ├── paulmckrcu │ ├── paulus-powerpc │ ├── pavel-leds │ ├── pchotard │ ├── pchotard-sti │ ├── pci │ ├── pcmoore │ ├── pcmoore-audit │ ├── pcmoore-lsm │ ├── pcmoore-selinux │ ├── pdeschrijver-tegra │ ├── pdp7 │ ├── pdx86-platform-drivers-x86 │ ├── peda-linux-mux │ ├── peda-r-i2c-mux │ ├── penberg │ ├── penberg-kvm │ ├── pengutronix │ ├── perf-tools │ ├── perf-tools-next │ ├── peter-chen-usb │ ├── peterhuewe-tpmdd │ ├── peterz-queue │ ├── phy │ ├── pi3orama │ ├── pinchartl │ ├── pinchartl-media │ ├── pinctrl-intel │ ├── pinctrl-samsung │ ├── pjt-linsched │ ├── pjw-omap-pending │ ├── pjw-riscv │ ├── pjw-sifive │ ├── pjw-tegra-dev │ ├── pjw-tegra-pending │ ├── pkl-squashfs-lz4 │ ├── pkl-squashfs-next │ ├── pkshih-rtw │ ├── plagnioj-fbdev │ ├── platform-drivers-x86 │ ├── plbossart-sound │ ├── pmladek-printk │ ├── povik │ ├── powerpc │ ├── ppwaskie-net │ ├── ppwaskie-net-next │ ├── ppwaskie-staging │ ├── prakhya-efi-sai │ ├── prasad-joshi-logfs-upstream │ ├── prati0100-0day │ ├── preeti-u-murthy │ ├── printk │ ├── pshelar-openvswitch │ ├── puckchen-hikey-mainline │ ├── pza │ ├── qais-yousef │ ├── qcom │ ├── qtec-upstream │ ├── r-vignesh-linux0day │ ├── radeon-alex │ ├── rafael-pm │ ├── rafael-renesas │ ├── ragnatech │ ├── ralf │ ├── ras │ ├── raven-kernfs │ ├── raven-syzbot-bug │ ├── raven-usip │ ├── rcu │ ├── rdma │ ├── rdma-rdma │ ├── realmz6-blackfin │ ├── remoteproc │ ├── rgushchin │ ├── rhvgoyal │ ├── ribalda │ ├── ricardon-efi │ ├── riscv │ ├── riteshharjani │ ├── rjarzmik │ ├── rkuo-hexagon │ ├── rmk │ ├── rmk-arm │ ├── robertdolca │ ├── robertosassu │ ├── robh │ ├── rockchip │ ├── rogerq │ ├── rostedt-kconfig │ ├── rpi │ ├── rppt │ ├── rppt-memblock │ ├── rric │ ├── rric-oprofile │ ├── rrnayak │ ├── rseq │ ├── rt-devel │ ├── rui │ ├── rust │ ├── rusty │ ├── rusty-kvm-arm │ ├── rw-misc │ ├── rw-ubi2 │ ├── rw-ubifs │ ├── rw-uml │ ├── rwlove-fcoe │ ├── ryanmallon-ep93xx │ ├── rydberg │ ├── rzhang │ ├── rzr │ ├── s390 │ ├── saeed │ ├── saeed-net-next │ ├── sage-ceph-client │ ├── sagsifive-riscv-hifive │ ├── sailus-media-tree │ ├── sailus-next │ ├── samba-ksmbd │ ├── sameo-mfd-2.6 │ ├── sameo-mfd-fixes │ ├── sameo-mfd-next │ ├── sameo-nfc-fixes │ ├── sameo-nfc-next │ ├── sandeen │ ├── sashal │ ├── sashal-4.1 │ ├── sashal-cloudkernel │ ├── sashal-stable │ ├── sashal-stable-security │ ├── sashalevin-liblockdep │ ├── sbates130272-p2pmem │ ├── sboyd-spmi │ ├── schandinat-2.6 │ ├── scosu-sched │ ├── scottwood │ ├── sctscore-off │ ├── sean-jc │ ├── seanpaul-dpu-staging │ ├── sergeh-security │ ├── sforshee │ ├── sforshee-ubuntu │ ├── sfr │ ├── sfr-next-fixes │ ├── sh │ ├── shawnguo │ ├── shenki │ ├── shesselba-berlin │ ├── shli-md │ ├── shpedoikal │ ├── shuah │ ├── shuah-kselftest │ ├── sirdarckcat-ubuntu │ ├── sj │ ├── sj-damo │ ├── skeggsb │ ├── skeggsb-nouveau │ ├── smfrench-smb3 │ ├── snawrocki-clk │ ├── snawrocki-samsung │ ├── snitzer │ ├── soc │ ├── song │ ├── song-md │ ├── sophgo │ ├── spacegaier │ ├── spacemit │ ├── spandruvada │ ├── sre-hsi │ ├── sre-misc │ ├── sre-n900 │ ├── sre-power-supply │ ├── sricharanti-sricharan │ ├── srikard │ ├── srini-nvmem │ ├── srini-slimbus │ ├── srivatsabhat │ ├── ssantosh │ ├── ssantosh-keystone │ ├── sschmidt-mcp2210 │ ├── sschmidt-wpan │ ├── sschmidt-wpan-next │ ├── ssmalley-selinuxns │ ├── sstabellini-xen │ ├── stable │ ├── stable-stable-queue │ ├── staging │ ├── steev │ ├── stefanha │ ├── steve-gfs2-3.0-fixes │ ├── stffrdhrn │ ├── strace │ ├── sudeep-holla │ ├── sudeepdutt-mic │ ├── sumits-dma-buf │ ├── sunxi │ ├── superm1 │ ├── superna9999 │ ├── surenbaghdasaryan │ ├── svarbanov-media-tree │ ├── sven │ ├── sverdlin │ ├── sverdlin-ep93xx │ ├── swarren-rpi │ ├── syeh-repos │ ├── sylemieux-lpc32xx │ ├── sysctl │ ├── t-kristo-pm │ ├── tagr │ ├── tcharding │ ├── tegra │ ├── tegra-drm │ ├── teigland-dlm │ ├── terrelln │ ├── tfiga-samsung-clk │ ├── tglx-apic │ ├── tglx-devel │ ├── tglx-spdx │ ├── thermal │ ├── thesofproject │ ├── thgarnie │ ├── thierry-reding-pwm │ ├── thierryreding │ ├── thomas-weissschuh │ ├── thomash │ ├── thomashabets │ ├── ti │ ├── tinazhangzw │ ├── tinywindzz │ ├── tip │ ├── tiwai-sound │ ├── tiwai-sound-unstable │ ├── tj-cgroup │ ├── tj-misc │ ├── tj-sched-ext │ ├── tj-wq │ ├── tmlind-omap │ ├── tnguy │ ├── tnguy-net-queue │ ├── tnguy-next-queue │ ├── tobetter │ ├── tobin-leaks │ ├── toke │ ├── tomba │ ├── tomeu │ ├── tomoyo-test1 │ ├── tomoyo-tomoyo-test1 │ ├── torvalds-2.6 │ ├── tositrino │ ├── trace │ ├── trivial-mods │ ├── trondmy-nfs │ ├── trondmy-nfs-2.6 │ ├── tty │ ├── tufei │ ├── tycho │ ├── tyhicks │ ├── tyhicks-ecryptfs │ ├── tytso-ext4 │ ├── tytso-fscrypt │ ├── tytso-random │ ├── tytso-xfs-lts-backports │ ├── tzungbi-chrome-platform │ ├── uclinux-h8 │ ├── ukl │ ├── ukleinek │ ├── ukrcherry │ ├── ulf-hansson-mmc-mirror │ ├── ulf-hansson-pm │ ├── ulfh-mmc │ ├── ulfh-pm │ ├── ulli-kroll │ ├── uml │ ├── urezki │ ├── urjaman │ ├── usb │ ├── vapier-blackfin │ ├── vapier-lemote │ ├── vbabka │ ├── vbabka-slab │ ├── vdmkenny-spelling-fix │ ├── vegard │ ├── verygreen │ ├── vfs-idmapping │ ├── vgupta │ ├── vgupta-arc │ ├── villemoes │ ├── vinceab │ ├── vincent-guittot │ ├── vireshk │ ├── vireshk-pm │ ├── viro-audit │ ├── viro-signal │ ├── viro-vfs │ ├── vishal │ ├── vishal-nvdimm │ ├── vishal-tiering │ ├── vivek-drm-tip │ ├── vkoul-dmaengine │ ├── vkoul-sound │ ├── vkoul-soundwire │ ├── vshiva1 │ ├── vsyrjala │ ├── vzapolskiy │ ├── vzapolskiy-lpc32xx │ ├── wagi │ ├── wagi-stable-rt │ ├── wangnan0 │ ├── watchdog │ ├── watchdog-next │ ├── wbg-counter │ ├── weiny2 │ ├── wens │ ├── westeri-thunderbolt │ ├── wfg │ ├── willy │ ├── willy-pagecache │ ├── willy-xarray │ ├── wireless │ ├── wireless-next │ ├── wireless-testing │ ├── wpan │ ├── wpan-next │ ├── wsa │ ├── wtarreau-cleanups │ ├── wtarreau-ndiv │ ├── wtarreau-nolibc │ ├── wtarreau-prandom │ ├── wtarreau-stable │ ├── wtarreau-testing │ ├── wufan-ipe │ ├── xen-tip │ ├── xfs-linux │ ├── xiang │ ├── xiang-erofs │ ├── xilinx-xlnx │ ├── xin3liang │ ├── xinli-intel-fred-public │ ├── yakir-yang │ ├── yakuizhao-acrn │ ├── yijingwang-pci │ ├── yiliu1765-iommufd │ ├── yinghai │ ├── yocto-linux-yocto-4.1 │ ├── yongzhi1-ipu3 │ ├── yshigeru-devel │ ├── yyu168-cet │ ├── zack-vmwgfx │ ├── zanussi-stable-rt │ ├── zanussi-trace │ ├── zen │ ├── zhuguihua │ ├── zohar-integrity │ ├── zourongrong │ ├── zwisler │ ├── zwisler-xfsprogs-dev │ ├── zx2c4 │ └── zx2c4-wireguard ├── rootfs ├── addon │ ├── etc │ │ ├── X11 │ │ │ └── X │ │ ├── adjtime │ │ ├── bash_completion.d │ │ │ └── perf │ │ ├── default │ │ │ ├── kexec │ │ │ └── watchdog │ │ ├── init.d │ │ │ ├── .legacy-bootordering │ │ │ └── lkp-bootstrap │ │ ├── rc.local │ │ ├── rc2.d │ │ │ └── S77lkp-bootstrap │ │ ├── rc5.d │ │ │ └── S77lkp-bootstrap │ │ ├── systemd │ │ │ ├── system.conf │ │ │ └── system │ │ │ │ ├── lkp-bootstrap.service │ │ │ │ ├── multi-user.target.wants │ │ │ │ └── lkp-bootstrap.service │ │ │ │ └── rc-local.service.d │ │ │ │ └── override.conf │ │ └── watchdog.conf │ ├── lib │ │ └── systemd │ │ │ └── system-generators │ │ │ └── systemd-getty-generator │ ├── root │ │ ├── .bash_profile │ │ ├── .bashrc │ │ ├── .inputrc │ │ ├── .shell │ │ │ ├── bash_prompt │ │ │ ├── shared_alias │ │ │ ├── shared_env │ │ │ ├── shared_func │ │ │ └── shared_rc │ │ ├── .toprc │ │ └── bin │ │ │ ├── checkpath │ │ │ └── colors.sh │ └── usr │ │ ├── lib │ │ └── systemd │ │ │ ├── network │ │ │ └── 81-dhcp.network │ │ │ └── system │ │ │ ├── lkp-bootstrap.service │ │ │ └── multi-user.target.wants │ │ │ └── lkp-bootstrap.service │ │ └── local │ │ └── bin │ │ └── ipmi-setup ├── create-cpio.sh ├── grub │ └── etc │ │ └── rc.local ├── initramfs-tools │ ├── configs │ │ ├── initramfs.conf │ │ ├── modules │ │ └── scripts │ │ │ └── init-bottom │ │ │ └── lkp-modules │ ├── create-cpio.sh │ └── install └── rootfs-strip-list ├── sbin ├── compare ├── dump-stat ├── extract-result-stats ├── job2sh ├── makepkg ├── makepkg-deps ├── mmplot ├── mplot ├── ncompare ├── pack ├── pack-deps ├── pacman-LKP ├── split-job ├── unite-params ├── unite-stats └── update-printk-error-messages ├── setup ├── acpi_cpufreq ├── aspm ├── block_queue ├── boot_params ├── cgroup ├── cgroup2 ├── chrt ├── cooling_device ├── cpufreq ├── cpufreq_governor ├── cpuidle_cstate ├── cpuoffline ├── daxctl ├── debug-setup ├── debug_vmlinux ├── device-dax ├── dirty_thresh ├── disk ├── drop_caches ├── eatmem ├── eatmem2 ├── env ├── filebench-setup ├── fio-setup-basic ├── fragment ├── fs ├── fs1 ├── fs2 ├── fuse ├── intel_powerclamp ├── intel_pstate ├── iosched ├── md ├── memcached-setup ├── migratepages ├── msr ├── mysql-setup ├── numabalance ├── numactl ├── nvdimm ├── pepc ├── pgbench-setup ├── pipe_user_pages_soft ├── qemu-next ├── quiet-network ├── ramdisk ├── resctrl ├── sanity-check ├── sched_domain ├── sched_feature ├── scsi_debug ├── scsi_debug_swap ├── setup-bpftrace ├── setup-damon-reclaim ├── setup-kbuild ├── setup-linkbench ├── setup-net-buffer ├── setup-nic ├── setup-oltp ├── setup-rocksdb ├── sleep_after_boot ├── stats_part ├── stop_daemons ├── stop_service ├── swap ├── swapin_setup ├── sysctl ├── taskset ├── transparent_hugepage └── wifi-setup ├── spec ├── acpi_rsdp_dmesg ├── acpi_rsdp_spec.rb ├── benchmark_root │ ├── nvml │ │ └── src │ │ │ └── test │ │ │ ├── ex_libpmem │ │ │ └── TEST0 │ │ │ ├── ex_libpmem2 │ │ │ └── TESTS.py │ │ │ ├── ex_libpmemobj │ │ │ └── TEST0 │ │ │ ├── ex_linkedlist │ │ │ └── TEST0 │ │ │ ├── ex_pmreorder │ │ │ └── TEST0 │ │ │ ├── magic │ │ │ └── TEST0 │ │ │ ├── scope │ │ │ └── TESTS.py │ │ │ ├── traces │ │ │ └── TEST0 │ │ │ ├── traces_custom_function │ │ │ └── TEST0 │ │ │ └── traces_pmem │ │ │ └── TEST0 │ └── xfstests │ │ └── tests │ │ ├── ext4-logdev │ │ ├── generic-dax │ │ ├── generic-group-51 │ │ ├── generic-log-writes │ │ ├── generic-logdev │ │ ├── xfs-logdev │ │ ├── xfs-no-xfs-bug-on-assert │ │ ├── xfs-realtime │ │ ├── xfs-scratch-reflink-15 │ │ ├── xfs-scratch-reflink-scratch-rmapbt │ │ └── xfs-scratch-rmapbt ├── dmesg │ └── calltrace │ │ ├── calltrace-001 │ │ ├── calltrace-002 │ │ ├── calltrace-003 │ │ ├── calltrace-004 │ │ ├── calltrace-005 │ │ ├── calltrace-006 │ │ ├── calltrace-007 │ │ ├── calltrace-008 │ │ ├── calltrace-009 │ │ ├── calltrace-010 │ │ ├── calltrace-011 │ │ ├── dmesg-001 │ │ ├── dmesg-002 │ │ ├── dmesg-003 │ │ ├── dmesg-004 │ │ ├── dmesg-005 │ │ ├── dmesg-006 │ │ ├── dmesg-007 │ │ ├── dmesg-008 │ │ ├── dmesg-009 │ │ ├── dmesg-010 │ │ └── dmesg-011 ├── dmesg_spec.rb ├── erb_spec.rb ├── erb_spec.yaml ├── etc_file_format_check_spec.rb ├── failure_spec.rb ├── file_sorting_spec.rb ├── filter_disk_spec.rb ├── filter_need_kconfig_spec.rb ├── filter_need_kernel_version_spec.rb ├── filter_need_memory_spec.rb ├── filter_nr_threads_spec.rb ├── hash_spec.rb ├── job2sh │ ├── ftq-performance-10000-100%-100000ss-add.sh │ ├── ftq-performance-10000-100%-100000ss-add.yaml │ ├── hackbench-pipe-8-threads-50%.sh │ ├── hackbench-pipe-8-threads-50%.yaml │ ├── sockperf-cs-localhost-performance-1472b-600s.sh │ └── sockperf-cs-localhost-performance-1472b-600s.yaml ├── job2sh_spec.rb ├── kernel_match_ver_spec.rb ├── linux_testcases_spec.rb ├── local_run_spec.rb ├── log_cmd_spec.rb ├── need_kconfig_format_spec.rb ├── nvml_spec.rb ├── os_mapping_spec.rb ├── result_path_spec.rb ├── sort_remove_margin_spec.rb ├── spec_helper.rb ├── split-job │ ├── 1-test_1.yaml │ ├── 1-test_2.yaml │ ├── 1-test_3.yaml │ ├── 1.yaml │ ├── 2-group_1-test_1.yaml │ ├── 2-group_1-test_2.yaml │ ├── 2-group_2-test_1.yaml │ ├── 2-group_2-test_2.yaml │ ├── 2.yaml │ ├── 3-ext4.yaml │ ├── 3-nfsv3.yaml │ ├── 3-xfs.yaml │ ├── 3.yaml │ ├── compatible-test_1.yaml │ ├── compatible.yaml │ ├── include │ │ └── split-job │ └── tests │ │ └── split-job ├── split_job_spec.rb ├── stat_denylist_spec.rb ├── stats │ ├── aim9 │ │ ├── 02 │ │ └── 02.yaml │ ├── analyze-suspend │ │ ├── 1 │ │ └── 1.yaml │ ├── autonuma-benchmark │ │ ├── 01 │ │ └── 01.yaml │ ├── avocado │ │ ├── 1 │ │ ├── 2 │ │ ├── 1.yaml │ │ └── 2.yaml │ ├── blktests │ │ ├── 01 │ │ ├── 01.yaml │ │ ├── 02 │ │ ├── 02.yaml │ │ ├── 03 │ │ ├── 03.yaml │ │ ├── nvme │ │ └── nvme.yaml │ ├── chromeswap │ │ ├── 1 │ │ └── 1.yaml │ ├── coremark │ │ ├── 01 │ │ └── 01.yaml │ ├── create-stats-spec.sh │ ├── dbench │ │ ├── 01 │ │ └── 01.yaml │ ├── dmesg │ │ ├── 10 │ │ ├── 11 │ │ ├── 12 │ │ ├── 13 │ │ ├── 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 │ │ ├── 47 │ │ ├── 48 │ │ ├── 49 │ │ ├── 50 │ │ ├── 51 │ │ ├── 52 │ │ ├── 53 │ │ ├── 54 │ │ ├── 55 │ │ ├── 56 │ │ ├── 57 │ │ ├── 59 │ │ ├── 60 │ │ ├── 61 │ │ ├── 62 │ │ ├── 63 │ │ ├── 64 │ │ ├── 65 │ │ ├── 66 │ │ ├── 68 │ │ ├── 69 │ │ ├── 70 │ │ ├── 71 │ │ ├── 72 │ │ ├── 73 │ │ ├── 74 │ │ ├── 75 │ │ ├── 76 │ │ ├── 77 │ │ ├── 78 │ │ ├── 79 │ │ ├── 80 │ │ ├── 81 │ │ ├── 82 │ │ ├── 01 │ │ ├── 01.yaml │ │ ├── 02 │ │ ├── 02.yaml │ │ ├── 03 │ │ ├── 03.yaml │ │ ├── 04 │ │ ├── 04.yaml │ │ ├── 05 │ │ ├── 05.yaml │ │ ├── 06 │ │ ├── 06.yaml │ │ ├── 07 │ │ ├── 07.yaml │ │ ├── 08 │ │ ├── 08.yaml │ │ ├── 09 │ │ ├── 09.yaml │ │ ├── 10.yaml │ │ ├── 11.yaml │ │ ├── 12.yaml │ │ ├── 13.yaml │ │ ├── 20.yaml │ │ ├── 21.yaml │ │ ├── 22.yaml │ │ ├── 23.yaml │ │ ├── 24.yaml │ │ ├── 25.yaml │ │ ├── 26.yaml │ │ ├── 27.yaml │ │ ├── 28.yaml │ │ ├── 29.yaml │ │ ├── 30.yaml │ │ ├── 31.yaml │ │ ├── 32.yaml │ │ ├── 33.yaml │ │ ├── 34.yaml │ │ ├── 35.yaml │ │ ├── 36.yaml │ │ ├── 37.yaml │ │ ├── 38.yaml │ │ ├── 39.yaml │ │ ├── 40.yaml │ │ ├── 41.yaml │ │ ├── 42.yaml │ │ ├── 43.yaml │ │ ├── 44.yaml │ │ ├── 45.yaml │ │ ├── 47.yaml │ │ ├── 48.yaml │ │ ├── 49.yaml │ │ ├── 50.yaml │ │ ├── 51.yaml │ │ ├── 52.yaml │ │ ├── 53.yaml │ │ ├── 54.yaml │ │ ├── 55.yaml │ │ ├── 56.yaml │ │ ├── 57.yaml │ │ ├── 59.yaml │ │ ├── 60.yaml │ │ ├── 61.yaml │ │ ├── 62.yaml │ │ ├── 63.yaml │ │ ├── 64.yaml │ │ ├── 65.yaml │ │ ├── 66.yaml │ │ ├── 68.yaml │ │ ├── 69.yaml │ │ ├── 70.yaml │ │ ├── 71.yaml │ │ ├── 72.yaml │ │ ├── 73.yaml │ │ ├── 74.yaml │ │ ├── 75.yaml │ │ ├── 76.yaml │ │ ├── 77.yaml │ │ ├── 78.yaml │ │ ├── 79.yaml │ │ ├── 80.yaml │ │ ├── 81.yaml │ │ ├── 82.yaml │ │ ├── bad-rss-counter-01 │ │ ├── bad-rss-counter-01.yaml │ │ ├── bad-rss-counter-02 │ │ ├── bad-rss-counter-02.yaml │ │ ├── kasan-01 │ │ ├── kasan-01.yaml │ │ ├── kasan-02 │ │ ├── kasan-02.yaml │ │ ├── kasan-03 │ │ ├── kasan-03.yaml │ │ ├── kasan-04 │ │ ├── kasan-04.yaml │ │ ├── kasan-05 │ │ ├── kasan-05.yaml │ │ ├── kasan-06 │ │ ├── kasan-06.yaml │ │ ├── kasan-07 │ │ ├── kasan-07.yaml │ │ ├── kasan-08 │ │ ├── kasan-08.yaml │ │ ├── kcsan-01 │ │ ├── kcsan-01.yaml │ │ ├── kcsan-02 │ │ ├── kcsan-02.yaml │ │ ├── kfence-01 │ │ ├── kfence-01.yaml │ │ ├── lkp │ │ └── lkp.yaml │ ├── fio │ │ ├── 01 │ │ ├── 01.yaml │ │ ├── 02 │ │ ├── 02.yaml │ │ ├── 03 │ │ └── 03.yaml │ ├── fsmark │ │ ├── 1 │ │ ├── 2 │ │ ├── 1.yaml │ │ └── 2.yaml │ ├── fxmark │ │ ├── 01 │ │ ├── 01.yaml │ │ ├── 02 │ │ └── 02.yaml │ ├── hwsim │ │ ├── 1 │ │ ├── 2 │ │ ├── 1.yaml │ │ └── 2.yaml │ ├── igt │ │ ├── 01 │ │ ├── 01.yaml │ │ ├── 02 │ │ ├── 02.yaml │ │ ├── 03 │ │ ├── 03.yaml │ │ ├── 04 │ │ ├── 04.yaml │ │ ├── 05 │ │ ├── 05.yaml │ │ ├── 06 │ │ ├── 06.yaml │ │ ├── 07 │ │ ├── 07.yaml │ │ ├── 08 │ │ ├── 08.yaml │ │ ├── 09 │ │ ├── 09.yaml │ │ ├── gem_shrink │ │ └── gem_shrink.yaml │ ├── jitter │ │ ├── 01 │ │ └── 01.yaml │ ├── kbuild │ │ ├── 01 │ │ ├── 01.yaml │ │ ├── 02 │ │ ├── 02.yaml │ │ ├── 03 │ │ └── 03.yaml │ ├── kernbench │ │ ├── 01 │ │ ├── 01.yaml │ │ ├── 02 │ │ └── 02.yaml │ ├── kernel-selftests │ │ ├── bpf-01 │ │ ├── bpf-01.yaml │ │ ├── bpf-02 │ │ ├── bpf-02.yaml │ │ ├── bpf-03 │ │ ├── bpf-03.yaml │ │ ├── bpf-04 │ │ ├── bpf-04.yaml │ │ ├── bpf-05 │ │ ├── bpf-05.yaml │ │ ├── bpf-06 │ │ ├── bpf-06.yaml │ │ ├── bpf-07 │ │ ├── bpf-07.yaml │ │ ├── breakpoints-03 │ │ ├── breakpoints-03.yaml │ │ ├── capabilities-02 │ │ ├── capabilities-02.yaml │ │ ├── cgroup-02 │ │ ├── cgroup-02.yaml │ │ ├── clone3-01 │ │ ├── clone3-01.yaml │ │ ├── clone3-02 │ │ ├── clone3-02.yaml │ │ ├── core │ │ ├── core-02 │ │ ├── core-02.yaml │ │ ├── core.yaml │ │ ├── cpufreq │ │ ├── cpufreq.yaml │ │ ├── dma-01 │ │ ├── dma-01.yaml │ │ ├── dma-02 │ │ ├── dma-02.yaml │ │ ├── dma-03 │ │ ├── dma-03.yaml │ │ ├── dmabuf-heaps │ │ ├── dmabuf-heaps.yaml │ │ ├── efivarfs │ │ ├── efivarfs.yaml │ │ ├── exec-01 │ │ ├── exec-01.yaml │ │ ├── exec-02 │ │ ├── exec-02.yaml │ │ ├── firmware │ │ ├── firmware.yaml │ │ ├── futex-01 │ │ ├── futex-01.yaml │ │ ├── ia64-02 │ │ ├── ia64-02.yaml │ │ ├── kmod │ │ ├── kmod.yaml │ │ ├── kvm │ │ ├── kvm.yaml │ │ ├── landlock │ │ ├── landlock.yaml │ │ ├── livepatch │ │ ├── livepatch.yaml │ │ ├── lkdtm-01 │ │ ├── lkdtm-01.yaml │ │ ├── lkdtm-03 │ │ ├── lkdtm-03.yaml │ │ ├── make-fail │ │ ├── make-fail.yaml │ │ ├── membarrier │ │ ├── membarrier.yaml │ │ ├── memory-hotplug-02 │ │ ├── memory-hotplug-02.yaml │ │ ├── memory-hotplug-04 │ │ ├── memory-hotplug-04.yaml │ │ ├── mm-02 │ │ ├── mm-02.yaml │ │ ├── mm-03 │ │ ├── mm-03.yaml │ │ ├── mm-04 │ │ ├── mm-04.yaml │ │ ├── mm-05 │ │ ├── mm-05.yaml │ │ ├── mm-06 │ │ ├── mm-06.yaml │ │ ├── mount-01 │ │ ├── mount-01.yaml │ │ ├── mount-02 │ │ ├── mount-02.yaml │ │ ├── mount-03 │ │ ├── mount-03.yaml │ │ ├── mount-04 │ │ ├── mount-04.yaml │ │ ├── mptcp-01 │ │ ├── mptcp-01.yaml │ │ ├── mqueue-01 │ │ ├── mqueue-01.yaml │ │ ├── mqueue-02 │ │ ├── mqueue-02.yaml │ │ ├── net-01 │ │ ├── net-01.yaml │ │ ├── net-02 │ │ ├── net-02.yaml │ │ ├── net-03 │ │ ├── net-03.yaml │ │ ├── net-04 │ │ ├── net-04.yaml │ │ ├── net-05 │ │ ├── net-05.yaml │ │ ├── net-06 │ │ ├── net-06.yaml │ │ ├── net-07 │ │ ├── net-07.yaml │ │ ├── net-08 │ │ ├── net-08.yaml │ │ ├── net-10 │ │ ├── net-10.yaml │ │ ├── net-11 │ │ ├── net-11.yaml │ │ ├── net-13 │ │ ├── net-13.yaml │ │ ├── net-fcnal-test-01 │ │ ├── net-fcnal-test-01.yaml │ │ ├── net-fcnal-test-02 │ │ ├── net-fcnal-test-02.yaml │ │ ├── net-fcnal-test-03 │ │ ├── net-fcnal-test-03.yaml │ │ ├── net-fib-01 │ │ ├── net-fib-01.yaml │ │ ├── net-fib-02 │ │ ├── net-fib-02.yaml │ │ ├── net-ioam6 │ │ ├── net-ioam6.yaml │ │ ├── net-ip-defrag │ │ ├── net-ip-defrag.yaml │ │ ├── net-msg-zerocopy │ │ ├── net-msg-zerocopy.yaml │ │ ├── net-nl-netdev │ │ ├── net-nl-netdev.yaml │ │ ├── net-psock-snd │ │ ├── net-psock-snd.yaml │ │ ├── net-route-localnet │ │ ├── net-route-localnet.yaml │ │ ├── net-run-afpackettests │ │ ├── net-run-afpackettests.yaml │ │ ├── net-test-vxlan-mdb-01 │ │ ├── net-test-vxlan-mdb-01.yaml │ │ ├── net-test-vxlan-mdb-02 │ │ ├── net-test-vxlan-mdb-02.yaml │ │ ├── net-test-vxlan-under-vrf │ │ ├── net-test-vxlan-under-vrf.yaml │ │ ├── net-tls-01 │ │ ├── net-tls-01.yaml │ │ ├── net-udpgro-01 │ │ ├── net-udpgro-01.yaml │ │ ├── net-udpgro-02 │ │ ├── net-udpgro-02.yaml │ │ ├── net-udpgro-03 │ │ ├── net-udpgro-03.yaml │ │ ├── net-udpgso │ │ ├── net-udpgso.yaml │ │ ├── net-veth-01 │ │ ├── net-veth-01.yaml │ │ ├── net-veth-02 │ │ ├── net-veth-02.yaml │ │ ├── net-veth-03 │ │ ├── net-veth-03.yaml │ │ ├── net-vrf-strict-mode-test │ │ ├── net-vrf-strict-mode-test.yaml │ │ ├── netfilter-01 │ │ ├── netfilter-01.yaml │ │ ├── netfilter-02 │ │ ├── netfilter-02.yaml │ │ ├── netfilter-03 │ │ ├── netfilter-03.yaml │ │ ├── netfilter-04 │ │ ├── netfilter-04.yaml │ │ ├── netfilter-05 │ │ ├── netfilter-05.yaml │ │ ├── pidfd-01 │ │ ├── pidfd-01.yaml │ │ ├── pidfd-02 │ │ ├── pidfd-02.yaml │ │ ├── prctl │ │ ├── prctl.yaml │ │ ├── pstore │ │ ├── pstore.yaml │ │ ├── resctrl-02 │ │ ├── resctrl-02.yaml │ │ ├── seccomp │ │ ├── seccomp.yaml │ │ ├── sgx-01 │ │ ├── sgx-01.yaml │ │ ├── sgx-02 │ │ ├── sgx-02.yaml │ │ ├── signal-01 │ │ ├── signal-01.yaml │ │ ├── signal-02 │ │ ├── signal-02.yaml │ │ ├── sync │ │ ├── sync.yaml │ │ ├── sysctl-01 │ │ ├── sysctl-01.yaml │ │ ├── tc-testing │ │ ├── tc-testing.yaml │ │ ├── timens-02 │ │ ├── timens-02.yaml │ │ ├── timers-01 │ │ ├── timers-01.yaml │ │ ├── timers-02 │ │ ├── timers-02.yaml │ │ ├── vdso-01 │ │ ├── vdso-01.yaml │ │ ├── vmalloc-01 │ │ ├── vmalloc-01.yaml │ │ ├── x86-01 │ │ ├── x86-01.yaml │ │ ├── x86-04 │ │ ├── x86-04.yaml │ │ ├── x86-05 │ │ ├── x86-05.yaml │ │ ├── x86-06 │ │ └── x86-06.yaml │ ├── kmemleak │ │ ├── 01 │ │ ├── 01.yaml │ │ ├── 02 │ │ └── 02.yaml │ ├── kmsg │ │ ├── 10 │ │ ├── 21 │ │ ├── 01 │ │ ├── 01.yaml │ │ ├── 02 │ │ ├── 02.yaml │ │ ├── 03 │ │ ├── 03.yaml │ │ ├── 04 │ │ ├── 04.yaml │ │ ├── 06 │ │ ├── 06.yaml │ │ ├── 07 │ │ ├── 07.yaml │ │ ├── 08 │ │ ├── 08.yaml │ │ ├── 09 │ │ ├── 09.yaml │ │ ├── 10.yaml │ │ ├── 21.yaml │ │ ├── notice │ │ ├── notice.yaml │ │ ├── test │ │ └── test.yaml │ ├── kunit │ │ ├── 1 │ │ ├── 2 │ │ ├── 3 │ │ ├── 1.yaml │ │ ├── 2.yaml │ │ └── 3.yaml │ ├── kvm-unit-tests │ │ ├── 1 │ │ ├── 2 │ │ ├── 1.yaml │ │ └── 2.yaml │ ├── leaking-addresses │ │ ├── 01 │ │ ├── 01.yaml │ │ ├── 02 │ │ ├── 02.yaml │ │ ├── 03 │ │ └── 03.yaml │ ├── libhugetlbfs-test │ │ ├── 1 │ │ └── 1.yaml │ ├── lkvs │ │ ├── 1 │ │ ├── 2 │ │ ├── 1.yaml │ │ └── 2.yaml │ ├── lmbench3 │ │ ├── 01 │ │ ├── 01.yaml │ │ ├── 02 │ │ └── 02.yaml │ ├── locktorture │ │ ├── 1 │ │ └── 1.yaml │ ├── ltp │ │ ├── 1 │ │ └── 1.yaml │ ├── lz4-test │ │ ├── 01 │ │ └── 01.yaml │ ├── mdadm-selftests │ │ ├── 1 │ │ ├── 2 │ │ ├── 1.yaml │ │ └── 2.yaml │ ├── memory--numa_stat │ │ ├── 1 │ │ ├── 2 │ │ ├── 1.yaml │ │ └── 2.yaml │ ├── memtier │ │ ├── 1 │ │ └── 1.yaml │ ├── mpstat │ │ ├── 1 │ │ ├── 2 │ │ ├── 3 │ │ ├── 1.yaml │ │ ├── 2.yaml │ │ └── 3.yaml │ ├── netperf │ │ ├── netperf │ │ ├── netperf-recv │ │ ├── netperf-recv.yaml │ │ └── netperf.yaml │ ├── netpipe │ │ ├── mpi │ │ ├── mpi.yaml │ │ ├── tcp │ │ └── tcp.yaml │ ├── nvml │ │ ├── 1 │ │ ├── 2 │ │ ├── 3 │ │ ├── 4 │ │ ├── 5 │ │ ├── 6 │ │ ├── 7 │ │ ├── 8 │ │ ├── 9 │ │ ├── 10 │ │ ├── 1.yaml │ │ ├── 10.yaml │ │ ├── 2.yaml │ │ ├── 3.yaml │ │ ├── 4.yaml │ │ ├── 5.yaml │ │ ├── 6.yaml │ │ ├── 7.yaml │ │ ├── 8.yaml │ │ └── 9.yaml │ ├── openssl-speed │ │ ├── 01 │ │ ├── 01.yaml │ │ ├── 02 │ │ └── 02.yaml │ ├── perf-bench-futex │ │ ├── 01 │ │ ├── 01.yaml │ │ ├── 02 │ │ ├── 02.yaml │ │ ├── 03 │ │ ├── 03.yaml │ │ ├── 04 │ │ └── 04.yaml │ ├── perf-bench-numa-mem │ │ ├── 01 │ │ └── 01.yaml │ ├── perf-c2c │ │ ├── 01 │ │ └── 01.yaml │ ├── perf-event-tests │ │ ├── 1 │ │ ├── 2 │ │ ├── 3 │ │ ├── 1.yaml │ │ ├── 2.yaml │ │ └── 3.yaml │ ├── perf-profile │ │ ├── 1 │ │ ├── 2 │ │ ├── 1.yaml │ │ └── 2.yaml │ ├── perf-sanity-tests │ │ ├── 1 │ │ ├── 2 │ │ ├── 3 │ │ ├── 4 │ │ ├── 5 │ │ ├── 1.yaml │ │ ├── 2.yaml │ │ ├── 3.yaml │ │ ├── 4.yaml │ │ └── 5.yaml │ ├── perf-stat │ │ ├── 1 │ │ ├── 2 │ │ ├── 3 │ │ ├── 4 │ │ ├── 1.yaml │ │ ├── 2.yaml │ │ ├── 3.yaml │ │ └── 4.yaml │ ├── phoronix-test-suite │ │ ├── 1 │ │ ├── 2 │ │ ├── 3 │ │ ├── 4 │ │ ├── 5 │ │ ├── 6 │ │ ├── 7 │ │ ├── 8 │ │ ├── 9 │ │ ├── 10 │ │ ├── 1.yaml │ │ ├── 10.yaml │ │ ├── 2.yaml │ │ ├── 3.yaml │ │ ├── 4.yaml │ │ ├── 5.yaml │ │ ├── 6.yaml │ │ ├── 7.yaml │ │ ├── 8.yaml │ │ └── 9.yaml │ ├── phpbench │ │ ├── 01 │ │ └── 01.yaml │ ├── pybench │ │ ├── 01 │ │ └── 01.yaml │ ├── qat │ │ ├── 01 │ │ └── 01.yaml │ ├── rcurefscale │ │ ├── 1 │ │ ├── 2 │ │ ├── 1.yaml │ │ └── 2.yaml │ ├── rcuscale │ │ ├── 1 │ │ ├── 2 │ │ ├── 3 │ │ ├── 4 │ │ ├── 1.yaml │ │ ├── 2.yaml │ │ ├── 3.yaml │ │ └── 4.yaml │ ├── rcutorture │ │ ├── 01 │ │ ├── 01.yaml │ │ ├── 02 │ │ ├── 02.yaml │ │ ├── 03 │ │ ├── 03.yaml │ │ ├── 04 │ │ └── 04.yaml │ ├── rdma-pyverbs │ │ ├── 01 │ │ └── 01.yaml │ ├── rt-app │ │ ├── 01 │ │ ├── 01.yaml │ │ ├── 02 │ │ └── 02.yaml │ ├── schbench │ │ ├── 01 │ │ └── 01.yaml │ ├── stderr │ │ ├── 1 │ │ ├── 2 │ │ ├── 3 │ │ ├── 4 │ │ ├── 5 │ │ ├── 6 │ │ ├── 7 │ │ ├── 8 │ │ ├── 9 │ │ ├── 10 │ │ ├── 11 │ │ ├── 1.yaml │ │ ├── 10.yaml │ │ ├── 11.yaml │ │ ├── 2.yaml │ │ ├── 3.yaml │ │ ├── 4.yaml │ │ ├── 5.yaml │ │ ├── 6.yaml │ │ ├── 7.yaml │ │ ├── 8.yaml │ │ ├── 9.yaml │ │ ├── perf │ │ └── perf.yaml │ ├── stream │ │ ├── 01 │ │ └── 01.yaml │ ├── stress-ng │ │ ├── 01 │ │ ├── 01.yaml │ │ ├── 02 │ │ ├── 02.yaml │ │ ├── 03 │ │ ├── 03.yaml │ │ ├── 04 │ │ ├── 04.yaml │ │ ├── 05 │ │ ├── 05.yaml │ │ ├── 06 │ │ ├── 06.yaml │ │ ├── 07 │ │ ├── 07.yaml │ │ ├── 08 │ │ └── 08.yaml │ ├── tbench │ │ ├── 01 │ │ ├── 01.yaml │ │ ├── 02 │ │ └── 02.yaml │ ├── tcrypt │ │ ├── 1 │ │ └── 1.yaml │ ├── test-bpf │ │ ├── 1 │ │ ├── 2 │ │ ├── 3 │ │ ├── 1.yaml │ │ ├── 2.yaml │ │ └── 3.yaml │ ├── tinymembench │ │ ├── 01 │ │ └── 01.yaml │ ├── turbostat │ │ ├── 1 │ │ ├── 2 │ │ ├── 1.yaml │ │ └── 2.yaml │ ├── unixbench │ │ ├── 01 │ │ ├── 01.yaml │ │ ├── 02 │ │ ├── 02.yaml │ │ ├── 03 │ │ └── 03.yaml │ ├── uperf │ │ ├── 01 │ │ ├── 01.yaml │ │ ├── 02 │ │ └── 02.yaml │ ├── vm-scalability │ │ ├── 1 │ │ ├── 2 │ │ ├── 3 │ │ ├── 1.yaml │ │ ├── 2.yaml │ │ └── 3.yaml │ ├── will-it-scale │ │ ├── 1 │ │ ├── 2 │ │ ├── 1.yaml │ │ └── 2.yaml │ └── xfstests │ │ ├── btrfs │ │ ├── btrfs.yaml │ │ ├── expunged-01 │ │ ├── expunged-01.yaml │ │ ├── expunged-02 │ │ ├── expunged-02.yaml │ │ ├── expunged-03 │ │ ├── expunged-03.yaml │ │ ├── ext4 │ │ ├── ext4.yaml │ │ ├── generic-01 │ │ ├── generic-01.yaml │ │ ├── generic-02 │ │ ├── generic-02.yaml │ │ ├── generic-04 │ │ ├── generic-04.yaml │ │ ├── generic-mixed │ │ ├── generic-mixed.yaml │ │ ├── ocfs2 │ │ ├── ocfs2.yaml │ │ ├── udf │ │ ├── udf.yaml │ │ ├── xfs │ │ └── xfs.yaml ├── stats_part │ └── result_root │ │ ├── 0 │ │ ├── job.yaml │ │ ├── mpstat.json │ │ └── perf-stat.json │ │ ├── 1 │ │ ├── job.yaml │ │ ├── mpstat.json │ │ └── perf-stat.json │ │ ├── 2 │ │ ├── job.yaml │ │ ├── mpstat.json │ │ └── perf-stat.json │ │ ├── matrix_0.json │ │ ├── matrix_1.json │ │ ├── matrix_2.json │ │ ├── stats_0.json │ │ ├── stats_1.json │ │ └── stats_2.json ├── stats_part_spec.rb ├── stats_spec.rb ├── unit_spec.rb ├── xfstests_spec.rb └── yaml_spec.rb ├── stats ├── boot-meminfo ├── boot-memory ├── boot-slabinfo ├── boot-time ├── buddyinfo ├── cpufreq ├── cpuidle ├── dbench-ruby ├── debug-stats ├── diskstats ├── dmesg ├── energy ├── ethtool ├── ftrace ├── ftrace-funcgraph ├── interrupts ├── irq_exception_noise ├── irq_noise ├── kernel-size ├── kmemleak ├── kmemleak-test ├── kmsg ├── kthread_noise ├── kvm ├── last_state ├── lock_stat ├── mdstat ├── meminfo ├── memmap ├── memory--numa_stat ├── memory--stat ├── nfsstat ├── numa-meminfo ├── numa-numastat ├── numa-vmstat ├── pack ├── pagetypeinfo ├── perf-sched ├── proc-vmstat ├── sched_debug ├── slabinfo ├── softirqs ├── stack ├── stderr ├── syscalls ├── thermal ├── time ├── uptime ├── wrapper └── zoneinfo ├── tests └── wrapper └── tools ├── bm-mkcgz ├── build-packages ├── chroot.sh ├── convert-bash-to-sh ├── ftq-histogram ├── ftrace ├── ftrace-event-to-matrix ├── gather-gcov-test ├── gen_setup_sysctl ├── generate-tests ├── grep-external-commands ├── grep-ruby-lib-dependency ├── lkp-config-rootfs ├── matrix2csv ├── mcalc ├── parse-boot-trace ├── plot-tool ├── pt-call-summary.py ├── sort-files ├── split-tests ├── test-packages.sh ├── test-shells ├── test_install.sh └── tests-in-category /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .gitignore 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | update 2 | deploy 3 | bin/event/wakeup 4 | .src_git_version 5 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-cayman -------------------------------------------------------------------------------- /bin/event/wait: -------------------------------------------------------------------------------- 1 | wakeup -------------------------------------------------------------------------------- /bin/run-with-job: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | . $LKP_SRC/lib/job-init.sh 4 | 5 | export job_file="$1" 6 | shift 7 | job_env 8 | exec "$@" 9 | -------------------------------------------------------------------------------- /cluster/cs-localhost: -------------------------------------------------------------------------------- 1 | localhost: 2 | roles: [ server, client ] 3 | -------------------------------------------------------------------------------- /daemon/netpipe-server: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # - test 3 | 4 | case $test in 5 | tcp ) 6 | NPtcp & 7 | ;; 8 | esac 9 | -------------------------------------------------------------------------------- /daemon/nfsd: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # XXX: setup exports for $mount_points 4 | 5 | /etc/init.d/nfs-kernel-server restart 6 | -------------------------------------------------------------------------------- /daemon/tbench-server: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | . $LKP_SRC/lib/reproduce-log.sh 4 | 5 | log_eval "tbench_srv &" 6 | 7 | sleep 1 8 | -------------------------------------------------------------------------------- /distro/adaptation-pkg/aliyun: -------------------------------------------------------------------------------- 1 | redhat -------------------------------------------------------------------------------- /distro/adaptation-pkg/redhat: -------------------------------------------------------------------------------- 1 | centos -------------------------------------------------------------------------------- /distro/adaptation-pkg/rocky: -------------------------------------------------------------------------------- 1 | centos -------------------------------------------------------------------------------- /distro/adaptation/aliyun: -------------------------------------------------------------------------------- 1 | centos -------------------------------------------------------------------------------- /distro/adaptation/debian/bookworm_sid: -------------------------------------------------------------------------------- 1 | 12 -------------------------------------------------------------------------------- /distro/adaptation/fedora/38: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /distro/adaptation/fedora/39: -------------------------------------------------------------------------------- 1 | 38 -------------------------------------------------------------------------------- /distro/adaptation/oracle: -------------------------------------------------------------------------------- 1 | centos -------------------------------------------------------------------------------- /distro/adaptation/redhat/9: -------------------------------------------------------------------------------- 1 | ../centos/9 -------------------------------------------------------------------------------- /distro/adaptation/redhat/default: -------------------------------------------------------------------------------- 1 | ../centos/default -------------------------------------------------------------------------------- /distro/adaptation/rocky: -------------------------------------------------------------------------------- 1 | centos -------------------------------------------------------------------------------- /distro/aliyun: -------------------------------------------------------------------------------- 1 | centos -------------------------------------------------------------------------------- /distro/depends/blktrace: -------------------------------------------------------------------------------- 1 | blktrace 2 | -------------------------------------------------------------------------------- /distro/depends/cluster: -------------------------------------------------------------------------------- 1 | iproute 2 | -------------------------------------------------------------------------------- /distro/depends/fs1: -------------------------------------------------------------------------------- 1 | fs2 -------------------------------------------------------------------------------- /distro/depends/fs2: -------------------------------------------------------------------------------- 1 | nfs-kernel-server 2 | python 3 | rpcbind 4 | -------------------------------------------------------------------------------- /distro/depends/lkp: -------------------------------------------------------------------------------- 1 | bc 2 | gawk 3 | time 4 | kmod 5 | gzip 6 | which 7 | rsync 8 | numactl 9 | -------------------------------------------------------------------------------- /distro/depends/md: -------------------------------------------------------------------------------- 1 | mdadm 2 | -------------------------------------------------------------------------------- /distro/depends/msr: -------------------------------------------------------------------------------- 1 | msr-tools 2 | -------------------------------------------------------------------------------- /distro/depends/nfsiostat: -------------------------------------------------------------------------------- 1 | nfs-common 2 | python-minimal 3 | -------------------------------------------------------------------------------- /distro/depends/nfsiozone: -------------------------------------------------------------------------------- 1 | nfs-kernel-server 2 | -------------------------------------------------------------------------------- /distro/depends/numactl: -------------------------------------------------------------------------------- 1 | numactl 2 | -------------------------------------------------------------------------------- /distro/depends/numainfo: -------------------------------------------------------------------------------- 1 | numactl -------------------------------------------------------------------------------- /distro/depends/python: -------------------------------------------------------------------------------- 1 | python 2 | -------------------------------------------------------------------------------- /distro/depends/qemu: -------------------------------------------------------------------------------- 1 | cpio 2 | make 3 | qemu-system-x86 4 | -------------------------------------------------------------------------------- /distro/depends/setup-nic: -------------------------------------------------------------------------------- 1 | ethtool 2 | -------------------------------------------------------------------------------- /distro/installer/aliyun: -------------------------------------------------------------------------------- 1 | redhat -------------------------------------------------------------------------------- /distro/installer/exaleap-riscv-linux: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | -------------------------------------------------------------------------------- /distro/installer/fedora: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | dnf -y install $* 4 | -------------------------------------------------------------------------------- /distro/installer/opensuse: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | zypper install -y $* 4 | -------------------------------------------------------------------------------- /distro/installer/redhat: -------------------------------------------------------------------------------- 1 | centos -------------------------------------------------------------------------------- /distro/installer/rocky: -------------------------------------------------------------------------------- 1 | centos -------------------------------------------------------------------------------- /distro/ubuntu: -------------------------------------------------------------------------------- 1 | debian -------------------------------------------------------------------------------- /doc/README-job-allocation.md: -------------------------------------------------------------------------------- 1 | ../allot/README.md -------------------------------------------------------------------------------- /doc/README-job-file.md: -------------------------------------------------------------------------------- 1 | ../jobs/README.md -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- 1 | ../README.md -------------------------------------------------------------------------------- /doc/command-index/10-install: -------------------------------------------------------------------------------- 1 | 2 | INSTALLATION 3 | 4 | install JOB install binary dependencies for JOB 5 | -------------------------------------------------------------------------------- /doc/command-index/20-job: -------------------------------------------------------------------------------- 1 | 2 | JOB 3 | 4 | split JOB split JOB matrix 5 | compile JOB compile JOB into shell script 6 | -------------------------------------------------------------------------------- /doc/command-index/90-debug: -------------------------------------------------------------------------------- 1 | 2 | DEBUG 3 | 4 | irb run irb with lib/*.rb loaded 5 | pry run pry with lib/*.rb loaded 6 | -------------------------------------------------------------------------------- /docker/install: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /etc/default_stats.yaml: -------------------------------------------------------------------------------- 1 | dmesg: 2 | kmsg: 3 | last_state: 4 | stderr: 5 | time: 6 | -------------------------------------------------------------------------------- /etc/ftrace_key_prefix: -------------------------------------------------------------------------------- 1 | --- 2 | balance_dirty_pages: bdi 3 | bdi_dirty_ratelimit: bdi 4 | writeback_single_inode: bdi 5 | -------------------------------------------------------------------------------- /etc/ignore-part-prefixes: -------------------------------------------------------------------------------- 1 | perf-stat.overall. 2 | perf-stat.ps. 3 | perf-stat.total. 4 | -------------------------------------------------------------------------------- /etc/ignore-stderr/OOM: -------------------------------------------------------------------------------- 1 | /lkp/.*/bin/run-lkp: .* Terminated .* run-job --pid-file .* 2 | -------------------------------------------------------------------------------- /etc/ignore-stderr/boot: -------------------------------------------------------------------------------- 1 | modprobe: FATAL: Module nfs not found in directory /lib/modules/.* 2 | -------------------------------------------------------------------------------- /etc/ignore-stderr/btrfs: -------------------------------------------------------------------------------- 1 | Performing full device TRIM .* 2 | -------------------------------------------------------------------------------- /etc/ignore-stderr/cifs: -------------------------------------------------------------------------------- 1 | cp: preserving permissions for .*: Operation not supported 2 | -------------------------------------------------------------------------------- /etc/ignore-stderr/dd: -------------------------------------------------------------------------------- 1 | .* bytes (.*) copied, .* s, .*/s 2 | .* records in 3 | .* records out 4 | -------------------------------------------------------------------------------- /etc/ignore-stderr/kbuild: -------------------------------------------------------------------------------- 1 | In file included from .* 2 | scripts\/kconfig\/confdata\.c:.* 3 | \s+sprintf\(.* 4 | \s+\^~* 5 | -------------------------------------------------------------------------------- /etc/ignore-stderr/kernel-selftests-bpf: -------------------------------------------------------------------------------- 1 | kernel-selftests -------------------------------------------------------------------------------- /etc/ignore-stderr/leaking-addresses: -------------------------------------------------------------------------------- 1 | timed out parsing: /sys/kernel/debug/dri/0/crtc-0/crc/data 2 | -------------------------------------------------------------------------------- /etc/ignore-stderr/lkp-qemu: -------------------------------------------------------------------------------- 1 | .*WARNING\: Using existing .* tree 2 | -------------------------------------------------------------------------------- /etc/ignore-stderr/lmbench3: -------------------------------------------------------------------------------- 1 | .*MB OK.* 2 | mhz: should take approximately .* seconds 3 | -------------------------------------------------------------------------------- /etc/ignore-stderr/locktorture: -------------------------------------------------------------------------------- 1 | rmmod: ERROR: Module locktorture is in use 2 | -------------------------------------------------------------------------------- /etc/ignore-stderr/ltp: -------------------------------------------------------------------------------- 1 | .* TINFO: .* 2 | .* TPASS: .* 3 | Skipping BTF generation for .* 4 | -------------------------------------------------------------------------------- /etc/ignore-stderr/mce-log: -------------------------------------------------------------------------------- 1 | mcelog: no process found 2 | -------------------------------------------------------------------------------- /etc/ignore-stderr/monitor: -------------------------------------------------------------------------------- 1 | monitors/kmemleak:#:echo:echo:I/O_error 2 | -------------------------------------------------------------------------------- /etc/ignore-stderr/netperf: -------------------------------------------------------------------------------- 1 | netperf: send_omni: recv_data failed: Connection reset by peer 2 | -------------------------------------------------------------------------------- /etc/ignore-stderr/ntpdate: -------------------------------------------------------------------------------- 1 | .* ntpdate\[[0-9]+\]: no server suitable for synchronization found 2 | -------------------------------------------------------------------------------- /etc/ignore-stderr/oom-killer: -------------------------------------------------------------------------------- 1 | /lkp/.*/src/monitors/oom-killer: Cannot fork 2 | -------------------------------------------------------------------------------- /etc/ignore-stderr/openssl-speed: -------------------------------------------------------------------------------- 1 | \+DT:sha256:.*:.* 2 | \+R:.*:sha256 3 | -------------------------------------------------------------------------------- /etc/ignore-stderr/pmbench: -------------------------------------------------------------------------------- 1 | modprobe: FATAL: Module dax_pmem_compat is in use. 2 | -------------------------------------------------------------------------------- /etc/ignore-stderr/stress-ng: -------------------------------------------------------------------------------- 1 | cat: write error: No space left on device 2 | -------------------------------------------------------------------------------- /etc/ignore-stderr/stutter: -------------------------------------------------------------------------------- 1 | ./run.sh: line .* Killed .* ./memhog .*STUTTER_MEMFAULT_SIZE 2 | -------------------------------------------------------------------------------- /etc/ignore-stderr/tcrypt: -------------------------------------------------------------------------------- 1 | modprobe: ERROR: could not insert 'tcrypt': Resource temporarily unavailable 2 | -------------------------------------------------------------------------------- /etc/ignore-stderr/test-bpf: -------------------------------------------------------------------------------- 1 | modprobe: ERROR: could not insert 'test_bpf': Invalid argument 2 | -------------------------------------------------------------------------------- /etc/ignore-stderr/trace-cmd: -------------------------------------------------------------------------------- 1 | [0-9]+ bytes in size 2 | CPU[0-9]+ data recorded at offset=0x.* 3 | -------------------------------------------------------------------------------- /etc/ignore-stderr/trinity: -------------------------------------------------------------------------------- 1 | modprobe: FATAL: Module nfs not found in directory /lib/modules/.* 2 | -------------------------------------------------------------------------------- /etc/ignore-stderr/unixbench: -------------------------------------------------------------------------------- 1 | .* 3dinfo: not found 2 | -------------------------------------------------------------------------------- /etc/ignore-stderr/vm-scalability: -------------------------------------------------------------------------------- 1 | Failed to start rpc-statd.service: Connection timed out 2 | -------------------------------------------------------------------------------- /etc/ignore-stderr/watchdog: -------------------------------------------------------------------------------- 1 | Terminated 2 | -------------------------------------------------------------------------------- /etc/ignore-stderr/wipefs: -------------------------------------------------------------------------------- 1 | wipefs: WARNING: /dev/[a-z0-9]*: appears to contain 'dos' partition table 2 | -------------------------------------------------------------------------------- /etc/pass: -------------------------------------------------------------------------------- 1 | .+\.pass$ 2 | -------------------------------------------------------------------------------- /etc/perf-metrics-patterns: -------------------------------------------------------------------------------- 1 | ^(.*\.)?time..* 2 | ^lock_stat..*..contentions 3 | -------------------------------------------------------------------------------- /etc/plot-unit.yaml: -------------------------------------------------------------------------------- 1 | boot-time.dhcp: seconds 2 | kernel-size.bss: MB 3 | kernel-size.data: MB 4 | kernel-size.text: MB 5 | -------------------------------------------------------------------------------- /etc/unit-size.yaml: -------------------------------------------------------------------------------- 1 | MB: 1048576 2 | seconds: 1 3 | -------------------------------------------------------------------------------- /etc/valid-range-iostat.yaml: -------------------------------------------------------------------------------- 1 | iostat.*.util: [0, 300] 2 | iostat.cpu.*: [0, 110] 3 | -------------------------------------------------------------------------------- /etc/valid-range-turbostat.yaml: -------------------------------------------------------------------------------- 1 | turbostat..*Watt: [0, 10000] 2 | -------------------------------------------------------------------------------- /etc/valid-range-vmstat.yaml: -------------------------------------------------------------------------------- 1 | vmstat.cpu.*: [0, 110] 2 | -------------------------------------------------------------------------------- /filters/need_kconfig_hw.rb: -------------------------------------------------------------------------------- 1 | need_kconfig.rb -------------------------------------------------------------------------------- /filters/suggest_kconfig.rb: -------------------------------------------------------------------------------- 1 | need_kconfig.rb -------------------------------------------------------------------------------- /hosts/vm-snb: -------------------------------------------------------------------------------- 1 | model: qemu-system-x86_64 -enable-kvm -cpu SandyBridge 2 | nr_cpu: 2 3 | memory: 16G 4 | ssh_base_port: 23032 5 | -------------------------------------------------------------------------------- /hosts/vm-snb-i386: -------------------------------------------------------------------------------- 1 | model: qemu-system-i386 -enable-kvm -cpu SandyBridge 2 | nr_cpu: 2 3 | memory: 4G 4 | ssh_base_port: 23400 5 | -------------------------------------------------------------------------------- /include/category/functional: -------------------------------------------------------------------------------- 1 | # default monitors 2 | kmsg: 3 | heartbeat: 4 | meminfo: 5 | # kmemleak: 6 | -------------------------------------------------------------------------------- /include/category/noise-benchmark: -------------------------------------------------------------------------------- 1 | # benchmark to measure noise 2 | -------------------------------------------------------------------------------- /include/category/power: -------------------------------------------------------------------------------- 1 | # default monitors 2 | kmsg: 3 | heartbeat: 4 | interrupts: 5 | turbostat: 6 | -------------------------------------------------------------------------------- /include/cgroup2: -------------------------------------------------------------------------------- 1 | need_kconfig: 2 | - CGROUPS: y 3 | - MEMCG: y 4 | - CGROUP_PIDS: y 5 | - CGROUP_RDMA: y 6 | - BLK_CGROUP: y 7 | -------------------------------------------------------------------------------- /include/disk/nr_brd: -------------------------------------------------------------------------------- 1 | need_kconfig: 2 | - BLK_DEV_RAM: m 3 | - BLK_DEV: y 4 | - BLOCK: y 5 | -------------------------------------------------------------------------------- /include/disk/nr_hdd: -------------------------------------------------------------------------------- 1 | nr_ssd -------------------------------------------------------------------------------- /include/disk/nr_srd: -------------------------------------------------------------------------------- 1 | need_kconfig: 2 | - SCSI_DEBUG 3 | - SCSI 4 | - BLOCK: y 5 | -------------------------------------------------------------------------------- /include/fs/nfsv3: -------------------------------------------------------------------------------- 1 | need_kconfig: NFS_V3 2 | -------------------------------------------------------------------------------- /include/fs/nfsv4: -------------------------------------------------------------------------------- 1 | need_kconfig: NFS_V4 2 | -------------------------------------------------------------------------------- /include/fs1: -------------------------------------------------------------------------------- 1 | fs -------------------------------------------------------------------------------- /include/fs2: -------------------------------------------------------------------------------- 1 | fs -------------------------------------------------------------------------------- /include/fuse: -------------------------------------------------------------------------------- 1 | need_kconfig: 2 | - FUSE_FS 3 | - BLOCK: y 4 | -------------------------------------------------------------------------------- /include/intel_powerclamp: -------------------------------------------------------------------------------- 1 | need_kconfig: 2 | - INTEL_POWERCLAMP 3 | -------------------------------------------------------------------------------- /include/intel_pstate: -------------------------------------------------------------------------------- 1 | need_kconfig: 2 | - X86_INTEL_PSTATE: y 3 | -------------------------------------------------------------------------------- /include/iosched/scheduler: -------------------------------------------------------------------------------- 1 | need_kconfig: 2 | - MQ_IOSCHED_DEADLINE 3 | - MQ_IOSCHED_KYBER 4 | - BLOCK: y 5 | -------------------------------------------------------------------------------- /include/swap: -------------------------------------------------------------------------------- 1 | need_kconfig: 2 | - SWAP: y 3 | - MMU: y 4 | - BLOCK: y 5 | -------------------------------------------------------------------------------- /jobs/borrow-10d.yaml: -------------------------------------------------------------------------------- 1 | suite: borrow 2 | testcase: borrow 3 | 4 | runtime: 10d 5 | 6 | sleep: 7 | -------------------------------------------------------------------------------- /jobs/borrow-1d.yaml: -------------------------------------------------------------------------------- 1 | suite: borrow 2 | testcase: borrow 3 | 4 | runtime: 1d 5 | timeout: 1d 6 | 7 | sleep: 8 | -------------------------------------------------------------------------------- /jobs/borrow-1h.yaml: -------------------------------------------------------------------------------- 1 | suite: borrow 2 | testcase: borrow 3 | 4 | runtime: 1h 5 | 6 | sleep: 7 | -------------------------------------------------------------------------------- /jobs/coremark.yaml: -------------------------------------------------------------------------------- 1 | suite: coremark 2 | testcase: coremark 3 | category: benchmark 4 | 5 | coremark: 6 | -------------------------------------------------------------------------------- /jobs/cpu-hotplug.yaml: -------------------------------------------------------------------------------- 1 | testcase: cpu-hotplug 2 | category: functional 3 | 4 | need_memory: 1G 5 | 6 | cpu-hotplug: 7 | -------------------------------------------------------------------------------- /jobs/ebizzy-cgroup2.yaml: -------------------------------------------------------------------------------- 1 | << : jobs/cgroup2.yaml 2 | << : jobs/ebizzy.yaml 3 | -------------------------------------------------------------------------------- /jobs/filebench-part1-1ssd.yaml: -------------------------------------------------------------------------------- 1 | << : jobs/filebench-part1.yaml 2 | 3 | disk: 1SSD 4 | -------------------------------------------------------------------------------- /jobs/fxmark-1ssd.yaml: -------------------------------------------------------------------------------- 1 | << : jobs/fxmark.yaml 2 | 3 | disk: 1SSD 4 | media: ssd 5 | -------------------------------------------------------------------------------- /jobs/hackbench-cgroup2.yaml: -------------------------------------------------------------------------------- 1 | << : jobs/cgroup2.yaml 2 | << : jobs/hackbench.yaml 3 | -------------------------------------------------------------------------------- /jobs/kbuild-cgroup2.yaml: -------------------------------------------------------------------------------- 1 | << : jobs/cgroup2.yaml 2 | << : jobs/kbuild.yaml 3 | -------------------------------------------------------------------------------- /jobs/kmemleak-test.yaml: -------------------------------------------------------------------------------- 1 | suite: kmemleak-test 2 | testcase: kmemleak-test 3 | category: functional 4 | 5 | kmemleak-test: 6 | -------------------------------------------------------------------------------- /jobs/linpack.yaml: -------------------------------------------------------------------------------- 1 | suite: linpack 2 | testcase: linpack 3 | category: benchmark 4 | 5 | linpack: 6 | -------------------------------------------------------------------------------- /jobs/mytest.yaml: -------------------------------------------------------------------------------- 1 | suite: mytest 2 | testcase: mytest 3 | category: benchmark 4 | 5 | mytest: 6 | -------------------------------------------------------------------------------- /jobs/netperf-cgroup2.yaml: -------------------------------------------------------------------------------- 1 | << : jobs/cgroup2.yaml 2 | << : jobs/netperf.yaml 3 | -------------------------------------------------------------------------------- /jobs/pigz-cgroup2.yaml: -------------------------------------------------------------------------------- 1 | << : jobs/cgroup2.yaml 2 | << : jobs/pigz.yaml 3 | -------------------------------------------------------------------------------- /jobs/qat.yaml: -------------------------------------------------------------------------------- 1 | suite: qat 2 | testcase: qat 3 | category: functional 4 | 5 | qat: 6 | -------------------------------------------------------------------------------- /jobs/rdma-pyverbs.yml: -------------------------------------------------------------------------------- 1 | suite: rdma-pyverbs 2 | testcase: rdma-pyverbs 3 | category: functional 4 | 5 | rdma-pyverbs: 6 | -------------------------------------------------------------------------------- /jobs/reaim-disk-1ssd.yaml: -------------------------------------------------------------------------------- 1 | << : jobs/reaim-disk.yaml 2 | 3 | disk: 1SSD 4 | -------------------------------------------------------------------------------- /jobs/stress-ng-1ssd.yaml: -------------------------------------------------------------------------------- 1 | << : jobs/stress-ng-1hdd.yaml 2 | 3 | disk: 1SSD 4 | -------------------------------------------------------------------------------- /jobs/sysbench-fileio-1ssd.yaml: -------------------------------------------------------------------------------- 1 | << : jobs/sysbench-fileio.yaml 2 | 3 | disk: 1SSD 4 | -------------------------------------------------------------------------------- /jobs/tinymembench.yaml: -------------------------------------------------------------------------------- 1 | suite: tinymembench 2 | testcase: tinymembench 3 | category: benchmark 4 | 5 | tinymembench: 6 | -------------------------------------------------------------------------------- /jobs/unixbench-cgroup2.yaml: -------------------------------------------------------------------------------- 1 | << : jobs/cgroup2.yaml 2 | << : jobs/unixbench.yaml 3 | -------------------------------------------------------------------------------- /jobs/will-it-scale-cgroup2.yaml: -------------------------------------------------------------------------------- 1 | << : jobs/cgroup2.yaml 2 | << : jobs/will-it-scale.yaml 3 | -------------------------------------------------------------------------------- /lib/kmemleak.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | kmemleak_is_enabled() 4 | { 5 | [ -f /sys/kernel/debug/kmemleak ] 6 | } 7 | -------------------------------------------------------------------------------- /lib/reboot.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | reboot_tbox() 4 | { 5 | reboot 6 | } 7 | -------------------------------------------------------------------------------- /lkp-exec/__result: -------------------------------------------------------------------------------- 1 | __rt -------------------------------------------------------------------------------- /lkp-exec/__rt: -------------------------------------------------------------------------------- 1 | rt -------------------------------------------------------------------------------- /lkp-exec/_result: -------------------------------------------------------------------------------- 1 | _rt -------------------------------------------------------------------------------- /lkp-exec/_rt: -------------------------------------------------------------------------------- 1 | rt -------------------------------------------------------------------------------- /lkp-exec/ll: -------------------------------------------------------------------------------- 1 | rt -------------------------------------------------------------------------------- /lkp-exec/ls: -------------------------------------------------------------------------------- 1 | rt -------------------------------------------------------------------------------- /lkp-exec/result: -------------------------------------------------------------------------------- 1 | rt -------------------------------------------------------------------------------- /mailing-list/dpdk/DEFAULTS: -------------------------------------------------------------------------------- 1 | project: dpdk 2 | -------------------------------------------------------------------------------- /mailing-list/git/DEFAULTS: -------------------------------------------------------------------------------- 1 | project: git 2 | -------------------------------------------------------------------------------- /mailing-list/linux/DEFAULTS: -------------------------------------------------------------------------------- 1 | project: linux 2 | -------------------------------------------------------------------------------- /mailing-list/openvswitch/DEFAULTS: -------------------------------------------------------------------------------- 1 | project: openvswitch 2 | -------------------------------------------------------------------------------- /mailing-list/qemu/DEFAULTS: -------------------------------------------------------------------------------- 1 | project: qemu 2 | -------------------------------------------------------------------------------- /mailing-list/xen/DEFAULTS: -------------------------------------------------------------------------------- 1 | project: xen 2 | -------------------------------------------------------------------------------- /monitors/bpfcc-tools2: -------------------------------------------------------------------------------- 1 | bpfcc-tools -------------------------------------------------------------------------------- /monitors/bpfcc-tools3: -------------------------------------------------------------------------------- 1 | bpfcc-tools -------------------------------------------------------------------------------- /monitors/buddyinfo: -------------------------------------------------------------------------------- 1 | proc-vmstat -------------------------------------------------------------------------------- /monitors/diskstats: -------------------------------------------------------------------------------- 1 | proc-vmstat -------------------------------------------------------------------------------- /monitors/heartbeat: -------------------------------------------------------------------------------- 1 | vmstat -------------------------------------------------------------------------------- /monitors/meminfo: -------------------------------------------------------------------------------- 1 | proc-vmstat -------------------------------------------------------------------------------- /monitors/memory--stat: -------------------------------------------------------------------------------- 1 | memory--numa_stat -------------------------------------------------------------------------------- /monitors/no-stdout/boot-time: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | -------------------------------------------------------------------------------- /monitors/numa-numastat: -------------------------------------------------------------------------------- 1 | numa-meminfo -------------------------------------------------------------------------------- /monitors/numa-vmstat: -------------------------------------------------------------------------------- 1 | numa-meminfo -------------------------------------------------------------------------------- /monitors/one-shot/boot-meminfo: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | test -f /proc/meminfo || exit 0 4 | 5 | cat /proc/meminfo 6 | -------------------------------------------------------------------------------- /monitors/one-shot/boot-slabinfo: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | test -f /proc/slabinfo || exit 0 4 | 5 | cat /proc/slabinfo 6 | -------------------------------------------------------------------------------- /monitors/one-shot/find: -------------------------------------------------------------------------------- 1 | /usr/bin/find -------------------------------------------------------------------------------- /monitors/one-shot/numainfo: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | numactl -H 4 | -------------------------------------------------------------------------------- /monitors/pagetypeinfo: -------------------------------------------------------------------------------- 1 | proc-vmstat -------------------------------------------------------------------------------- /monitors/plain/wait: -------------------------------------------------------------------------------- 1 | ../../bin/event/wakeup -------------------------------------------------------------------------------- /monitors/proc-stat: -------------------------------------------------------------------------------- 1 | proc-vmstat -------------------------------------------------------------------------------- /monitors/sched_debug: -------------------------------------------------------------------------------- 1 | proc-vmstat -------------------------------------------------------------------------------- /monitors/slabinfo: -------------------------------------------------------------------------------- 1 | proc-vmstat -------------------------------------------------------------------------------- /monitors/softirqs: -------------------------------------------------------------------------------- 1 | interrupts -------------------------------------------------------------------------------- /monitors/top: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec top -b -d ${interval:-1} 4 | -------------------------------------------------------------------------------- /monitors/zoneinfo: -------------------------------------------------------------------------------- 1 | proc-vmstat -------------------------------------------------------------------------------- /params/agent_threads: -------------------------------------------------------------------------------- 1 | nr_task -------------------------------------------------------------------------------- /params/cpuset.cpus: -------------------------------------------------------------------------------- 1 | /^all$/ "0-#{nr_cpu-1}" 2 | -------------------------------------------------------------------------------- /params/cpuset.mems: -------------------------------------------------------------------------------- 1 | /^all$/ "0-#{nr_node-1}" 2 | -------------------------------------------------------------------------------- /params/eatmem_size: -------------------------------------------------------------------------------- 1 | size -------------------------------------------------------------------------------- /params/fs: -------------------------------------------------------------------------------- 1 | /(.*)/ { fs: $1 } 2 | -------------------------------------------------------------------------------- /params/fs1: -------------------------------------------------------------------------------- 1 | fs -------------------------------------------------------------------------------- /params/fs2: -------------------------------------------------------------------------------- 1 | fs -------------------------------------------------------------------------------- /params/iosched: -------------------------------------------------------------------------------- 1 | /(.*)/ { iosched: $1 } 2 | -------------------------------------------------------------------------------- /params/iterations: -------------------------------------------------------------------------------- 1 | /(\d+)x/ $1.to_i 2 | -------------------------------------------------------------------------------- /params/mapsize: -------------------------------------------------------------------------------- 1 | test_memory_size -------------------------------------------------------------------------------- /params/master_threads: -------------------------------------------------------------------------------- 1 | nr_task -------------------------------------------------------------------------------- /params/md: -------------------------------------------------------------------------------- 1 | /(.*)/ { raid_level: $1.downcase } 2 | -------------------------------------------------------------------------------- /params/memcached_memsize: -------------------------------------------------------------------------------- 1 | test_memory_size -------------------------------------------------------------------------------- /params/memory.high: -------------------------------------------------------------------------------- 1 | test_memory_size -------------------------------------------------------------------------------- /params/memory.limit_in_bytes: -------------------------------------------------------------------------------- 1 | test_memory_size -------------------------------------------------------------------------------- /params/memory.low: -------------------------------------------------------------------------------- 1 | test_memory_size -------------------------------------------------------------------------------- /params/memory.max: -------------------------------------------------------------------------------- 1 | test_memory_size -------------------------------------------------------------------------------- /params/memory.memsw.limit_in_bytes: -------------------------------------------------------------------------------- 1 | test_memory_size -------------------------------------------------------------------------------- /params/memory.soft_limit_in_bytes: -------------------------------------------------------------------------------- 1 | test_memory_size -------------------------------------------------------------------------------- /params/message_threads: -------------------------------------------------------------------------------- 1 | nr_threads -------------------------------------------------------------------------------- /params/mytest: -------------------------------------------------------------------------------- 1 | /(.*)/ { mytest: $1 } 2 | -------------------------------------------------------------------------------- /params/nr_instances: -------------------------------------------------------------------------------- 1 | nr_threads -------------------------------------------------------------------------------- /params/nr_processes: -------------------------------------------------------------------------------- 1 | nr_threads -------------------------------------------------------------------------------- /params/nr_task: -------------------------------------------------------------------------------- 1 | nr_threads -------------------------------------------------------------------------------- /params/nr_threads: -------------------------------------------------------------------------------- 1 | /(\d+(?:\.\d+)?)%$/ ($1.to_f * nr_cpu / 100).to_i 2 | /(\d+)[a-z]+$/ $1.to_i 3 | -------------------------------------------------------------------------------- /params/period: -------------------------------------------------------------------------------- 1 | /(\d+)s/ $1.to_i 2 | /(\d+)m/ $1.to_i * 60 3 | /(\d+)h/ $1.to_i * 60 * 60 4 | /(\d+)d/ $1.to_i * 60 * 60 * 24 5 | -------------------------------------------------------------------------------- /params/ramdisk_size: -------------------------------------------------------------------------------- 1 | size -------------------------------------------------------------------------------- /params/runtime: -------------------------------------------------------------------------------- 1 | /(.*)/ to_seconds($1) 2 | -------------------------------------------------------------------------------- /params/setsize: -------------------------------------------------------------------------------- 1 | test_memory_size -------------------------------------------------------------------------------- /params/size: -------------------------------------------------------------------------------- 1 | /(.*)/ to_byte($1) 2 | -------------------------------------------------------------------------------- /params/test_memory_size: -------------------------------------------------------------------------------- 1 | /(\d+)%/ $1.to_i * to_byte(memory) / 100 2 | /(\d+[a-zA-Z])/ to_byte($1) 3 | -------------------------------------------------------------------------------- /params/testtime: -------------------------------------------------------------------------------- 1 | runtime -------------------------------------------------------------------------------- /params/total_setsize: -------------------------------------------------------------------------------- 1 | test_memory_size -------------------------------------------------------------------------------- /params/unit_size: -------------------------------------------------------------------------------- 1 | size -------------------------------------------------------------------------------- /params/worker_threads: -------------------------------------------------------------------------------- 1 | nr_threads -------------------------------------------------------------------------------- /post-run/.template_print-result-root: -------------------------------------------------------------------------------- 1 | echo result_root: $RESULT_ROOT 2 | -------------------------------------------------------------------------------- /programs/adrestia/pkg/depends: -------------------------------------------------------------------------------- 1 | clang 2 | -------------------------------------------------------------------------------- /programs/analyze-suspend/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | libcap-dev 2 | -------------------------------------------------------------------------------- /programs/apachebench/pkg/depends: -------------------------------------------------------------------------------- 1 | apache2 2 | libapache2-mpm-itk 3 | libssl 4 | -------------------------------------------------------------------------------- /programs/autonuma-benchmark/pkg/depends: -------------------------------------------------------------------------------- 1 | build-essential 2 | gawk 3 | gnuplot 4 | libc-dev 5 | libnuma-dev 6 | numactl 7 | -------------------------------------------------------------------------------- /programs/avocado/include: -------------------------------------------------------------------------------- 1 | need_kconfig: 2 | - TUN: m 3 | -------------------------------------------------------------------------------- /programs/blktests/pkg/addon/tests/block-standalone: -------------------------------------------------------------------------------- 1 | 003 2 | 010 3 | 011 4 | 027 5 | -------------------------------------------------------------------------------- /programs/blktests/pkg/addon/tests/nvme-standalone: -------------------------------------------------------------------------------- 1 | 032 2 | -------------------------------------------------------------------------------- /programs/blktests/pkg/addon/tests/srp-standalone: -------------------------------------------------------------------------------- 1 | 014 2 | -------------------------------------------------------------------------------- /programs/bpfcc-tools/include: -------------------------------------------------------------------------------- 1 | initrds+: 2 | - linux_headers 3 | -------------------------------------------------------------------------------- /programs/bpfcc-tools/pkg/depends: -------------------------------------------------------------------------------- 1 | libelf1 2 | python 3 | zlib1g 4 | -------------------------------------------------------------------------------- /programs/cassandra/pkg/depends: -------------------------------------------------------------------------------- 1 | lsof 2 | openjdk 3 | -------------------------------------------------------------------------------- /programs/chromeswap/pkg/depends: -------------------------------------------------------------------------------- 1 | libblas3 2 | python-numpy 3 | -------------------------------------------------------------------------------- /programs/cyclictest/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | build-essential 2 | libnuma-dev 3 | -------------------------------------------------------------------------------- /programs/daxctl/pkg: -------------------------------------------------------------------------------- 1 | ../ndctl/pkg -------------------------------------------------------------------------------- /programs/dbench/pkg/depends: -------------------------------------------------------------------------------- 1 | libsmbclient 2 | libtirpc 3 | libtirpc3 4 | rpcsvc-proto 5 | -------------------------------------------------------------------------------- /programs/dbench/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | libpopt-dev 2 | libsmbclient-dev 3 | samba-dev 4 | xsltproc 5 | zlib1g-dev 6 | -------------------------------------------------------------------------------- /programs/dd/pkg/depends: -------------------------------------------------------------------------------- 1 | psmisc 2 | -------------------------------------------------------------------------------- /programs/debug-test/run: -------------------------------------------------------------------------------- 1 | ../../setup/debug-setup -------------------------------------------------------------------------------- /programs/default/parse: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | $(which cat) $@ 4 | -------------------------------------------------------------------------------- /programs/device-dax/pkg: -------------------------------------------------------------------------------- 1 | ../ndctl/pkg -------------------------------------------------------------------------------- /programs/eatmem/pkg: -------------------------------------------------------------------------------- 1 | ../vm-scalability/pkg -------------------------------------------------------------------------------- /programs/energy/pkg: -------------------------------------------------------------------------------- 1 | ../perf/pkg -------------------------------------------------------------------------------- /programs/exit-free/parse: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | grep duration 4 | -------------------------------------------------------------------------------- /programs/exit-free/pkg/depends: -------------------------------------------------------------------------------- 1 | strace 2 | -------------------------------------------------------------------------------- /programs/f2fs-tools/pkg/depends: -------------------------------------------------------------------------------- 1 | autoconf 2 | libtool 3 | pkg-config 4 | -------------------------------------------------------------------------------- /programs/f2fs-tools/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | libselinux1-dev 2 | uuid-dev 3 | -------------------------------------------------------------------------------- /programs/filebench/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | automake 2 | bison 3 | flex 4 | libtool 5 | -------------------------------------------------------------------------------- /programs/fio/pkg/depends: -------------------------------------------------------------------------------- 1 | libaio 2 | libnuma1 3 | libpmem1 (x86_64) 4 | -------------------------------------------------------------------------------- /programs/fio/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | build-essential 2 | libaio-dev 3 | libnuma-dev 4 | libpmem-dev (x86_64) 5 | -------------------------------------------------------------------------------- /programs/fsmark/include: -------------------------------------------------------------------------------- 1 | need_kconfig: 2 | - NFSD 3 | -------------------------------------------------------------------------------- /programs/ftrace-onoff/include: -------------------------------------------------------------------------------- 1 | need_kconfig: 2 | - FTRACE: y 3 | -------------------------------------------------------------------------------- /programs/fxmark/include: -------------------------------------------------------------------------------- 1 | need_kconfig: 2 | - F2FS_FS: m 3 | 4 | rootfs: debian-11-x86_64.cgz 5 | -------------------------------------------------------------------------------- /programs/fxmark/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | automake 2 | bison 3 | flex 4 | libtool 5 | sudo 6 | -------------------------------------------------------------------------------- /programs/hackbench/pkg/depends: -------------------------------------------------------------------------------- 1 | rt-tests 2 | -------------------------------------------------------------------------------- /programs/hackbench/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | libnuma-dev 2 | -------------------------------------------------------------------------------- /programs/hpcc/include: -------------------------------------------------------------------------------- 1 | rootfs: debian-10.4-x86_64-20200603.cgz 2 | -------------------------------------------------------------------------------- /programs/hpcc/pkg/depends: -------------------------------------------------------------------------------- 1 | hpcc 2 | -------------------------------------------------------------------------------- /programs/idle/parse: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | 3 | stats_name = 'pass: 1' 4 | 5 | puts stats_name 6 | -------------------------------------------------------------------------------- /programs/intel-ipsec-mb/pkg/depends: -------------------------------------------------------------------------------- 1 | nasm 2 | -------------------------------------------------------------------------------- /programs/iostat/pkg/depends: -------------------------------------------------------------------------------- 1 | procps 2 | sysstat 3 | -------------------------------------------------------------------------------- /programs/iozone/include: -------------------------------------------------------------------------------- 1 | need_kconfig: 2 | - BLK_DEV_DM 3 | -------------------------------------------------------------------------------- /programs/iperf/pkg/depends: -------------------------------------------------------------------------------- 1 | iperf3 2 | -------------------------------------------------------------------------------- /programs/kbuild/pkg/depends: -------------------------------------------------------------------------------- 1 | bc 2 | bison 3 | build-essential 4 | flex 5 | libelf-dev 6 | libssl-dev 7 | openssl 8 | -------------------------------------------------------------------------------- /programs/kernel-selftests-bpf/parse: -------------------------------------------------------------------------------- 1 | ../kernel-selftests/parse -------------------------------------------------------------------------------- /programs/kernel-selftests-bpf/pkg: -------------------------------------------------------------------------------- 1 | ../kernel-selftests/pkg -------------------------------------------------------------------------------- /programs/kernel-selftests-bpf/run: -------------------------------------------------------------------------------- 1 | ../kernel-selftests/run -------------------------------------------------------------------------------- /programs/kernel-selftests-rust/parse: -------------------------------------------------------------------------------- 1 | ../kernel-selftests/parse -------------------------------------------------------------------------------- /programs/kernel-selftests-rust/pkg: -------------------------------------------------------------------------------- 1 | ../kernel-selftests/pkg -------------------------------------------------------------------------------- /programs/kernel-selftests-rust/run: -------------------------------------------------------------------------------- 1 | ../kernel-selftests/run -------------------------------------------------------------------------------- /programs/kmemleak-test/parse: -------------------------------------------------------------------------------- 1 | ../../stats/kmemleak -------------------------------------------------------------------------------- /programs/kvm-unit-tests-qemu/parse: -------------------------------------------------------------------------------- 1 | ../kvm-unit-tests/parse -------------------------------------------------------------------------------- /programs/kvm-unit-tests-qemu/pkg/PKGBUILD: -------------------------------------------------------------------------------- 1 | ../../kvm-unit-tests/pkg/PKGBUILD -------------------------------------------------------------------------------- /programs/kvm-unit-tests-qemu/pkg/addon: -------------------------------------------------------------------------------- 1 | ../../kvm-unit-tests/pkg/addon -------------------------------------------------------------------------------- /programs/kvm-unit-tests/pkg/depends: -------------------------------------------------------------------------------- 1 | binutils 2 | linux-libc-dev 3 | python 4 | qemu-system 5 | virt-what 6 | -------------------------------------------------------------------------------- /programs/leaking-addresses/pkg/depends: -------------------------------------------------------------------------------- 1 | perl-base 2 | -------------------------------------------------------------------------------- /programs/leaking-addresses/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | jq 2 | -------------------------------------------------------------------------------- /programs/linkbench/pkg/depends: -------------------------------------------------------------------------------- 1 | mysql-server 2 | openjdk 3 | -------------------------------------------------------------------------------- /programs/linkbench/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | maven 2 | -------------------------------------------------------------------------------- /programs/linpack/pkg/depends: -------------------------------------------------------------------------------- 1 | libarchive-tools 2 | -------------------------------------------------------------------------------- /programs/lmbench3/pkg/depends: -------------------------------------------------------------------------------- 1 | build-essential 2 | gnuplot 3 | libc-dev 4 | libtirpc-dev 5 | net-tools 6 | -------------------------------------------------------------------------------- /programs/lz4-test/pkg/depends: -------------------------------------------------------------------------------- 1 | autoconf 2 | build-essential 3 | -------------------------------------------------------------------------------- /programs/makepkg-deps: -------------------------------------------------------------------------------- 1 | pack-deps -------------------------------------------------------------------------------- /programs/mce-log/pkg/depends: -------------------------------------------------------------------------------- 1 | build-essential 2 | psmisc 3 | -------------------------------------------------------------------------------- /programs/mce-log/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | bison 2 | flex 3 | -------------------------------------------------------------------------------- /programs/mce-test/pkg/depends: -------------------------------------------------------------------------------- 1 | mcelog 2 | psmisc 3 | screen 4 | -------------------------------------------------------------------------------- /programs/mce-test/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | bison 2 | flex 3 | -------------------------------------------------------------------------------- /programs/mcperf/pkg/depends: -------------------------------------------------------------------------------- 1 | memcached 2 | -------------------------------------------------------------------------------- /programs/mdadm-selftests/pkg/depends: -------------------------------------------------------------------------------- 1 | libc-bin 2 | libc6 3 | make 4 | policycoreutils 5 | strace 6 | -------------------------------------------------------------------------------- /programs/mdadm-selftests/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | libudev-dev 2 | -------------------------------------------------------------------------------- /programs/memcached-setup/pkg/depends: -------------------------------------------------------------------------------- 1 | libhugetlbfs 2 | memcached 3 | -------------------------------------------------------------------------------- /programs/memcached/pkg/depends: -------------------------------------------------------------------------------- 1 | libhugetlbfs 2 | memcached 3 | -------------------------------------------------------------------------------- /programs/memtier/pkg/depends: -------------------------------------------------------------------------------- 1 | autoconf 2 | bc 3 | libevent 4 | libevent-openssl 5 | libpcre3 6 | pkg-config 7 | zlib1g 8 | -------------------------------------------------------------------------------- /programs/memtier/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | libevent-dev 2 | libevent-openssl 3 | libpcre3-dev 4 | -------------------------------------------------------------------------------- /programs/mountstats/pkg/depends: -------------------------------------------------------------------------------- 1 | nfs-common 2 | python-minimal 3 | -------------------------------------------------------------------------------- /programs/mpstat/pkg: -------------------------------------------------------------------------------- 1 | ../sar/pkg -------------------------------------------------------------------------------- /programs/mutilate/pkg/depends: -------------------------------------------------------------------------------- 1 | libevent 2 | libhugetlbfs-bin 3 | libhugetlbfs0 4 | libzmq5 5 | memcached 6 | -------------------------------------------------------------------------------- /programs/mutilate/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | gengetopt 2 | libevent-dev 3 | libzmq3-dev 4 | scons 5 | -------------------------------------------------------------------------------- /programs/mytest/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # - mytest 3 | 4 | . $LKP_SRC/lib/reproduce-log.sh 5 | 6 | log_test $MY_TEST_CMDLINE 7 | -------------------------------------------------------------------------------- /programs/nepim/pkg/depends: -------------------------------------------------------------------------------- 1 | liboop4 2 | -------------------------------------------------------------------------------- /programs/nepim/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | liboop-dev 2 | -------------------------------------------------------------------------------- /programs/netperf/pkg/depends: -------------------------------------------------------------------------------- 1 | ethtool 2 | libsctp1 3 | lksctp-tools 4 | -------------------------------------------------------------------------------- /programs/netperf/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | libsctp-dev 2 | -------------------------------------------------------------------------------- /programs/nvdimm/pkg: -------------------------------------------------------------------------------- 1 | ../ndctl/pkg -------------------------------------------------------------------------------- /programs/ocfs2test/include: -------------------------------------------------------------------------------- 1 | need_kconfig: 2 | - OCFS2_FS: m 3 | 4 | rootfs: debian-10.4-x86_64-20200603.cgz 5 | -------------------------------------------------------------------------------- /programs/ocfs2test/pkg/addon/tests/test-aiostress: -------------------------------------------------------------------------------- 1 | aiostress 2 | -------------------------------------------------------------------------------- /programs/ocfs2test/pkg/addon/tests/test-backup_super: -------------------------------------------------------------------------------- 1 | backup_super 2 | -------------------------------------------------------------------------------- /programs/ocfs2test/pkg/addon/tests/test-buildkernel: -------------------------------------------------------------------------------- 1 | buildkernel 2 | -------------------------------------------------------------------------------- /programs/ocfs2test/pkg/addon/tests/test-create_and_open: -------------------------------------------------------------------------------- 1 | create_and_open 2 | -------------------------------------------------------------------------------- /programs/ocfs2test/pkg/addon/tests/test-directaio: -------------------------------------------------------------------------------- 1 | directaio 2 | -------------------------------------------------------------------------------- /programs/ocfs2test/pkg/addon/tests/test-filesizelimits: -------------------------------------------------------------------------------- 1 | filesizelimits 2 | -------------------------------------------------------------------------------- /programs/ocfs2test/pkg/addon/tests/test-fillverifyholes: -------------------------------------------------------------------------------- 1 | fillverifyholes 2 | -------------------------------------------------------------------------------- /programs/ocfs2test/pkg/addon/tests/test-inline: -------------------------------------------------------------------------------- 1 | inline 2 | -------------------------------------------------------------------------------- /programs/ocfs2test/pkg/addon/tests/test-mkfs: -------------------------------------------------------------------------------- 1 | mkfs 2 | -------------------------------------------------------------------------------- /programs/ocfs2test/pkg/addon/tests/test-mmap: -------------------------------------------------------------------------------- 1 | mmap 2 | -------------------------------------------------------------------------------- /programs/ocfs2test/pkg/addon/tests/test-mmaptruncate: -------------------------------------------------------------------------------- 1 | mmaptruncate 2 | -------------------------------------------------------------------------------- /programs/ocfs2test/pkg/addon/tests/test-reflink: -------------------------------------------------------------------------------- 1 | reflink 2 | -------------------------------------------------------------------------------- /programs/ocfs2test/pkg/addon/tests/test-renamewriterace: -------------------------------------------------------------------------------- 1 | renamewriterace 2 | -------------------------------------------------------------------------------- /programs/ocfs2test/pkg/addon/tests/test-reserve_space: -------------------------------------------------------------------------------- 1 | reserve_space 2 | -------------------------------------------------------------------------------- /programs/ocfs2test/pkg/addon/tests/test-sendfile: -------------------------------------------------------------------------------- 1 | sendfile 2 | -------------------------------------------------------------------------------- /programs/ocfs2test/pkg/addon/tests/test-splice: -------------------------------------------------------------------------------- 1 | splice 2 | -------------------------------------------------------------------------------- /programs/ocfs2test/pkg/addon/tests/test-tunefs: -------------------------------------------------------------------------------- 1 | tunefs 2 | -------------------------------------------------------------------------------- /programs/ocfs2test/pkg/addon/tests/test-xattr: -------------------------------------------------------------------------------- 1 | xattr 2 | -------------------------------------------------------------------------------- /programs/oltp/pkg/PKGBUILD: -------------------------------------------------------------------------------- 1 | ../../sysbench/pkg/PKGBUILD -------------------------------------------------------------------------------- /programs/oltp/pkg/depends: -------------------------------------------------------------------------------- 1 | libmariadb3 2 | mariadb-server 3 | -------------------------------------------------------------------------------- /programs/oltp/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | libmariadb-dev 2 | pkg-config 3 | -------------------------------------------------------------------------------- /programs/oltp/run: -------------------------------------------------------------------------------- 1 | ../default/run -------------------------------------------------------------------------------- /programs/openssl-speed/pkg/depends: -------------------------------------------------------------------------------- 1 | autoconf 2 | build-essential 3 | -------------------------------------------------------------------------------- /programs/packetdrill/include: -------------------------------------------------------------------------------- 1 | need_kconfig: 2 | - NETDEVICES: y 3 | - NET_CORE: y 4 | - INET: y 5 | - TUN: m 6 | -------------------------------------------------------------------------------- /programs/packetdrill/pkg/depends: -------------------------------------------------------------------------------- 1 | ethtool 2 | net-tools 3 | python 4 | -------------------------------------------------------------------------------- /programs/packetdrill/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | bison 2 | flex 3 | -------------------------------------------------------------------------------- /programs/pbzip2/parse: -------------------------------------------------------------------------------- 1 | ../default/parse -------------------------------------------------------------------------------- /programs/pbzip2/pkg/depends: -------------------------------------------------------------------------------- 1 | ruby 2 | -------------------------------------------------------------------------------- /programs/pbzip2/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | libbz2-dev 2 | -------------------------------------------------------------------------------- /programs/pbzip2/run: -------------------------------------------------------------------------------- 1 | ../pigz/run -------------------------------------------------------------------------------- /programs/perf-bench-futex/pkg: -------------------------------------------------------------------------------- 1 | ../perf/pkg -------------------------------------------------------------------------------- /programs/perf-bench-numa-mem/pkg: -------------------------------------------------------------------------------- 1 | ../perf/pkg -------------------------------------------------------------------------------- /programs/perf-bench-sched-pipe/pkg: -------------------------------------------------------------------------------- 1 | ../perf/pkg -------------------------------------------------------------------------------- /programs/perf-c2c/pkg: -------------------------------------------------------------------------------- 1 | ../perf/pkg -------------------------------------------------------------------------------- /programs/perf-event-tests/pkg/depends: -------------------------------------------------------------------------------- 1 | libgomp1 2 | -------------------------------------------------------------------------------- /programs/perf-fuzzer/pkg/depends: -------------------------------------------------------------------------------- 1 | libgomp1 2 | -------------------------------------------------------------------------------- /programs/perf-mem/pkg: -------------------------------------------------------------------------------- 1 | ../perf/pkg -------------------------------------------------------------------------------- /programs/perf-node/pkg: -------------------------------------------------------------------------------- 1 | ../perf/pkg -------------------------------------------------------------------------------- /programs/perf-probe/pkg: -------------------------------------------------------------------------------- 1 | ../perf/pkg -------------------------------------------------------------------------------- /programs/perf-profile/include: -------------------------------------------------------------------------------- 1 | suggest_kconfig: 2 | - PERF_EVENTS: y 3 | - BPF_SYSCALL: y 4 | - RT_GROUP_SCHED: n 5 | -------------------------------------------------------------------------------- /programs/perf-profile/pkg: -------------------------------------------------------------------------------- 1 | ../perf/pkg -------------------------------------------------------------------------------- /programs/perf-record-report/pkg: -------------------------------------------------------------------------------- 1 | ../perf/pkg -------------------------------------------------------------------------------- /programs/perf-report-srcline/pkg: -------------------------------------------------------------------------------- 1 | ../perf/pkg -------------------------------------------------------------------------------- /programs/perf-sanity-tests/pkg: -------------------------------------------------------------------------------- 1 | ../perf/pkg -------------------------------------------------------------------------------- /programs/perf-stat/include: -------------------------------------------------------------------------------- 1 | ../perf-profile/include -------------------------------------------------------------------------------- /programs/perf-stat/pkg: -------------------------------------------------------------------------------- 1 | ../perf/pkg -------------------------------------------------------------------------------- /programs/pft/pkg/depends: -------------------------------------------------------------------------------- 1 | libnuma1 2 | -------------------------------------------------------------------------------- /programs/pft/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | libnuma-dev 2 | -------------------------------------------------------------------------------- /programs/pgbench/pkg/depends: -------------------------------------------------------------------------------- 1 | postgresql 2 | postgresql-contrib 3 | sudo 4 | -------------------------------------------------------------------------------- /programs/pgbench/run: -------------------------------------------------------------------------------- 1 | ../default/run -------------------------------------------------------------------------------- /programs/phpbench/pkg/depends: -------------------------------------------------------------------------------- 1 | php-cli 2 | unzip 3 | -------------------------------------------------------------------------------- /programs/pigz/parse: -------------------------------------------------------------------------------- 1 | ../default/parse -------------------------------------------------------------------------------- /programs/pigz/pkg/depends: -------------------------------------------------------------------------------- 1 | pigz 2 | ruby 3 | -------------------------------------------------------------------------------- /programs/pixz/parse: -------------------------------------------------------------------------------- 1 | ../default/parse -------------------------------------------------------------------------------- /programs/pixz/pkg/depends: -------------------------------------------------------------------------------- 1 | libarchive 2 | ruby 3 | -------------------------------------------------------------------------------- /programs/pixz/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | asciidoc 2 | libarchive-dev 3 | liblzma-dev 4 | pkg-config 5 | -------------------------------------------------------------------------------- /programs/pixz/run: -------------------------------------------------------------------------------- 1 | ../pigz/run -------------------------------------------------------------------------------- /programs/plzip/parse: -------------------------------------------------------------------------------- 1 | ../default/parse -------------------------------------------------------------------------------- /programs/plzip/pkg/depends: -------------------------------------------------------------------------------- 1 | ruby 2 | -------------------------------------------------------------------------------- /programs/plzip/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | install-info 2 | -------------------------------------------------------------------------------- /programs/plzip/run: -------------------------------------------------------------------------------- 1 | ../pigz/run -------------------------------------------------------------------------------- /programs/pmbench/pkg/depends: -------------------------------------------------------------------------------- 1 | libxml2 2 | uuid 3 | -------------------------------------------------------------------------------- /programs/pmbench/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | libxml2-dev 2 | uuid-dev 3 | -------------------------------------------------------------------------------- /programs/pmdk/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | autoconf 2 | ndctl 3 | pkg-config 4 | -------------------------------------------------------------------------------- /programs/pmu-tools/parse: -------------------------------------------------------------------------------- 1 | ../perf-stat/parse -------------------------------------------------------------------------------- /programs/power-idle/parse: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | 3 | puts 'core: 100' 4 | -------------------------------------------------------------------------------- /programs/pxz/parse: -------------------------------------------------------------------------------- 1 | ../default/parse -------------------------------------------------------------------------------- /programs/pxz/pkg/depends: -------------------------------------------------------------------------------- 1 | ruby 2 | -------------------------------------------------------------------------------- /programs/pxz/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | liblzma-dev 2 | -------------------------------------------------------------------------------- /programs/pxz/run: -------------------------------------------------------------------------------- 1 | ../pigz/run -------------------------------------------------------------------------------- /programs/pybench/pkg/depends: -------------------------------------------------------------------------------- 1 | python 2 | -------------------------------------------------------------------------------- /programs/qat/meta.yaml: -------------------------------------------------------------------------------- 1 | short_description: > 2 | 3 | description: > 4 | 5 | homepage: 6 | 7 | parameters: 8 | 9 | -------------------------------------------------------------------------------- /programs/qat/pkg/depends: -------------------------------------------------------------------------------- 1 | pciutils 2 | -------------------------------------------------------------------------------- /programs/qperf/pkg/depends: -------------------------------------------------------------------------------- 1 | libibverbs1 2 | librdmacm1 3 | -------------------------------------------------------------------------------- /programs/qperf/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | libibverbs-dev 2 | librdmacm-dev 3 | -------------------------------------------------------------------------------- /programs/rdma-pyverbs/pkg/depends: -------------------------------------------------------------------------------- 1 | libnl-route-3-200 2 | libpython3 3 | -------------------------------------------------------------------------------- /programs/reaim/include: -------------------------------------------------------------------------------- 1 | # Avoid nfs latency for sync used in benchmark 2 | avoid_nfs: 1 3 | -------------------------------------------------------------------------------- /programs/reaim/pkg/depends: -------------------------------------------------------------------------------- 1 | libaio 2 | -------------------------------------------------------------------------------- /programs/reaim/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | libaio-dev 2 | -------------------------------------------------------------------------------- /programs/rocksdb/pkg/depends: -------------------------------------------------------------------------------- 1 | libbz2-1.0 2 | libgflags2.2 3 | liblz4-1 4 | libsnappy1v5 5 | zlib1g 6 | -------------------------------------------------------------------------------- /programs/rocksdb/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | libbz2-dev 2 | libgflags-dev 3 | liblz4-dev 4 | libsnappy-dev 5 | zlib1g-dev 6 | -------------------------------------------------------------------------------- /programs/rocksdb/run: -------------------------------------------------------------------------------- 1 | ../default/run -------------------------------------------------------------------------------- /programs/rt-app/pkg/depends: -------------------------------------------------------------------------------- 1 | libjson 2 | numactl 3 | -------------------------------------------------------------------------------- /programs/rt-app/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | libjson-c-dev 2 | -------------------------------------------------------------------------------- /programs/rt-tests/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | libnuma-dev 2 | -------------------------------------------------------------------------------- /programs/run-ipconfig.i386/pkg/depends: -------------------------------------------------------------------------------- 1 | initramfs-tools-core:i386 (i386) 2 | klibc-utils:i386 (i386) 3 | -------------------------------------------------------------------------------- /programs/run-ipconfig/pkg/depends: -------------------------------------------------------------------------------- 1 | initramfs-tools 2 | klibc-utils 3 | -------------------------------------------------------------------------------- /programs/siege/pkg/depends: -------------------------------------------------------------------------------- 1 | apache2 2 | siege 3 | -------------------------------------------------------------------------------- /programs/sleep/parse: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | 3 | stats_name = 'pass: 1' 4 | 5 | puts stats_name 6 | -------------------------------------------------------------------------------- /programs/stream/pkg/depends: -------------------------------------------------------------------------------- 1 | build-essential 2 | -------------------------------------------------------------------------------- /programs/swapin/pkg: -------------------------------------------------------------------------------- 1 | ../vm-scalability/pkg -------------------------------------------------------------------------------- /programs/sysbench-cpu/parse: -------------------------------------------------------------------------------- 1 | ../sysbench/parse -------------------------------------------------------------------------------- /programs/sysbench-cpu/pkg: -------------------------------------------------------------------------------- 1 | ../sysbench/pkg -------------------------------------------------------------------------------- /programs/sysbench-fileio/pkg: -------------------------------------------------------------------------------- 1 | ../sysbench/pkg/ -------------------------------------------------------------------------------- /programs/sysbench-memory/parse: -------------------------------------------------------------------------------- 1 | ../sysbench/parse -------------------------------------------------------------------------------- /programs/sysbench-memory/pkg: -------------------------------------------------------------------------------- 1 | ../sysbench/pkg/ -------------------------------------------------------------------------------- /programs/sysbench-mutex/parse: -------------------------------------------------------------------------------- 1 | ../sysbench/parse -------------------------------------------------------------------------------- /programs/sysbench-mutex/pkg: -------------------------------------------------------------------------------- 1 | ../sysbench/pkg -------------------------------------------------------------------------------- /programs/sysbench-threads/parse: -------------------------------------------------------------------------------- 1 | ../sysbench/parse -------------------------------------------------------------------------------- /programs/sysbench-threads/pkg: -------------------------------------------------------------------------------- 1 | ../sysbench/pkg/ -------------------------------------------------------------------------------- /programs/sysbench/pkg/depends: -------------------------------------------------------------------------------- 1 | libaio 2 | libmariadb3 3 | libpq5 4 | libssl 5 | -------------------------------------------------------------------------------- /programs/tbench/pkg/depends: -------------------------------------------------------------------------------- 1 | libsmbclient 2 | libtirpc 3 | libtirpc3 4 | rpcsvc-proto 5 | -------------------------------------------------------------------------------- /programs/tbench/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | libpopt-dev 2 | libsmbclient-dev 3 | libtirpc-dev 4 | samba-dev 5 | xsltproc 6 | zlib1g-dev 7 | -------------------------------------------------------------------------------- /programs/tcrypt/include: -------------------------------------------------------------------------------- 1 | need_kconfig: 2 | - CRYPTO_SM4_GENERIC 3 | - CRYPTO_SM4 4 | - CRYPTO_OFB 5 | - CRYPTO_TEST 6 | -------------------------------------------------------------------------------- /programs/test-bpf/include: -------------------------------------------------------------------------------- 1 | need_kconfig: 2 | - RUNTIME_TESTING_MENU: y 3 | - BPF: y 4 | - TEST_BPF: m 5 | - BPF_JIT: y 6 | -------------------------------------------------------------------------------- /programs/tinymembench/pkg/depends: -------------------------------------------------------------------------------- 1 | build-essential 2 | -------------------------------------------------------------------------------- /programs/toplev/pkg: -------------------------------------------------------------------------------- 1 | ../pmu-tools/pkg -------------------------------------------------------------------------------- /programs/trace-cmd/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | libtraceevent-dev 2 | libtracefs-dev 3 | pkg-config 4 | -------------------------------------------------------------------------------- /programs/trinity-static-i386/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | ../../trinity/pkg/depends-dev -------------------------------------------------------------------------------- /programs/trinity-static-x86_64/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | ../../trinity/pkg/depends-dev -------------------------------------------------------------------------------- /programs/turbostat/pkg/depends: -------------------------------------------------------------------------------- 1 | acpica-tools 2 | acpidump 3 | -------------------------------------------------------------------------------- /programs/turbostat/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | libcap-dev 2 | -------------------------------------------------------------------------------- /programs/unixbench/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | freeglut3-dev 2 | libgl1-mesa-dev 3 | libglut-dev 4 | libx11-dev 5 | -------------------------------------------------------------------------------- /programs/uperf/pkg/depends: -------------------------------------------------------------------------------- 1 | libsctp1 2 | -------------------------------------------------------------------------------- /programs/uperf/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | autoconf 2 | libsctp-dev 3 | -------------------------------------------------------------------------------- /programs/v4l2/pkg/depends: -------------------------------------------------------------------------------- 1 | bison 2 | build-essential 3 | flex 4 | git 5 | libelf-dev 6 | libssl-dev 7 | libv4l-dev 8 | -------------------------------------------------------------------------------- /programs/vm-scalability/include: -------------------------------------------------------------------------------- 1 | need_kconfig: BLK_DEV_LOOP 2 | -------------------------------------------------------------------------------- /programs/vm-scalability/pkg/depends: -------------------------------------------------------------------------------- 1 | lsof 2 | numactl 3 | xfsprogs 4 | -------------------------------------------------------------------------------- /programs/vm-scalability/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | libnuma-dev 2 | -------------------------------------------------------------------------------- /programs/vmstat/pkg/depends: -------------------------------------------------------------------------------- 1 | procps 2 | -------------------------------------------------------------------------------- /programs/will-it-scale/pkg/depends: -------------------------------------------------------------------------------- 1 | libhwloc5 2 | linux-perf 3 | python-minimal 4 | -------------------------------------------------------------------------------- /programs/will-it-scale/pkg/depends-dev: -------------------------------------------------------------------------------- 1 | libhwloc-dev 2 | zlib1g-dev 3 | -------------------------------------------------------------------------------- /programs/xfstests/pkg/addon/tests/ext4-standalone: -------------------------------------------------------------------------------- 1 | # execution time ~ 1h 2 | 009 3 | # execution time 2310s 4 | 044 5 | -------------------------------------------------------------------------------- /programs/ycsb/pkg/depends: -------------------------------------------------------------------------------- 1 | maven 2 | openjdk 3 | python 4 | -------------------------------------------------------------------------------- /repo/linux/96boards: -------------------------------------------------------------------------------- 1 | url: https://github.com/96boards/linux 2 | -------------------------------------------------------------------------------- /repo/linux/aaronlu: -------------------------------------------------------------------------------- 1 | url: https://github.com/aaronlu/linux.git 2 | owner: Aaron Lu 3 | -------------------------------------------------------------------------------- /repo/linux/abhinavk-msm: -------------------------------------------------------------------------------- 1 | url: https://gitlab.freedesktop.org/abhinavk/msm 2 | -------------------------------------------------------------------------------- /repo/linux/ablock84-btrfs: -------------------------------------------------------------------------------- 1 | url: https://github.com/ablock84/linux-btrfs.git 2 | -------------------------------------------------------------------------------- /repo/linux/acmel: -------------------------------------------------------------------------------- 1 | url: acmel https://github.com/acmel/linux 2 | -------------------------------------------------------------------------------- /repo/linux/adamschmalhofer: -------------------------------------------------------------------------------- 1 | url: https://github.com/adamschmalhofer/linux 2 | -------------------------------------------------------------------------------- /repo/linux/afaerber: -------------------------------------------------------------------------------- 1 | url: https://github.com/afaerber/linux.git 2 | owner: Andreas Färber 3 | -------------------------------------------------------------------------------- /repo/linux/agd5f: -------------------------------------------------------------------------------- 1 | url: https://gitlab.freedesktop.org/agd5f/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/agk-dm: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/agk/linux-dm.git 2 | -------------------------------------------------------------------------------- /repo/linux/ajitkhaparde1: -------------------------------------------------------------------------------- 1 | url: https://github.com/ajitkhaparde1/linux 2 | -------------------------------------------------------------------------------- /repo/linux/akpm-mm-git: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm-git.git 2 | -------------------------------------------------------------------------------- /repo/linux/akpm-mm-play: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm-play.git 2 | -------------------------------------------------------------------------------- /repo/linux/akpm-mmtemp: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/akpm/mmtemp.git 2 | -------------------------------------------------------------------------------- /repo/linux/alarsson-sparc: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/alarsson/linux-sparc.git 2 | -------------------------------------------------------------------------------- /repo/linux/allisonhenderson-xfs-work: -------------------------------------------------------------------------------- 1 | url: https://github.com/allisonhenderson/xfs_work.git 2 | -------------------------------------------------------------------------------- /repo/linux/alsa-kprivate: -------------------------------------------------------------------------------- 1 | url: http://git.alsa-project.org/http/alsa-kprivate.git 2 | -------------------------------------------------------------------------------- /repo/linux/amit-virtio: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/amit/virtio.git 2 | -------------------------------------------------------------------------------- /repo/linux/amlogic: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/amlogic/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/anderco: -------------------------------------------------------------------------------- 1 | url: https://github.com/anderco/linux 2 | -------------------------------------------------------------------------------- /repo/linux/andersson: -------------------------------------------------------------------------------- 1 | url: https://github.com/andersson/kernel 2 | -------------------------------------------------------------------------------- /repo/linux/andersson-remoteproc: -------------------------------------------------------------------------------- 1 | url: https://github.com/andersson/remoteproc 2 | -------------------------------------------------------------------------------- /repo/linux/andy-auxdisplay: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-auxdisplay.git 2 | -------------------------------------------------------------------------------- /repo/linux/andy-shev: -------------------------------------------------------------------------------- 1 | url: andy-shev https://github.com/andy-shev/linux 2 | -------------------------------------------------------------------------------- /repo/linux/anguy11-net-queue: -------------------------------------------------------------------------------- 1 | url: https://github.com/anguy11/net-queue.git 2 | -------------------------------------------------------------------------------- /repo/linux/anguy11-next-queue: -------------------------------------------------------------------------------- 1 | url: https://github.com/anguy11/next-queue.git 2 | -------------------------------------------------------------------------------- /repo/linux/anna-maria-devel: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/anna-maria/linux-devel.git 2 | -------------------------------------------------------------------------------- /repo/linux/anttip-media-tree: -------------------------------------------------------------------------------- 1 | url: git://linuxtv.org/anttip/media_tree.git 2 | -------------------------------------------------------------------------------- /repo/linux/ardb: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/ardb/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/arm-software-lisa: -------------------------------------------------------------------------------- 1 | url: https://github.com/ARM-software/lisa 2 | -------------------------------------------------------------------------------- /repo/linux/arm-uclinux: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/gerg/uclinux.git 2 | -------------------------------------------------------------------------------- /repo/linux/arsenerei: -------------------------------------------------------------------------------- 1 | url: https://github.com/arsenerei/linux 2 | -------------------------------------------------------------------------------- /repo/linux/asahilinux: -------------------------------------------------------------------------------- 1 | url: https://github.com/AsahiLinux/linux 2 | branch_denylist: bits/210-gpu 3 | -------------------------------------------------------------------------------- /repo/linux/atorgue-stm32: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git 2 | -------------------------------------------------------------------------------- /repo/linux/audit: -------------------------------------------------------------------------------- 1 | url: https://github.com/linux-audit/audit-kernel 2 | owner: Paul Moore 3 | -------------------------------------------------------------------------------- /repo/linux/audit-next: -------------------------------------------------------------------------------- 1 | url: git://toccata2.tricolour.ca/linux-2.6-rgb.git 2 | -------------------------------------------------------------------------------- /repo/linux/avpatel: -------------------------------------------------------------------------------- 1 | url: https://github.com/avpatel/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/baserock: -------------------------------------------------------------------------------- 1 | url: http://git.baserock.org/git/delta/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/bboozzoo: -------------------------------------------------------------------------------- 1 | url: https://github.com/bboozzoo/linux 2 | -------------------------------------------------------------------------------- /repo/linux/bcain: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/bcain/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/bcousson-omap-dt: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/bcousson/linux-omap-dt.git 2 | -------------------------------------------------------------------------------- /repo/linux/bergwolf: -------------------------------------------------------------------------------- 1 | url: https://github.com/bergwolf/linux 2 | -------------------------------------------------------------------------------- /repo/linux/bigeasy-futex: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/bigeasy/linux-futex.git 2 | -------------------------------------------------------------------------------- /repo/linux/bleung-chrome-platform: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/bleung/chrome-platform.git 2 | -------------------------------------------------------------------------------- /repo/linux/bod: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/bod/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/bradfa: -------------------------------------------------------------------------------- 1 | url: https://github.com/bradfa/linux 2 | owner: Andrew Bradford 3 | -------------------------------------------------------------------------------- /repo/linux/bristot: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/bristot/linux 2 | -------------------------------------------------------------------------------- /repo/linux/broadcom-arm64: -------------------------------------------------------------------------------- 1 | url: https://github.com/Broadcom/arm64-linux 2 | -------------------------------------------------------------------------------- /repo/linux/broonie-ci: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/broonie/ci.git 2 | -------------------------------------------------------------------------------- /repo/linux/broonie-misc: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/broonie/misc.git 2 | non_rebaseable_branch: .* 3 | -------------------------------------------------------------------------------- /repo/linux/bwh-stable-rt: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/bwh/linux-stable-rt.git 2 | -------------------------------------------------------------------------------- /repo/linux/cbrake: -------------------------------------------------------------------------------- 1 | url: https://github.com/cbrake/linux 2 | -------------------------------------------------------------------------------- /repo/linux/cdall: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/cdall/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/cel: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/cel/linux 2 | notify_build_success_branch: .* 3 | -------------------------------------------------------------------------------- /repo/linux/cel-cel-2.6: -------------------------------------------------------------------------------- 1 | url: git://linux-nfs.org/~cel/cel-2.6.git 2 | -------------------------------------------------------------------------------- /repo/linux/cem-xfsprogs-dev: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/cem/xfsprogs-dev.git 2 | -------------------------------------------------------------------------------- /repo/linux/chandanbabu: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/chandanbabu/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/chandanr: -------------------------------------------------------------------------------- 1 | url: https://github.com/chandanr/linux 2 | -------------------------------------------------------------------------------- /repo/linux/chenhuacai-loongson: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson.git 2 | -------------------------------------------------------------------------------- /repo/linux/chenxing: -------------------------------------------------------------------------------- 1 | url: https://github.com/linux-chenxing/linux.git 2 | branch_denylist: .*rebase.* 3 | -------------------------------------------------------------------------------- /repo/linux/chesterlintw-s32g: -------------------------------------------------------------------------------- 1 | url: https://github.com/chesterlintw/linux-s32g 2 | -------------------------------------------------------------------------------- /repo/linux/chleroy: -------------------------------------------------------------------------------- 1 | url: https://github.com/chleroy/linux 2 | -------------------------------------------------------------------------------- /repo/linux/chunkuang-hu: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/chunkuang.hu/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/chyyuu: -------------------------------------------------------------------------------- 1 | url: https://github.com/chyyuu/linux/ 2 | notify_build_success_branch: .* 3 | -------------------------------------------------------------------------------- /repo/linux/ckhu-mediatek: -------------------------------------------------------------------------------- 1 | url: https://github.com/ckhu-mediatek/linux.git-tags 2 | -------------------------------------------------------------------------------- /repo/linux/clangbuiltlinux: -------------------------------------------------------------------------------- 1 | url: https://github.com/ClangBuiltLinux/linux 2 | -------------------------------------------------------------------------------- /repo/linux/clk-meson: -------------------------------------------------------------------------------- 1 | url: https://github.com/BayLibre/clk-meson.git 2 | owner: Neil Armstrong 3 | -------------------------------------------------------------------------------- /repo/linux/codomania-kvm: -------------------------------------------------------------------------------- 1 | url: https://github.com/codomania/kvm 2 | owner: Brijesh Singh 3 | -------------------------------------------------------------------------------- /repo/linux/coresight: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/cscott: -------------------------------------------------------------------------------- 1 | url: https://github.com/cscott/linux 2 | -------------------------------------------------------------------------------- /repo/linux/csky-linux: -------------------------------------------------------------------------------- 1 | url: https://github.com/c-sky/csky-linux 2 | owner: Guo Ren 3 | -------------------------------------------------------------------------------- /repo/linux/curro: -------------------------------------------------------------------------------- 1 | url: https://github.com/curro/linux 2 | -------------------------------------------------------------------------------- /repo/linux/daeinki-drm-exynos: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org:/pub/scm/linux/kernel/git/daeinki/drm-exynos.git 2 | -------------------------------------------------------------------------------- /repo/linux/daniel-tux3: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/daniel/linux-tux3.git 2 | -------------------------------------------------------------------------------- /repo/linux/dato: -------------------------------------------------------------------------------- 1 | url: dato https://github.com/dato/linux 2 | -------------------------------------------------------------------------------- /repo/linux/daveh-devel: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/daveh/devel.git 2 | -------------------------------------------------------------------------------- /repo/linux/davej-cpufreq: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git 2 | -------------------------------------------------------------------------------- /repo/linux/davidhildenbrand: -------------------------------------------------------------------------------- 1 | url: https://github.com/davidhildenbrand/linux 2 | owner: David Hildenbrand 3 | -------------------------------------------------------------------------------- /repo/linux/dcui-tdx: -------------------------------------------------------------------------------- 1 | url: https://github.com/dcui/tdx 2 | -------------------------------------------------------------------------------- /repo/linux/deepa-hub-vfs: -------------------------------------------------------------------------------- 1 | url: https://github.com/deepa-hub/vfs 2 | owner: Deepa Dinamani 3 | -------------------------------------------------------------------------------- /repo/linux/deller-fbdev: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev.git 2 | -------------------------------------------------------------------------------- /repo/linux/dennis-misc: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/dennis/misc.git 2 | -------------------------------------------------------------------------------- /repo/linux/devicetree-rebasing: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/devicetree/devicetree-rebasing.git 2 | -------------------------------------------------------------------------------- /repo/linux/dfaggioli: -------------------------------------------------------------------------------- 1 | url: https://github.com/dfaggioli/linux 2 | -------------------------------------------------------------------------------- /repo/linux/dhowells-frv: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/dhowells/linux-frv.git 2 | -------------------------------------------------------------------------------- /repo/linux/dhowells-mn10300: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/dhowells/linux-mn10300.git 2 | -------------------------------------------------------------------------------- /repo/linux/dhowells-modsign: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/dhowells/linux-modsign.git 2 | -------------------------------------------------------------------------------- /repo/linux/dhowells-security-keys: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/dhowells/security-keys.git 2 | -------------------------------------------------------------------------------- /repo/linux/digger: -------------------------------------------------------------------------------- 1 | url: https://github.com/kernel-digger/linux 2 | owner: jiangtao 3 | -------------------------------------------------------------------------------- /repo/linux/digitalocean-coresched: -------------------------------------------------------------------------------- 1 | url: https://github.com/digitalocean/linux-coresched 2 | -------------------------------------------------------------------------------- /repo/linux/djakov-icc: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git 2 | -------------------------------------------------------------------------------- /repo/linux/dlech: -------------------------------------------------------------------------------- 1 | url: https://github.com/dlech/linux 2 | owner: David Lechner 3 | -------------------------------------------------------------------------------- /repo/linux/dlemoal-libata: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git 2 | -------------------------------------------------------------------------------- /repo/linux/dlemoal-zonefs: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git 2 | -------------------------------------------------------------------------------- /repo/linux/dlm: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/dlm/linux-dlm.git 2 | -------------------------------------------------------------------------------- /repo/linux/drm-drm-intel: -------------------------------------------------------------------------------- 1 | url: git://anongit.freedesktop.org/drm/drm-intel 2 | owner: Daniel Vetter 3 | -------------------------------------------------------------------------------- /repo/linux/drm-fsl-dcu: -------------------------------------------------------------------------------- 1 | url: http://git.agner.ch/git/linux-drm-fsl-dcu 2 | -------------------------------------------------------------------------------- /repo/linux/drm-msm: -------------------------------------------------------------------------------- 1 | url: https://gitlab.freedesktop.org/drm/msm.git 2 | owner: Sean Paul 3 | -------------------------------------------------------------------------------- /repo/linux/drm-tegra: -------------------------------------------------------------------------------- 1 | url: https://gitlab.freedesktop.org/drm/tegra 2 | -------------------------------------------------------------------------------- /repo/linux/dvyukov: -------------------------------------------------------------------------------- 1 | url: https://github.com/dvyukov/linux 2 | -------------------------------------------------------------------------------- /repo/linux/dwmw2: -------------------------------------------------------------------------------- 1 | url: git://git.infradead.org/users/dwmw2/linux 2 | -------------------------------------------------------------------------------- /repo/linux/ebiederm-sysctl: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/ebiederm/sysctl.git 2 | -------------------------------------------------------------------------------- /repo/linux/elder: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/elder/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/evasdk: -------------------------------------------------------------------------------- 1 | url: https://github.com/EvaSDK/linux 2 | -------------------------------------------------------------------------------- /repo/linux/evdenis-floppy: -------------------------------------------------------------------------------- 1 | url: https://github.com/evdenis/linux-floppy.git 2 | -------------------------------------------------------------------------------- /repo/linux/evelikov: -------------------------------------------------------------------------------- 1 | url: https://github.com/evelikov/linux 2 | -------------------------------------------------------------------------------- /repo/linux/ewheelerinc: -------------------------------------------------------------------------------- 1 | url: https://bitbucket.org/ewheelerinc/linux 2 | -------------------------------------------------------------------------------- /repo/linux/experimental: -------------------------------------------------------------------------------- 1 | url: git://linuxtv.org/mchehab/experimental 2 | -------------------------------------------------------------------------------- /repo/linux/fpga: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/fpga/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/fracktal: -------------------------------------------------------------------------------- 1 | url: https://github.com/fracktal/linux 2 | -------------------------------------------------------------------------------- /repo/linux/frowand: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/frowand/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/fweisbec-tracing: -------------------------------------------------------------------------------- 1 | url: https://github.com/fweisbec/tracing 2 | -------------------------------------------------------------------------------- /repo/linux/fwestphal-net: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/fwestphal/net.git 2 | -------------------------------------------------------------------------------- /repo/linux/fwestphal-nf: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/fwestphal/nf.git 2 | -------------------------------------------------------------------------------- /repo/linux/gabbayo: -------------------------------------------------------------------------------- 1 | url: git://people.freedesktop.org/~gabbayo/linux 2 | mail_cc: dri-devel@lists.freedesktop.org 3 | -------------------------------------------------------------------------------- /repo/linux/galak-powerpc: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/galak/powerpc.git 2 | -------------------------------------------------------------------------------- /repo/linux/gclement: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/gclement/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/gclement-mvebu: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git 2 | -------------------------------------------------------------------------------- /repo/linux/gdamjan: -------------------------------------------------------------------------------- 1 | url: https://github.com/gdamjan/linux 2 | -------------------------------------------------------------------------------- /repo/linux/geoff-ntb-work: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/geoff/ntb-work.git 2 | -------------------------------------------------------------------------------- /repo/linux/geoffreybennett-scarlett-gen2: -------------------------------------------------------------------------------- 1 | url: https://github.com/geoffreybennett/scarlett-gen2.git 2 | -------------------------------------------------------------------------------- /repo/linux/georgi-djakov: -------------------------------------------------------------------------------- 1 | url: https://git.linaro.org/people/georgi.djakov/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/gerg-ks8695: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/gerg/ks8695.git 2 | -------------------------------------------------------------------------------- /repo/linux/glaubitz-sh: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/glaubitz/sh-linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/gliakhovetski-v4l-dvb: -------------------------------------------------------------------------------- 1 | url: git://linuxtv.org/gliakhovetski/v4l-dvb.git 2 | -------------------------------------------------------------------------------- /repo/linux/goldwynr: -------------------------------------------------------------------------------- 1 | url: https://github.com/goldwynr/linux 2 | -------------------------------------------------------------------------------- /repo/linux/google-ktsan: -------------------------------------------------------------------------------- 1 | url: https://github.com/google/ktsan.git 2 | -------------------------------------------------------------------------------- /repo/linux/gregkh-test: -------------------------------------------------------------------------------- 1 | url: https://github.com/gregkh/linux-test 2 | -------------------------------------------------------------------------------- /repo/linux/gxt: -------------------------------------------------------------------------------- 1 | url: https://github.com/gxt/linux 2 | integration_testing_branches: unicore32 3 | -------------------------------------------------------------------------------- /repo/linux/habanaai: -------------------------------------------------------------------------------- 1 | url: https://github.com/HabanaAI/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/habanaai-drivers-accel-habanalabs: -------------------------------------------------------------------------------- 1 | url: https://github.com/HabanaAI/drivers.accel.habanalabs.kernel 2 | -------------------------------------------------------------------------------- /repo/linux/hansg: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/hansg/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/hare-nvme: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/hare/nvme.git 2 | -------------------------------------------------------------------------------- /repo/linux/hare-scsi-devel: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/hare/scsi-devel.git 2 | -------------------------------------------------------------------------------- /repo/linux/harihend1973: -------------------------------------------------------------------------------- 1 | url: https://github.com/HariHend1973/linux 2 | -------------------------------------------------------------------------------- /repo/linux/hcodina: -------------------------------------------------------------------------------- 1 | url: https://github.com//hcodina/linux 2 | -------------------------------------------------------------------------------- /repo/linux/horms-renesas-bsp: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas-bsp.git 2 | -------------------------------------------------------------------------------- /repo/linux/hpa-espfix64: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/hpa/espfix64.git 2 | -------------------------------------------------------------------------------- /repo/linux/hverkuil-media-tree: -------------------------------------------------------------------------------- 1 | url: git://linuxtv.org/hverkuil/media_tree.git 2 | -------------------------------------------------------------------------------- /repo/linux/hying-caritas: -------------------------------------------------------------------------------- 1 | url: https://github.com/hying-caritas/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/hzhuang1: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/hzhuang1/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/ido: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/ido/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/idryomov-btrfs-unstable: -------------------------------------------------------------------------------- 1 | url: https://github.com/idryomov/btrfs-unstable 2 | -------------------------------------------------------------------------------- /repo/linux/ihalip: -------------------------------------------------------------------------------- 1 | url: https://github.com/ihalip/linux 2 | -------------------------------------------------------------------------------- /repo/linux/ij: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/ij/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/imbrenda: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/imbrenda/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/iommu: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/iommu/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/iwamatsu-visconti: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git 2 | -------------------------------------------------------------------------------- /repo/linux/iweiny: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/iweiny/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/iwi: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/iwi/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/jackchuang: -------------------------------------------------------------------------------- 1 | url: https://github.com/JackChuang/linux.git 2 | owner: Ho-Ren (Jack) Chuang 3 | -------------------------------------------------------------------------------- /repo/linux/jamesjjliao: -------------------------------------------------------------------------------- 1 | url: https://github.com/jamesjjliao/linux 2 | -------------------------------------------------------------------------------- /repo/linux/jarkko-riscv: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-riscv.git 2 | -------------------------------------------------------------------------------- /repo/linux/jarkko-riscv-keystone: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-riscv-keystone.git 2 | -------------------------------------------------------------------------------- /repo/linux/jarkkojs-tpmdd: -------------------------------------------------------------------------------- 1 | url: https://github.com/jarkkojs/linux-tpmdd 2 | -------------------------------------------------------------------------------- /repo/linux/jassibrar-mailbox: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/jassibrar/mailbox.git 2 | -------------------------------------------------------------------------------- /repo/linux/jbarnes-drm-intel: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/drm-intel.git 2 | -------------------------------------------------------------------------------- /repo/linux/jbarnes-pci: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci.git 2 | -------------------------------------------------------------------------------- /repo/linux/jberg-um: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/jberg/um.git 2 | -------------------------------------------------------------------------------- /repo/linux/jeffm-btrfs: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/jeffm/linux-btrfs.git 2 | -------------------------------------------------------------------------------- /repo/linux/jeffm-reiserfs: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/jeffm/linux-reiserfs.git 2 | -------------------------------------------------------------------------------- /repo/linux/jekhor-yogabook: -------------------------------------------------------------------------------- 1 | url: https://github.com/jekhor/yogabook-linux-kernel 2 | -------------------------------------------------------------------------------- /repo/linux/jesper-artpec: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/jesper/artpec.git 2 | -------------------------------------------------------------------------------- /repo/linux/jforbes: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/jforbes/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/jgarzik: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/jgg-iommufd: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/jgg/iommufd.git 2 | -------------------------------------------------------------------------------- /repo/linux/jgross: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/jgross/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/jgunthorpe: -------------------------------------------------------------------------------- 1 | url: https://github.com/jgunthorpe/linux 2 | -------------------------------------------------------------------------------- /repo/linux/jh80chung-dw-mmc: -------------------------------------------------------------------------------- 1 | url: https://github.com/jh80chung/dw-mmc.git 2 | -------------------------------------------------------------------------------- /repo/linux/jhogan: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/jhogan/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/jhogan-tz1090: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/jhogan/tz1090.git 2 | -------------------------------------------------------------------------------- /repo/linux/jic23-cxl-staging: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/jic23/cxl-staging.git 2 | -------------------------------------------------------------------------------- /repo/linux/jingoo: -------------------------------------------------------------------------------- 1 | url: https://github.com/jingoo/linux 2 | -------------------------------------------------------------------------------- /repo/linux/jkastner: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/jkastner/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/jkirsher-net-queue: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git 2 | -------------------------------------------------------------------------------- /repo/linux/jkirsher-next-queue: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git 2 | -------------------------------------------------------------------------------- /repo/linux/jlawall: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/jlbec-configfs: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git 2 | -------------------------------------------------------------------------------- /repo/linux/jmbnyc: -------------------------------------------------------------------------------- 1 | url: https://github.com/jmbnyc/linux 2 | -------------------------------------------------------------------------------- /repo/linux/jmondi: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/jmondi/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/joel-bmc: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/joel/bmc.git 2 | -------------------------------------------------------------------------------- /repo/linux/joel-fsi: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git 2 | -------------------------------------------------------------------------------- /repo/linux/joel-microwatt: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/joel/microwatt.git 2 | -------------------------------------------------------------------------------- /repo/linux/joern-bcon2: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/joern/bcon2.git 2 | -------------------------------------------------------------------------------- /repo/linux/johan: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/johan/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/jolsa-unwind: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/jolsa/linux-unwind.git 2 | -------------------------------------------------------------------------------- /repo/linux/joonsookim: -------------------------------------------------------------------------------- 1 | url: https://github.com/JoonsooKim/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/joshua-henderson: -------------------------------------------------------------------------------- 1 | url: https://github.com/joshua-henderson/linux 2 | -------------------------------------------------------------------------------- /repo/linux/jsung-dvb-vb2: -------------------------------------------------------------------------------- 1 | url: git://linuxtv.org/jsung/dvb-vb2.git 2 | -------------------------------------------------------------------------------- /repo/linux/jszhang-berlin: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/jszhang/linux-berlin.git 2 | -------------------------------------------------------------------------------- /repo/linux/jth: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/jth/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/jyang: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/jyang/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/kabel: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/kabel/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/kasatkin-tizen: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/kasatkin/linux-tizen.git 2 | -------------------------------------------------------------------------------- /repo/linux/kbingham: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/kbingham/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/kbingham-rcar: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/kbingham/rcar.git 2 | -------------------------------------------------------------------------------- /repo/linux/kbingham-scripts-gdb: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/kbingham/scripts-gdb.git 2 | -------------------------------------------------------------------------------- /repo/linux/kdave-btrfs-devel: -------------------------------------------------------------------------------- 1 | url: https://github.com/kdave/btrfs-devel.git 2 | 3 | -------------------------------------------------------------------------------- /repo/linux/kdebski-media-tree-2: -------------------------------------------------------------------------------- 1 | url: git://linuxtv.org/kdebski/media_tree_2.git 2 | -------------------------------------------------------------------------------- /repo/linux/khilman-omap: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/khilman/linux-omap.git 2 | -------------------------------------------------------------------------------- /repo/linux/kleist: -------------------------------------------------------------------------------- 1 | url: https://github.com/Kleist/linux 2 | -------------------------------------------------------------------------------- /repo/linux/kliang2-perf: -------------------------------------------------------------------------------- 1 | url: https://github.com/kliang2/perf.git 2 | owner: Kan Liang 3 | -------------------------------------------------------------------------------- /repo/linux/knsathya: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/knsathya/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/konrad-mm: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/konrad/mm.git 2 | -------------------------------------------------------------------------------- /repo/linux/kpsingh: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/kpsingh/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/kristleifur: -------------------------------------------------------------------------------- 1 | url: https://github.com/kristleifur/linux 2 | -------------------------------------------------------------------------------- /repo/linux/kvm-riscv: -------------------------------------------------------------------------------- 1 | url: https://github.com/kvm-riscv/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/kvm-x86: -------------------------------------------------------------------------------- 1 | url: https://github.com/kvm-x86/linux 2 | -------------------------------------------------------------------------------- /repo/linux/kvms390-kvm-s390-vfio: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/kvms390/kvm-s390-vfio.git 2 | -------------------------------------------------------------------------------- /repo/linux/kwilczynski: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/kwilczynski/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/kwilczynski-pci: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/kwilczynski/pci.git 2 | -------------------------------------------------------------------------------- /repo/linux/landlock-lsm: -------------------------------------------------------------------------------- 1 | url: https://github.com/landlock-lsm/linux 2 | -------------------------------------------------------------------------------- /repo/linux/ldewangan-upstream: -------------------------------------------------------------------------------- 1 | url: https://github.com/ldewangan/linux-upstream 2 | -------------------------------------------------------------------------------- /repo/linux/legion: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/legion/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/lenb: -------------------------------------------------------------------------------- 1 | url: https://github.com/lenb/linux 2 | owner: Len Brown 3 | -------------------------------------------------------------------------------- /repo/linux/leo: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/leo/linux.git 2 | owner: Li Yang 3 | -------------------------------------------------------------------------------- /repo/linux/lftan-nios2: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git 2 | git_am_branch: for-linus 3 | -------------------------------------------------------------------------------- /repo/linux/libata: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/libata/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/linkinjeon-exfat: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/linkinjeon/exfat.git 2 | -------------------------------------------------------------------------------- /repo/linux/linux-ubuntu: -------------------------------------------------------------------------------- 1 | url: git://kernel.ubuntu.com/ubuntu/linux.git 2 | owner: Kamal Mostafa 3 | -------------------------------------------------------------------------------- /repo/linux/linuxppc: -------------------------------------------------------------------------------- 1 | url: https://github.com/linuxppc/linux 2 | -------------------------------------------------------------------------------- /repo/linux/linuxsecuritymodule: -------------------------------------------------------------------------------- 1 | url: https://github.com/LinuxSecurityModule/kernel 2 | -------------------------------------------------------------------------------- /repo/linux/linuxwmt-code: -------------------------------------------------------------------------------- 1 | url: git://git.code.sf.net/p/linuxwmt/code 2 | -------------------------------------------------------------------------------- /repo/linux/litex-hub: -------------------------------------------------------------------------------- 1 | url: https://github.com/litex-hub/linux 2 | -------------------------------------------------------------------------------- /repo/linux/liu-song-6: -------------------------------------------------------------------------------- 1 | url: https://github.com/liu-song-6/linux.git 2 | owner: songliubraving@fb.com 3 | -------------------------------------------------------------------------------- /repo/linux/liubogithub-btrfs-work: -------------------------------------------------------------------------------- 1 | url: https://github.com/liubogithub/btrfs-work 2 | owner: Liu Bo 3 | -------------------------------------------------------------------------------- /repo/linux/lkundrak-mmp: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git 2 | -------------------------------------------------------------------------------- /repo/linux/lp0: -------------------------------------------------------------------------------- 1 | url: https://github.com/lp0/linux 2 | owner: Simon Arlott 3 | -------------------------------------------------------------------------------- /repo/linux/lrg-asoc: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/lrg/asoc.git 2 | -------------------------------------------------------------------------------- /repo/linux/ls-zhu: -------------------------------------------------------------------------------- 1 | url: https://github.com/ls-zhu/linux 2 | notify_build_success_branch: .* 3 | belongs_to: tdx 4 | -------------------------------------------------------------------------------- /repo/linux/luisbg-befs: -------------------------------------------------------------------------------- 1 | url: https://github.com/luisbg/linux-befs.git 2 | integration_testing_branches: for-next 3 | -------------------------------------------------------------------------------- /repo/linux/lumag-msm: -------------------------------------------------------------------------------- 1 | url: https://gitlab.freedesktop.org/lumag/msm 2 | -------------------------------------------------------------------------------- /repo/linux/lyrazhang: -------------------------------------------------------------------------------- 1 | url: https://github.com/lyrazhang/linux.git 2 | owner: zhang.lyra@gmail.com 3 | -------------------------------------------------------------------------------- /repo/linux/madvenka786: -------------------------------------------------------------------------------- 1 | url: https://github.com/madvenka786/linux 2 | -------------------------------------------------------------------------------- /repo/linux/martinbrandenburg: -------------------------------------------------------------------------------- 1 | url: https://github.com/martinbrandenburg/linux 2 | -------------------------------------------------------------------------------- /repo/linux/martinetd: -------------------------------------------------------------------------------- 1 | url: https://github.com/martinetd/linux.git 2 | owner: asmadeus@codewreck.org 3 | -------------------------------------------------------------------------------- /repo/linux/martyn: -------------------------------------------------------------------------------- 1 | url: https://gitlab.collabora.com/martyn/linux 2 | owner: Martyn Welch 3 | -------------------------------------------------------------------------------- /repo/linux/masahiroy-uniphier: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git 2 | -------------------------------------------------------------------------------- /repo/linux/masneyb: -------------------------------------------------------------------------------- 1 | url: https://github.com/masneyb/linux 2 | -------------------------------------------------------------------------------- /repo/linux/matthiasgoergens: -------------------------------------------------------------------------------- 1 | url: https://github.com/matthiasgoergens/linux 2 | -------------------------------------------------------------------------------- /repo/linux/mbenes: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/mbenes/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/mbrevoort: -------------------------------------------------------------------------------- 1 | url: https://github.com/mbrevoort/linux 2 | -------------------------------------------------------------------------------- /repo/linux/mbroz: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/mbroz/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/mcgrof-test: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux-test.git 2 | -------------------------------------------------------------------------------- /repo/linux/mchehab-experimental: -------------------------------------------------------------------------------- 1 | url: https://git.linuxtv.org/mchehab/experimental.git 2 | -------------------------------------------------------------------------------- /repo/linux/mchinth: -------------------------------------------------------------------------------- 1 | url: https://github.com/mchinth/linux 2 | 3 | -------------------------------------------------------------------------------- /repo/linux/mdf: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/mdf-fpga: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git 2 | -------------------------------------------------------------------------------- /repo/linux/mdraid: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/mdraid/linux 2 | -------------------------------------------------------------------------------- /repo/linux/mediatek: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/mediatek/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/mellanox: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/mellanox/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/mgr: -------------------------------------------------------------------------------- 1 | url: https://git.pengutronix.de/git/mgr/linux 2 | -------------------------------------------------------------------------------- /repo/linux/mhiramat: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/mhiramat/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/mic: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/mic/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/mic92: -------------------------------------------------------------------------------- 1 | url: https://github.com/Mic92/linux 2 | -------------------------------------------------------------------------------- /repo/linux/micah-morton: -------------------------------------------------------------------------------- 1 | url: https://github.com/micah-morton/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/milokim: -------------------------------------------------------------------------------- 1 | url: https://github.com/milokim/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/minggr: -------------------------------------------------------------------------------- 1 | url: minggr https://github.com/minggr/linux 2 | -------------------------------------------------------------------------------- /repo/linux/mkubecek-ethtool: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/mkubecek/ethtool.git 2 | -------------------------------------------------------------------------------- /repo/linux/modules: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/modules/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/monstr: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/monstr/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/monstr-microblaze: -------------------------------------------------------------------------------- 1 | url: git://git.monstr.eu/linux-2.6-microblaze 2 | -------------------------------------------------------------------------------- /repo/linux/morimoto: -------------------------------------------------------------------------------- 1 | url: https://github.com/morimoto/linux 2 | owner: Kuninori Morimoto 3 | -------------------------------------------------------------------------------- /repo/linux/morse: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/morse/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/mpe-fullhistory: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/mpe/linux-fullhistory.git 2 | -------------------------------------------------------------------------------- /repo/linux/mraynal: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/mraynal/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/mrchapp: -------------------------------------------------------------------------------- 1 | url: mrchapp https://github.com/mrchapp/linux 2 | -------------------------------------------------------------------------------- /repo/linux/mszyprow: -------------------------------------------------------------------------------- 1 | url: https://github.com/mszyprow/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/mszyprowski: -------------------------------------------------------------------------------- 1 | url: git://git.kernel.org/pub/scm/linux/kernel/git/mszyprowski/linux 2 | -------------------------------------------------------------------------------- /repo/linux/mtd: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/mtitinger-pm: -------------------------------------------------------------------------------- 1 | url: https://github.com/mtitinger/linux-pm.git 2 | -------------------------------------------------------------------------------- /repo/linux/mzx-extcon: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/mzx/extcon.git 2 | -------------------------------------------------------------------------------- /repo/linux/namhyung-perf: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/namhyung/linux-perf.git 2 | -------------------------------------------------------------------------------- /repo/linux/nathan: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/nathan/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/nbd168-wireless: -------------------------------------------------------------------------------- 1 | url: https://github.com/nbd168/wireless 2 | owner: Felix Fietkau 3 | -------------------------------------------------------------------------------- /repo/linux/nbdd0121: -------------------------------------------------------------------------------- 1 | url: https://github.com/nbdd0121/linux 2 | -------------------------------------------------------------------------------- /repo/linux/neeraju: -------------------------------------------------------------------------------- 1 | url: https://github.com/neeraju/linux 2 | -------------------------------------------------------------------------------- /repo/linux/netdev-net: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git 2 | -------------------------------------------------------------------------------- /repo/linux/netdev-net-next: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git 2 | -------------------------------------------------------------------------------- /repo/linux/netfilter-nf-next: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git 2 | -------------------------------------------------------------------------------- /repo/linux/niks: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/niks/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/nmenon: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/nmenon/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/nolibc: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/nolibc/linux-nolibc.git 2 | -------------------------------------------------------------------------------- /repo/linux/notro: -------------------------------------------------------------------------------- 1 | url: https://github.com/notro/linux 2 | -------------------------------------------------------------------------------- /repo/linux/nsaenz-rpi: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git 2 | -------------------------------------------------------------------------------- /repo/linux/ogabbay: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/ogabbay-accel: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/accel.git 2 | -------------------------------------------------------------------------------- /repo/linux/ojeda: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/ojeda/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/openchannelssd: -------------------------------------------------------------------------------- 1 | url: https://github.com/OpenChannelSSD/linux.git 2 | integration_testing_branches: for-next 3 | -------------------------------------------------------------------------------- /repo/linux/openipmi-ipmi: -------------------------------------------------------------------------------- 1 | url: git://git.code.sf.net/p/openipmi/linux-ipmi 2 | owner: Corey Minyard 3 | -------------------------------------------------------------------------------- /repo/linux/oracle-dtrace: -------------------------------------------------------------------------------- 1 | url: https://github.com/oracle/dtrace-linux-kernel 2 | -------------------------------------------------------------------------------- /repo/linux/ostr: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/ostr/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/oupton: -------------------------------------------------------------------------------- 1 | url: https://github.com/oupton/linux 2 | -------------------------------------------------------------------------------- /repo/linux/overlayfs-vfs: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/overlayfs/vfs 2 | -------------------------------------------------------------------------------- /repo/linux/oxnas: -------------------------------------------------------------------------------- 1 | url: https://github.com/OXNAS/linux 2 | owner: Neil Armstrong 3 | -------------------------------------------------------------------------------- /repo/linux/pabeni-net: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/pabeni/net.git 2 | -------------------------------------------------------------------------------- /repo/linux/pabeni-net-next: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/pabeni/net-next.git 2 | -------------------------------------------------------------------------------- /repo/linux/pablo-gtp: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git 2 | -------------------------------------------------------------------------------- /repo/linux/padovan: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/padovan/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/pali: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/pali/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/palmer-dm-user: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/palmer/dm-user.git 2 | -------------------------------------------------------------------------------- /repo/linux/pateldipen1984: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/pateldipen1984/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/paulg-4.8-rt-patches: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/paulg/4.8-rt-patches.git 2 | -------------------------------------------------------------------------------- /repo/linux/paulmckrcu: -------------------------------------------------------------------------------- 1 | url: https://github.com/paulmckrcu/linux 2 | -------------------------------------------------------------------------------- /repo/linux/pchotard: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/pchotard/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/pchotard-sti: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/pchotard/sti.git 2 | -------------------------------------------------------------------------------- /repo/linux/pcmoore-lsm: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/lsm.git 2 | -------------------------------------------------------------------------------- /repo/linux/pdp7: -------------------------------------------------------------------------------- 1 | url: https://github.com/pdp7/linux 2 | -------------------------------------------------------------------------------- /repo/linux/peda-linux-mux: -------------------------------------------------------------------------------- 1 | url: https://gitlab.com/peda-linux/mux.git 2 | -------------------------------------------------------------------------------- /repo/linux/peda-r-i2c-mux: -------------------------------------------------------------------------------- 1 | url: https://github.com/peda-r/i2c-mux 2 | -------------------------------------------------------------------------------- /repo/linux/penberg: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/penberg/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/perf-tools: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/perf/perf-tools.git 2 | -------------------------------------------------------------------------------- /repo/linux/perf-tools-next: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/perf/perf-tools-next.git 2 | -------------------------------------------------------------------------------- /repo/linux/pinchartl: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/pinchartl/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/pinchartl-media: -------------------------------------------------------------------------------- 1 | url: git://linuxtv.org/pinchartl/media.git 2 | -------------------------------------------------------------------------------- /repo/linux/pjt-linsched: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/pjt/linsched.git 2 | -------------------------------------------------------------------------------- /repo/linux/pjw-tegra-dev: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/pjw/tegra-dev.git 2 | -------------------------------------------------------------------------------- /repo/linux/pkshih-rtw: -------------------------------------------------------------------------------- 1 | url: https://github.com/pkshih/rtw 2 | -------------------------------------------------------------------------------- /repo/linux/ppwaskie-net: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/ppwaskie/net.git 2 | -------------------------------------------------------------------------------- /repo/linux/ppwaskie-net-next: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/ppwaskie/net-next.git 2 | -------------------------------------------------------------------------------- /repo/linux/ppwaskie-staging: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/ppwaskie/staging.git 2 | category: staging 3 | -------------------------------------------------------------------------------- /repo/linux/prasad-joshi-logfs-upstream: -------------------------------------------------------------------------------- 1 | url: https://github.com/prasad-joshi/logfs_upstream.git 2 | git_am_branch: master 3 | -------------------------------------------------------------------------------- /repo/linux/preeti-u-murthy: -------------------------------------------------------------------------------- 1 | url: https://github.com/preeti-u-murthy/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/printk: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/puckchen-hikey-mainline: -------------------------------------------------------------------------------- 1 | url: https://github.com/puckchen/hikey-mainline 2 | -------------------------------------------------------------------------------- /repo/linux/qais-yousef: -------------------------------------------------------------------------------- 1 | url: https://github.com/qais-yousef/linux 2 | -------------------------------------------------------------------------------- /repo/linux/qcom: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux 2 | -------------------------------------------------------------------------------- /repo/linux/rafael-renesas: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/rafael/renesas.git 2 | -------------------------------------------------------------------------------- /repo/linux/raven-kernfs: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/raven/kernfs.git 2 | -------------------------------------------------------------------------------- /repo/linux/rcu: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/rcu/linux.git 2 | notify_build_success_branch: .* 3 | -------------------------------------------------------------------------------- /repo/linux/rdma-rdma: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git 2 | -------------------------------------------------------------------------------- /repo/linux/remoteproc: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/rhvgoyal: -------------------------------------------------------------------------------- 1 | url: https://github.com/rhvgoyal/linux 2 | -------------------------------------------------------------------------------- /repo/linux/ribalda: -------------------------------------------------------------------------------- 1 | url: https://github.com/ribalda/linux 2 | -------------------------------------------------------------------------------- /repo/linux/riscv: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/rmk: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/rmk/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/rmk-arm: -------------------------------------------------------------------------------- 1 | url: git://git.armlinux.org.uk/~rmk/linux-arm 2 | -------------------------------------------------------------------------------- /repo/linux/robertosassu: -------------------------------------------------------------------------------- 1 | url: https://github.com/robertosassu/linux 2 | -------------------------------------------------------------------------------- /repo/linux/rric-oprofile: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/rric/oprofile.git 2 | -------------------------------------------------------------------------------- /repo/linux/rseq: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/rseq/linux-rseq.git 2 | notify_build_success_branch: .* 3 | -------------------------------------------------------------------------------- /repo/linux/rui: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/rui/linux.git 2 | owner: Petr Mladek 3 | -------------------------------------------------------------------------------- /repo/linux/rusty-kvm-arm: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/rusty/linux-kvm-arm.git 2 | -------------------------------------------------------------------------------- /repo/linux/rw-ubi2: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/rw/ubi2.git 2 | -------------------------------------------------------------------------------- /repo/linux/rwlove-fcoe: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/rwlove/fcoe.git 2 | -------------------------------------------------------------------------------- /repo/linux/ryanmallon-ep93xx: -------------------------------------------------------------------------------- 1 | url: https://github.com/RyanMallon/linux-ep93xx.git 2 | -------------------------------------------------------------------------------- /repo/linux/rydberg: -------------------------------------------------------------------------------- 1 | url: https://github.com/rydberg/linux 2 | mail_cc: linux-input@vger.kernel.org -------------------------------------------------------------------------------- /repo/linux/rzr: -------------------------------------------------------------------------------- 1 | url: https://github.com/rzr/linux 2 | -------------------------------------------------------------------------------- /repo/linux/sagsifive-riscv-hifive: -------------------------------------------------------------------------------- 1 | url: https://github.com/sagsifive/riscv-linux-hifive 2 | -------------------------------------------------------------------------------- /repo/linux/sailus-next: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/sailus/linux-next.git 2 | -------------------------------------------------------------------------------- /repo/linux/samba-ksmbd: -------------------------------------------------------------------------------- 1 | url: git://git.samba.org/ksmbd.git 2 | -------------------------------------------------------------------------------- /repo/linux/sameo-mfd-fixes: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-fixes.git 2 | -------------------------------------------------------------------------------- /repo/linux/sameo-mfd-next: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-next.git 2 | -------------------------------------------------------------------------------- /repo/linux/sameo-nfc-fixes: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/sameo/nfc-fixes.git 2 | -------------------------------------------------------------------------------- /repo/linux/sandeen: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/sandeen/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/sashal-cloudkernel: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/sashal/cloudkernel.git 2 | -------------------------------------------------------------------------------- /repo/linux/sashalevin-liblockdep: -------------------------------------------------------------------------------- 1 | url: https://github.com/sashalevin/liblockdep 2 | -------------------------------------------------------------------------------- /repo/linux/sboyd-spmi: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git 2 | -------------------------------------------------------------------------------- /repo/linux/schandinat-2.6: -------------------------------------------------------------------------------- 1 | url: https://github.com/schandinat/linux-2.6.git 2 | mail_cc: linux-fbdev@vger.kernel.org -------------------------------------------------------------------------------- /repo/linux/scosu-sched: -------------------------------------------------------------------------------- 1 | url: https://github.com/scosu/linux-sched 2 | -------------------------------------------------------------------------------- /repo/linux/sean-jc: -------------------------------------------------------------------------------- 1 | url: https://github.com/sean-jc/linux 2 | -------------------------------------------------------------------------------- /repo/linux/sforshee: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/sforshee/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/sforshee-ubuntu: -------------------------------------------------------------------------------- 1 | url: git://kernel.ubuntu.com/sforshee/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/sfr-next-fixes: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/sfr/next-fixes.git 2 | -------------------------------------------------------------------------------- /repo/linux/shesselba-berlin: -------------------------------------------------------------------------------- 1 | url: https://github.com/shesselba/linux-berlin 2 | -------------------------------------------------------------------------------- /repo/linux/shli-md: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/shli/md.git 2 | -------------------------------------------------------------------------------- /repo/linux/shpedoikal: -------------------------------------------------------------------------------- 1 | url: https://github.com/shpedoikal/linux 2 | -------------------------------------------------------------------------------- /repo/linux/sirdarckcat-ubuntu: -------------------------------------------------------------------------------- 1 | url: https://github.com/sirdarckcat/ubuntu 2 | -------------------------------------------------------------------------------- /repo/linux/sj-damo: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/sj/damo.git 2 | -------------------------------------------------------------------------------- /repo/linux/skeggsb: -------------------------------------------------------------------------------- 1 | url: https://github.com/skeggsb/linux 2 | owner: Ben Skeggs 3 | -------------------------------------------------------------------------------- /repo/linux/spacegaier: -------------------------------------------------------------------------------- 1 | url: spacegaier https://github.com/spacegaier/linux 2 | -------------------------------------------------------------------------------- /repo/linux/spandruvada: -------------------------------------------------------------------------------- 1 | url: https://github.com/spandruvada/linux-kernel 2 | -------------------------------------------------------------------------------- /repo/linux/sre-misc: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-misc.git 2 | -------------------------------------------------------------------------------- /repo/linux/sre-n900: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-n900.git -------------------------------------------------------------------------------- /repo/linux/sricharanti-sricharan: -------------------------------------------------------------------------------- 1 | url: https://github.com/Sricharanti/sricharan 2 | -------------------------------------------------------------------------------- /repo/linux/srikard: -------------------------------------------------------------------------------- 1 | url: https://github.com/srikard/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/sschmidt-mcp2210: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/linux-mcp2210.git 2 | -------------------------------------------------------------------------------- /repo/linux/stefanha: -------------------------------------------------------------------------------- 1 | url: stefanha https://github.com/stefanha/linux 2 | -------------------------------------------------------------------------------- /repo/linux/steve-gfs2-3.0-fixes: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git 2 | -------------------------------------------------------------------------------- /repo/linux/strace: -------------------------------------------------------------------------------- 1 | url: https://github.com/strace/strace 2 | -------------------------------------------------------------------------------- /repo/linux/sumits-dma-buf: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/sumits/dma-buf.git 2 | -------------------------------------------------------------------------------- /repo/linux/superm1: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/superm1/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/superna9999: -------------------------------------------------------------------------------- 1 | url: https://github.com/superna9999/linux 2 | -------------------------------------------------------------------------------- /repo/linux/svarbanov-media-tree: -------------------------------------------------------------------------------- 1 | url: git://linuxtv.org/svarbanov/media_tree 2 | -------------------------------------------------------------------------------- /repo/linux/sverdlin: -------------------------------------------------------------------------------- 1 | url: https://github.com/sverdlin/linux 2 | owner: Alexander Sverdlin 3 | -------------------------------------------------------------------------------- /repo/linux/syeh-repos: -------------------------------------------------------------------------------- 1 | url: git://people.freedesktop.org/~syeh/repos_linux 2 | -------------------------------------------------------------------------------- /repo/linux/sylemieux-lpc32xx: -------------------------------------------------------------------------------- 1 | url: https://github.com/sylemieux/linux-lpc32xx 2 | -------------------------------------------------------------------------------- /repo/linux/tcharding: -------------------------------------------------------------------------------- 1 | url: https://github.com/tcharding/linux.git 2 | owner: Tobin Harding 3 | -------------------------------------------------------------------------------- /repo/linux/terrelln: -------------------------------------------------------------------------------- 1 | url: https://github.com/terrelln/linux 2 | -------------------------------------------------------------------------------- /repo/linux/tfiga-samsung-clk: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/tfiga/samsung-clk.git 2 | -------------------------------------------------------------------------------- /repo/linux/thermal: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/thomashabets: -------------------------------------------------------------------------------- 1 | url: https://github.com/ThomasHabets/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/tinywindzz: -------------------------------------------------------------------------------- 1 | url: https://github.com/TinyWindzz/linux 2 | -------------------------------------------------------------------------------- /repo/linux/tj-sched-ext: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/tj/sched_ext.git 2 | -------------------------------------------------------------------------------- /repo/linux/tnguy: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/tnguy/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/tobetter: -------------------------------------------------------------------------------- 1 | url: https://github.com/tobetter/linux 2 | owner: tobetter 3 | -------------------------------------------------------------------------------- /repo/linux/toke: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/toke/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/tomoyo-test1: -------------------------------------------------------------------------------- 1 | url: https://scm.osdn.net/gitroot/tomoyo/tomoyo-test1.git 2 | -------------------------------------------------------------------------------- /repo/linux/tomoyo-tomoyo-test1: -------------------------------------------------------------------------------- 1 | url: git://git.osdn.net/gitroot/tomoyo/tomoyo-test1.git 2 | -------------------------------------------------------------------------------- /repo/linux/tositrino: -------------------------------------------------------------------------------- 1 | url: https://github.com/tositrino/linux 2 | -------------------------------------------------------------------------------- /repo/linux/trivial-mods: -------------------------------------------------------------------------------- 1 | url: https://repo.or.cz/linux-2.6/trivial-mods.git 2 | -------------------------------------------------------------------------------- /repo/linux/trondmy-nfs-2.6: -------------------------------------------------------------------------------- 1 | url: git://git.linux-nfs.org/projects/trondmy/nfs-2.6.git 2 | -------------------------------------------------------------------------------- /repo/linux/tufei: -------------------------------------------------------------------------------- 1 | url: https://github.com/tufei/linux 2 | -------------------------------------------------------------------------------- /repo/linux/tycho: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/tycho/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/tytso-xfs-lts-backports: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/tytso/xfs-lts-backports.git 2 | -------------------------------------------------------------------------------- /repo/linux/ukleinek: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/ukleinek/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/ukrcherry: -------------------------------------------------------------------------------- 1 | url: https://github.com/ukrcherry/linux 2 | -------------------------------------------------------------------------------- /repo/linux/ulf-hansson-pm: -------------------------------------------------------------------------------- 1 | url: git://git.linaro.org/people/ulf.hansson/linux-pm.git 2 | -------------------------------------------------------------------------------- /repo/linux/ulfh-mmc: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git 2 | -------------------------------------------------------------------------------- /repo/linux/ulfh-pm: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/ulfh/linux-pm.git 2 | -------------------------------------------------------------------------------- /repo/linux/ulli-kroll: -------------------------------------------------------------------------------- 1 | url: https://github.com/ulli-kroll/linux.git 2 | owner: Hans Ulli Kroll 3 | -------------------------------------------------------------------------------- /repo/linux/uml: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/uml/linux 2 | -------------------------------------------------------------------------------- /repo/linux/urezki: -------------------------------------------------------------------------------- 1 | url: https://github.com/urezki/linux 2 | -------------------------------------------------------------------------------- /repo/linux/urjaman: -------------------------------------------------------------------------------- 1 | url: https://github.com/urjaman/linux 2 | -------------------------------------------------------------------------------- /repo/linux/vapier-lemote: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/vapier/lemote.git 2 | -------------------------------------------------------------------------------- /repo/linux/vdmkenny-spelling-fix: -------------------------------------------------------------------------------- 1 | url: https://github.com/vdmkenny/linux-spelling-fix 2 | -------------------------------------------------------------------------------- /repo/linux/vegard: -------------------------------------------------------------------------------- 1 | url: vegard https://github.com/vegard/linux 2 | -------------------------------------------------------------------------------- /repo/linux/verygreen: -------------------------------------------------------------------------------- 1 | url: https://github.com/verygreen/linux.git -------------------------------------------------------------------------------- /repo/linux/vgupta: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/vgupta/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/vinceab: -------------------------------------------------------------------------------- 1 | url: https://github.com/vinceab/linux 2 | -------------------------------------------------------------------------------- /repo/linux/viro-audit: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/viro/audit.git 2 | -------------------------------------------------------------------------------- /repo/linux/viro-signal: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/viro/signal.git 2 | -------------------------------------------------------------------------------- /repo/linux/vishal: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/vishal/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/vishal-tiering: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/vishal/tiering.git 2 | -------------------------------------------------------------------------------- /repo/linux/vshiva1: -------------------------------------------------------------------------------- 1 | url: https://github.com/vshiva1/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/vsyrjala: -------------------------------------------------------------------------------- 1 | url: https://github.com/vsyrjala/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/vzapolskiy: -------------------------------------------------------------------------------- 1 | url: https://github.com/vzapolskiy/linux 2 | -------------------------------------------------------------------------------- /repo/linux/vzapolskiy-lpc32xx: -------------------------------------------------------------------------------- 1 | url: https://github.com/vzapolskiy/linux-lpc32xx 2 | owner: Vladimir Zapolskiy 3 | -------------------------------------------------------------------------------- /repo/linux/wagi-stable-rt: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/wagi/linux-stable-rt.git 2 | -------------------------------------------------------------------------------- /repo/linux/wangnan0: -------------------------------------------------------------------------------- 1 | url: https://github.com/WangNan0/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/watchdog: -------------------------------------------------------------------------------- 1 | url: git://www.linux-watchdog.org/linux-watchdog 2 | -------------------------------------------------------------------------------- /repo/linux/watchdog-next: -------------------------------------------------------------------------------- 1 | url: git://www.linux-watchdog.org/linux-watchdog-next.git 2 | -------------------------------------------------------------------------------- /repo/linux/wbg-counter: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/wbg/counter.git 2 | -------------------------------------------------------------------------------- /repo/linux/wens: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/wens/linux.git 2 | owner: Chen-Yu Tsai 3 | -------------------------------------------------------------------------------- /repo/linux/wireless-testing: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-testing.git 2 | -------------------------------------------------------------------------------- /repo/linux/wpan: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/wpan/wpan.git 2 | -------------------------------------------------------------------------------- /repo/linux/wpan-next: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/wpan/wpan-next.git 2 | -------------------------------------------------------------------------------- /repo/linux/wtarreau-cleanups: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/cleanups.git 2 | -------------------------------------------------------------------------------- /repo/linux/wtarreau-ndiv: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/ndiv.git 2 | -------------------------------------------------------------------------------- /repo/linux/wtarreau-prandom: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/prandom.git 2 | -------------------------------------------------------------------------------- /repo/linux/wtarreau-testing: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/testing.git 2 | -------------------------------------------------------------------------------- /repo/linux/wufan-ipe: -------------------------------------------------------------------------------- 1 | url: git://git.kernel.org/pub/scm/linux/kernel/git/wufan/ipe 2 | -------------------------------------------------------------------------------- /repo/linux/xin3liang: -------------------------------------------------------------------------------- 1 | url: https://github.com/xin3liang/linux.git 2 | -------------------------------------------------------------------------------- /repo/linux/yakir-yang: -------------------------------------------------------------------------------- 1 | url: https://github.com/yakir-Yang/linux 2 | -------------------------------------------------------------------------------- /repo/linux/yocto-linux-yocto-4.1: -------------------------------------------------------------------------------- 1 | url: http://git.yoctoproject.org/git/linux-yocto-4.1 2 | -------------------------------------------------------------------------------- /repo/linux/yongzhi1-ipu3: -------------------------------------------------------------------------------- 1 | url: https://github.com/yongzhi1/ipu3 2 | notify_build_success_branch: .* 3 | -------------------------------------------------------------------------------- /repo/linux/yshigeru-devel: -------------------------------------------------------------------------------- 1 | url: https://github.com/yshigeru/linux-devel 2 | -------------------------------------------------------------------------------- /repo/linux/zack-vmwgfx: -------------------------------------------------------------------------------- 1 | url: https://gitlab.freedesktop.org/zack/vmwgfx 2 | -------------------------------------------------------------------------------- /repo/linux/zen: -------------------------------------------------------------------------------- 1 | url: https://github.com/zen-kernel/zen-kernel 2 | private_report_branch: .* 3 | mail_to: steven@liquorix.net 4 | -------------------------------------------------------------------------------- /repo/linux/zourongrong: -------------------------------------------------------------------------------- 1 | url: https://github.com/zourongrong/linux 2 | owner: Rongrong Zou 3 | -------------------------------------------------------------------------------- /repo/linux/zx2c4: -------------------------------------------------------------------------------- 1 | url: https://git.kernel.org/pub/scm/linux/kernel/git/zx2c4/linux.git 2 | notify_build_success_branch: .* 3 | -------------------------------------------------------------------------------- /rootfs/addon/etc/X11/X: -------------------------------------------------------------------------------- 1 | /usr/bin/Xorg -------------------------------------------------------------------------------- /rootfs/addon/etc/adjtime: -------------------------------------------------------------------------------- 1 | 0.0 0 0.0 2 | 0 3 | LOCAL 4 | -------------------------------------------------------------------------------- /rootfs/addon/etc/rc2.d/S77lkp-bootstrap: -------------------------------------------------------------------------------- 1 | ../init.d/lkp-bootstrap -------------------------------------------------------------------------------- /rootfs/addon/etc/rc5.d/S77lkp-bootstrap: -------------------------------------------------------------------------------- 1 | ../init.d/lkp-bootstrap -------------------------------------------------------------------------------- /rootfs/addon/etc/systemd/system/lkp-bootstrap.service: -------------------------------------------------------------------------------- 1 | ../../../usr/lib/systemd/system/lkp-bootstrap.service -------------------------------------------------------------------------------- /rootfs/addon/etc/systemd/system/rc-local.service.d/override.conf: -------------------------------------------------------------------------------- 1 | [Service] 2 | IgnoreSIGPIPE=no 3 | TasksMax=infinity 4 | -------------------------------------------------------------------------------- /rootfs/addon/lib/systemd/system-generators/systemd-getty-generator: -------------------------------------------------------------------------------- 1 | /bin/true -------------------------------------------------------------------------------- /rootfs/addon/usr/lib/systemd/network/81-dhcp.network: -------------------------------------------------------------------------------- 1 | [Match] 2 | Name=eth* 3 | [Network] 4 | DHCP=yes 5 | -------------------------------------------------------------------------------- /rootfs/addon/usr/lib/systemd/system/multi-user.target.wants/lkp-bootstrap.service: -------------------------------------------------------------------------------- 1 | ../lkp-bootstrap.service -------------------------------------------------------------------------------- /setup/drop_caches: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo 3 > /proc/sys/vm/drop_caches 4 | -------------------------------------------------------------------------------- /setup/eatmem2: -------------------------------------------------------------------------------- 1 | eatmem -------------------------------------------------------------------------------- /setup/fs1: -------------------------------------------------------------------------------- 1 | fs -------------------------------------------------------------------------------- /setup/fs2: -------------------------------------------------------------------------------- 1 | fs -------------------------------------------------------------------------------- /setup/intel_powerclamp: -------------------------------------------------------------------------------- 1 | cooling_device -------------------------------------------------------------------------------- /setup/qemu-next: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /setup/sleep_after_boot: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # - sleep_time 3 | 4 | sleep $sleep_time 5 | -------------------------------------------------------------------------------- /spec/benchmark_root/xfstests/tests/ext4-logdev: -------------------------------------------------------------------------------- 1 | 029 2 | 002 3 | -------------------------------------------------------------------------------- /spec/benchmark_root/xfstests/tests/generic-log-writes: -------------------------------------------------------------------------------- 1 | 482 2 | 457 3 | 455 4 | -------------------------------------------------------------------------------- /spec/benchmark_root/xfstests/tests/generic-logdev: -------------------------------------------------------------------------------- 1 | 487 2 | -------------------------------------------------------------------------------- /spec/benchmark_root/xfstests/tests/xfs-logdev: -------------------------------------------------------------------------------- 1 | 275 2 | 044 3 | -------------------------------------------------------------------------------- /spec/benchmark_root/xfstests/tests/xfs-no-xfs-bug-on-assert: -------------------------------------------------------------------------------- 1 | 098 2 | 115 3 | 439 4 | -------------------------------------------------------------------------------- /spec/benchmark_root/xfstests/tests/xfs-scratch-reflink-15: -------------------------------------------------------------------------------- 1 | 307 2 | 308 3 | 309 4 | 312 5 | 313 6 | 315 7 | 316 8 | 319 9 | -------------------------------------------------------------------------------- /spec/split-job/tests/split-job: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # - group 3 | # - test 4 | 5 | echo "Split job spec" 6 | -------------------------------------------------------------------------------- /spec/stats/aim9/02.yaml: -------------------------------------------------------------------------------- 1 | tcp_test.ops_per_sec: 17694.60 2 | -------------------------------------------------------------------------------- /spec/stats/analyze-suspend/1.yaml: -------------------------------------------------------------------------------- 1 | pass: 1 2 | -------------------------------------------------------------------------------- /spec/stats/blktests/01.yaml: -------------------------------------------------------------------------------- 1 | zbd/002.pass: 1 2 | zbd/003.pass: 1 3 | -------------------------------------------------------------------------------- /spec/stats/blktests/02.yaml: -------------------------------------------------------------------------------- 1 | srp/002.pass: 1 2 | srp/003.skip: 1 3 | -------------------------------------------------------------------------------- /spec/stats/coremark/01.yaml: -------------------------------------------------------------------------------- 1 | iterations_per_sec: 12173.471976 2 | -------------------------------------------------------------------------------- /spec/stats/dmesg/02: -------------------------------------------------------------------------------- 1 | BUG: kernel test crashed 2 | -------------------------------------------------------------------------------- /spec/stats/dmesg/04: -------------------------------------------------------------------------------- 1 | BUG: kernel early-boot hang 2 | Linux version 4.8.0-rc1 #120 3 | -------------------------------------------------------------------------------- /spec/stats/dmesg/25: -------------------------------------------------------------------------------- 1 | BUG: kernel boot crashed 2 | -------------------------------------------------------------------------------- /spec/stats/dmesg/26: -------------------------------------------------------------------------------- 1 | BUG: kernel boot hang 2 | -------------------------------------------------------------------------------- /spec/stats/dmesg/29: -------------------------------------------------------------------------------- 1 | BUG: kernel early-boot hang Probing EDD (edd=off to disable)... ok 2 | Linux version 4.8.0-rc1 #1 3 | -------------------------------------------------------------------------------- /spec/stats/dmesg/33: -------------------------------------------------------------------------------- 1 | BUG: kernel early-boot crashed Probing EDD (edd=off to disable)... ok 2 | Linux version 4.8.0-rc1 #1 3 | -------------------------------------------------------------------------------- /spec/stats/dmesg/36: -------------------------------------------------------------------------------- 1 | BUG: kernel early-boot hang early console in setup code 2 | Linux version 4.8.0-rc1 #1 3 | -------------------------------------------------------------------------------- /spec/stats/dmesg/37: -------------------------------------------------------------------------------- 1 | BUG: kernel test hang 2 | -------------------------------------------------------------------------------- /spec/stats/dmesg/61: -------------------------------------------------------------------------------- 1 | BUG: kernel early-boot crashed Booting the kernel. 2 | Linux version 4.8.0-rc1 #74 3 | -------------------------------------------------------------------------------- /spec/stats/dmesg/63: -------------------------------------------------------------------------------- 1 | BUG: kernel early-boot crashed early console in setup code 2 | Linux version 4.8.0-rc1 #50 3 | -------------------------------------------------------------------------------- /spec/stats/dmesg/80: -------------------------------------------------------------------------------- 1 | [ 185.681694] watchdog: BUG: soft lockup - CPU#0 stuck for 22s! [trinity-c0:6886] 2 | -------------------------------------------------------------------------------- /spec/stats/fsmark/1.yaml: -------------------------------------------------------------------------------- 1 | files_per_sec: 8324.8 2 | app_overhead: 390190.0 3 | -------------------------------------------------------------------------------- /spec/stats/fsmark/2.yaml: -------------------------------------------------------------------------------- 1 | files_per_sec: 337.6 2 | app_overhead: 54976.0 3 | -------------------------------------------------------------------------------- /spec/stats/hwsim/2.yaml: -------------------------------------------------------------------------------- 1 | make.fail: 1 2 | -------------------------------------------------------------------------------- /spec/stats/igt/01.yaml: -------------------------------------------------------------------------------- 1 | gem_exec_create.madvise.pass: 1 2 | gem_media_fill.media-fill.fail: 1 3 | -------------------------------------------------------------------------------- /spec/stats/igt/02.yaml: -------------------------------------------------------------------------------- 1 | core_getstats.pass: 1 2 | drm_read.invalid-buffer.pass: 1 3 | -------------------------------------------------------------------------------- /spec/stats/igt/03.yaml: -------------------------------------------------------------------------------- 1 | i915_pm_rps.reset.fail: 1 2 | -------------------------------------------------------------------------------- /spec/stats/igt/04.yaml: -------------------------------------------------------------------------------- 1 | gem_exec_async.forked-writes.skip: 1 2 | gem_streaming_writes.batch-cpu.skip: 1 3 | -------------------------------------------------------------------------------- /spec/stats/igt/05.yaml: -------------------------------------------------------------------------------- 1 | perf.i915-ref-count.skip: 1 2 | -------------------------------------------------------------------------------- /spec/stats/igt/06.yaml: -------------------------------------------------------------------------------- 1 | gem_create.create-clear.dynamic.smem0.fail: 1 2 | -------------------------------------------------------------------------------- /spec/stats/igt/07.yaml: -------------------------------------------------------------------------------- 1 | gem_create.create-clear.fail: 1 2 | -------------------------------------------------------------------------------- /spec/stats/igt/gem_shrink.yaml: -------------------------------------------------------------------------------- 1 | gem_shrink.execbuf1-oom.fail: 1 2 | -------------------------------------------------------------------------------- /spec/stats/kbuild/01.yaml: -------------------------------------------------------------------------------- 1 | buildtime_per_iteration: 151.8263578414917 2 | workload: 1 3 | -------------------------------------------------------------------------------- /spec/stats/kernel-selftests/bpf-01.yaml: -------------------------------------------------------------------------------- 1 | bpf.test_verifier.pass: 1 2 | bpf.test_maps.fail: 1 3 | -------------------------------------------------------------------------------- /spec/stats/kernel-selftests/bpf-02.yaml: -------------------------------------------------------------------------------- 1 | bpf.make.fail: 1 2 | -------------------------------------------------------------------------------- /spec/stats/kernel-selftests/clone3-02.yaml: -------------------------------------------------------------------------------- 1 | clone3.make.fail: 1 2 | -------------------------------------------------------------------------------- /spec/stats/kernel-selftests/core.yaml: -------------------------------------------------------------------------------- 1 | core.make.fail: 1 2 | -------------------------------------------------------------------------------- /spec/stats/kernel-selftests/cpufreq.yaml: -------------------------------------------------------------------------------- 1 | cpufreq.make.pass: 1 2 | cpufreq.main.sh.pass: 1 3 | -------------------------------------------------------------------------------- /spec/stats/kernel-selftests/dma-03.yaml: -------------------------------------------------------------------------------- 1 | dma.make.pass: 1 2 | dma.dma_map_benchmark.fail: 1 3 | -------------------------------------------------------------------------------- /spec/stats/kernel-selftests/exec-02.yaml: -------------------------------------------------------------------------------- 1 | exec.make.fail: 1 2 | -------------------------------------------------------------------------------- /spec/stats/kernel-selftests/lkdtm-03.yaml: -------------------------------------------------------------------------------- 1 | lkdtm.PANIC.sh.skip: 1 2 | lkdtm.BUG.sh.pass: 1 3 | -------------------------------------------------------------------------------- /spec/stats/kernel-selftests/make-fail.yaml: -------------------------------------------------------------------------------- 1 | dmabuf-heaps.make.fail: 1 2 | -------------------------------------------------------------------------------- /spec/stats/kernel-selftests/memory-hotplug-02.yaml: -------------------------------------------------------------------------------- 1 | memory-hotplug.make.pass: 1 2 | memory-hotplug.mem-on-off-test.sh.pass: 1 3 | -------------------------------------------------------------------------------- /spec/stats/kernel-selftests/memory-hotplug-04.yaml: -------------------------------------------------------------------------------- 1 | memory-hotplug.make.fail: 1 2 | -------------------------------------------------------------------------------- /spec/stats/kernel-selftests/mount-01.yaml: -------------------------------------------------------------------------------- 1 | mount.skip: 1 2 | -------------------------------------------------------------------------------- /spec/stats/kernel-selftests/mount-02.yaml: -------------------------------------------------------------------------------- 1 | mount.fail: 1 2 | -------------------------------------------------------------------------------- /spec/stats/kernel-selftests/net-nl-netdev.yaml: -------------------------------------------------------------------------------- 1 | net.nl_netdev.py.nl_netdev.skip: 1 2 | net.nl_netdev.py.skip: 1 3 | -------------------------------------------------------------------------------- /spec/stats/kernel-selftests/net-veth-01.yaml: -------------------------------------------------------------------------------- 1 | net.veth.sh.fail: 1 2 | -------------------------------------------------------------------------------- /spec/stats/kernel-selftests/net-veth-02.yaml: -------------------------------------------------------------------------------- 1 | net.veth.sh.pass: 1 2 | -------------------------------------------------------------------------------- /spec/stats/kernel-selftests/net-veth-03.yaml: -------------------------------------------------------------------------------- 1 | net.veth.sh.fail: 1 2 | -------------------------------------------------------------------------------- /spec/stats/kernel-selftests/x86-01.yaml: -------------------------------------------------------------------------------- 1 | x86.make.fail: 1 2 | -------------------------------------------------------------------------------- /spec/stats/kernel-selftests/x86-05.yaml: -------------------------------------------------------------------------------- 1 | x86.make.fail: 1 2 | -------------------------------------------------------------------------------- /spec/stats/kmsg/01.yaml: -------------------------------------------------------------------------------- 1 | 2 | timestamp:last: 22.621992 3 | -------------------------------------------------------------------------------- /spec/stats/kmsg/02.yaml: -------------------------------------------------------------------------------- 1 | 2 | timestamp:last: 322.534787 3 | -------------------------------------------------------------------------------- /spec/stats/kvm-unit-tests/1.yaml: -------------------------------------------------------------------------------- 1 | apic-split.pass: 1 2 | vmexit_cpuid.pass: 1 3 | pks.skip: 1 4 | msr.fail: 1 5 | -------------------------------------------------------------------------------- /spec/stats/leaking-addresses/03: -------------------------------------------------------------------------------- 1 | [ 26.670455][ T310] ata1.00: 937703088 sectors, multi 1: LBA48 NCQ (depth 32) 2 | -------------------------------------------------------------------------------- /spec/stats/leaking-addresses/03.yaml: -------------------------------------------------------------------------------- 1 | leaking_number: 0 2 | total_number: 0 3 | result.fail: 1 4 | -------------------------------------------------------------------------------- /spec/stats/lmbench3/01.yaml: -------------------------------------------------------------------------------- 1 | Mem.Bandwidth.MB/sec: 13805.57 2 | -------------------------------------------------------------------------------- /spec/stats/locktorture/1.yaml: -------------------------------------------------------------------------------- 1 | cpuhotplug-spin_lock.pass: 1 2 | -------------------------------------------------------------------------------- /spec/stats/lz4-test/01.yaml: -------------------------------------------------------------------------------- 1 | compression_level: 1 2 | compression_MB_per_sec: 9264.88 3 | decompression_MB_per_sec: 9674.3 4 | -------------------------------------------------------------------------------- /spec/stats/mdadm-selftests/2.yaml: -------------------------------------------------------------------------------- 1 | 07changelevelintr.fail: 1 2 | 07changelevels.fail: 1 3 | -------------------------------------------------------------------------------- /spec/stats/netpipe/mpi.yaml: -------------------------------------------------------------------------------- 1 | less_8K_usec.avg: 0.10760575 2 | bigger_5M_Mbps.avg: 67.33533333333334 3 | -------------------------------------------------------------------------------- /spec/stats/netpipe/tcp.yaml: -------------------------------------------------------------------------------- 1 | less_8K_usec.avg: 9.3575 2 | bigger_5M_Mbps.avg: 45233.63 3 | -------------------------------------------------------------------------------- /spec/stats/openssl-speed/01.yaml: -------------------------------------------------------------------------------- 1 | sign_per_sec: 1959.9 2 | verify_per_sec: 129694.5 3 | -------------------------------------------------------------------------------- /spec/stats/perf-bench-futex/01.yaml: -------------------------------------------------------------------------------- 1 | ops/s: 491926 2 | stddev%: 0.19 3 | -------------------------------------------------------------------------------- /spec/stats/perf-bench-futex/02.yaml: -------------------------------------------------------------------------------- 1 | wokeup_time_ms: 0.0186 2 | stddev%: 3.12 3 | -------------------------------------------------------------------------------- /spec/stats/perf-bench-futex/03.yaml: -------------------------------------------------------------------------------- 1 | requeued_time_ms: 0.0138 2 | stddev%: 3.86 3 | -------------------------------------------------------------------------------- /spec/stats/perf-bench-futex/04.yaml: -------------------------------------------------------------------------------- 1 | avg_per_thread_latency_ms: 0.0112 2 | stddev%: 21.72 3 | -------------------------------------------------------------------------------- /spec/stats/perf-event-tests/2: -------------------------------------------------------------------------------- 1 | Decompressing Linux... Parsing ELF... No relocation needed... done. 2 | -------------------------------------------------------------------------------- /spec/stats/perf-event-tests/3.yaml: -------------------------------------------------------------------------------- 1 | make.fail: 1 2 | -------------------------------------------------------------------------------- /spec/stats/perf-sanity-tests/1.yaml: -------------------------------------------------------------------------------- 1 | perf.make.fail: 1 2 | -------------------------------------------------------------------------------- /spec/stats/phoronix-test-suite/1.yaml: -------------------------------------------------------------------------------- 1 | xsbench-cl.0.lookups_s: 15453888 2 | -------------------------------------------------------------------------------- /spec/stats/phoronix-test-suite/4.yaml: -------------------------------------------------------------------------------- 1 | smart./dev/sda.Final: 1 2 | smart-1.0.0.seconds: 7.371079634 3 | -------------------------------------------------------------------------------- /spec/stats/phoronix-test-suite/5.yaml: -------------------------------------------------------------------------------- 1 | octave-benchmark.0.seconds: 7.46 2 | -------------------------------------------------------------------------------- /spec/stats/phoronix-test-suite/6.yaml: -------------------------------------------------------------------------------- 1 | unigine-tropics.1024x768.Fullscreen.frames_per_second: 65.5034 2 | -------------------------------------------------------------------------------- /spec/stats/phoronix-test-suite/7.yaml: -------------------------------------------------------------------------------- 1 | idle.1.Final.pass: 1 2 | idle-1.2.0.seconds: 79.322178123 3 | -------------------------------------------------------------------------------- /spec/stats/rcurefscale/1.yaml: -------------------------------------------------------------------------------- 1 | rcu-ref-scale.duration_per_loop.ns: 6.0220666666666665 2 | -------------------------------------------------------------------------------- /spec/stats/rcuscale/1.yaml: -------------------------------------------------------------------------------- 1 | rcu.pass: 1 2 | -------------------------------------------------------------------------------- /spec/stats/rcuscale/2.yaml: -------------------------------------------------------------------------------- 1 | srcu.pass: 1 2 | -------------------------------------------------------------------------------- /spec/stats/rcuscale/3.yaml: -------------------------------------------------------------------------------- 1 | srcud.pass: 1 2 | -------------------------------------------------------------------------------- /spec/stats/rcuscale/4.yaml: -------------------------------------------------------------------------------- 1 | tasks.pass: 1 2 | -------------------------------------------------------------------------------- /spec/stats/rcutorture/01.yaml: -------------------------------------------------------------------------------- 1 | tasks.pass: 1 2 | -------------------------------------------------------------------------------- /spec/stats/rcutorture/02.yaml: -------------------------------------------------------------------------------- 1 | srcu.unknown: 1 2 | -------------------------------------------------------------------------------- /spec/stats/rcutorture/03.yaml: -------------------------------------------------------------------------------- 1 | cpuhotplug-rcu.pass: 1 2 | -------------------------------------------------------------------------------- /spec/stats/rcutorture/04.yaml: -------------------------------------------------------------------------------- 1 | rcu.rcu_hotplug: 1 2 | -------------------------------------------------------------------------------- /spec/stats/stderr/8: -------------------------------------------------------------------------------- 1 | netperf: send_omni: recv_data failed: Connection reset by peer 2 | -------------------------------------------------------------------------------- /spec/stats/stress-ng/03.yaml: -------------------------------------------------------------------------------- 1 | signest.pass: 1 2 | signest.ops: 64943005 3 | signest.ops_per_sec: 1082381.11 4 | -------------------------------------------------------------------------------- /spec/stats/stress-ng/04.yaml: -------------------------------------------------------------------------------- 1 | sigaction.fail: 1 2 | -------------------------------------------------------------------------------- /spec/stats/test-bpf/1.yaml: -------------------------------------------------------------------------------- 1 | BPF_MAXINSNS_Too_many_instructions.pass: 1 2 | -------------------------------------------------------------------------------- /spec/stats/test-bpf/2.yaml: -------------------------------------------------------------------------------- 1 | LD_IND_halfword_positive_offset.pass: 1 2 | -------------------------------------------------------------------------------- /spec/stats/test-bpf/3.yaml: -------------------------------------------------------------------------------- 1 | JMP32_JSGT_K_operand_preserved_in_zext.pass: 1 2 | JMP32_JSGE_K_operand_preserved_in_zext.pass: 1 3 | -------------------------------------------------------------------------------- /spec/stats/unixbench/01.yaml: -------------------------------------------------------------------------------- 1 | throughput: 3121976.0 2 | workload: 1155131120.0 3 | -------------------------------------------------------------------------------- /spec/stats/unixbench/02.yaml: -------------------------------------------------------------------------------- 1 | score: 4231.4 2 | throughput: 1675624.0 3 | workload: 804299520.0 4 | -------------------------------------------------------------------------------- /spec/stats/unixbench/03.yaml: -------------------------------------------------------------------------------- 1 | score: 960.2 2 | throughput: 3207.0 3 | workload: 901167.0 4 | -------------------------------------------------------------------------------- /spec/stats/will-it-scale/2.yaml: -------------------------------------------------------------------------------- 1 | Assertion_ret_==_1_failed: 1 2 | Assertion_ret_==_1_failed: 1 3 | -------------------------------------------------------------------------------- /spec/stats/xfstests/btrfs.yaml: -------------------------------------------------------------------------------- 1 | btrfs.158.pass: 1 2 | -------------------------------------------------------------------------------- /spec/stats/xfstests/expunged-03.yaml: -------------------------------------------------------------------------------- 1 | generic.387.expunged: 1 2 | -------------------------------------------------------------------------------- /spec/stats/xfstests/ext4.yaml: -------------------------------------------------------------------------------- 1 | ext4.005.pass: 1 2 | ext4.007.fail: 1 3 | ext4.043.pass: 1 4 | ext4.045.fail: 1 5 | -------------------------------------------------------------------------------- /spec/stats/xfstests/generic-01.yaml: -------------------------------------------------------------------------------- 1 | generic.084.fail: 1 2 | generic.085.pass: 1 3 | -------------------------------------------------------------------------------- /spec/stats/xfstests/generic-02: -------------------------------------------------------------------------------- 1 | generic/026 [not run] ext4 does not define maximum ACL count 2 | Not run: generic/026 3 | -------------------------------------------------------------------------------- /spec/stats/xfstests/generic-02.yaml: -------------------------------------------------------------------------------- 1 | generic.026.skip: 1 2 | -------------------------------------------------------------------------------- /spec/stats/xfstests/generic-04: -------------------------------------------------------------------------------- 1 | generic/001 2s 2 | generic/002 2s 3 | Ran: generic/001 generic/002 4 | -------------------------------------------------------------------------------- /spec/stats/xfstests/generic-04.yaml: -------------------------------------------------------------------------------- 1 | generic.001.pass: 1 2 | generic.002.pass: 1 3 | -------------------------------------------------------------------------------- /spec/stats/xfstests/ocfs2.yaml: -------------------------------------------------------------------------------- 1 | ocfs2.001.fail: 1 2 | -------------------------------------------------------------------------------- /spec/stats/xfstests/udf.yaml: -------------------------------------------------------------------------------- 1 | udf.102.fail: 1 2 | -------------------------------------------------------------------------------- /spec/stats/xfstests/xfs: -------------------------------------------------------------------------------- 1 | xfs/161 [not run] Assuming DMAPI modules are not loaded 2 | -------------------------------------------------------------------------------- /spec/stats/xfstests/xfs.yaml: -------------------------------------------------------------------------------- 1 | xfs.161.skip: 1 2 | -------------------------------------------------------------------------------- /spec/stats_part/result_root/1/mpstat.json: -------------------------------------------------------------------------------- 1 | ../0/mpstat.json -------------------------------------------------------------------------------- /spec/stats_part/result_root/1/perf-stat.json: -------------------------------------------------------------------------------- 1 | ../0/perf-stat.json -------------------------------------------------------------------------------- /spec/stats_part/result_root/2/mpstat.json: -------------------------------------------------------------------------------- 1 | ../0/mpstat.json -------------------------------------------------------------------------------- /spec/stats_part/result_root/2/perf-stat.json: -------------------------------------------------------------------------------- 1 | ../0/perf-stat.json -------------------------------------------------------------------------------- /spec/stats_part/result_root/matrix_1.json: -------------------------------------------------------------------------------- 1 | matrix_0.json -------------------------------------------------------------------------------- /spec/stats_part/result_root/matrix_2.json: -------------------------------------------------------------------------------- 1 | matrix_0.json -------------------------------------------------------------------------------- /stats/cpufreq: -------------------------------------------------------------------------------- 1 | ../programs/default/parse -------------------------------------------------------------------------------- /stats/debug-stats: -------------------------------------------------------------------------------- 1 | ../monitors/debug-monitor -------------------------------------------------------------------------------- /stats/ethtool: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | grep -E -o '[a-zA-Z0-9_]+: [0-9]+' 4 | -------------------------------------------------------------------------------- /stats/kmemleak-test: -------------------------------------------------------------------------------- 1 | kmemleak -------------------------------------------------------------------------------- /stats/kmsg: -------------------------------------------------------------------------------- 1 | dmesg -------------------------------------------------------------------------------- /stats/kvm: -------------------------------------------------------------------------------- 1 | ../programs/default/parse -------------------------------------------------------------------------------- /stats/last_state: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grep -E ".+: [0-9]+$" | sort -u 4 | 5 | true 6 | -------------------------------------------------------------------------------- /stats/mdstat: -------------------------------------------------------------------------------- 1 | ../programs/default/parse -------------------------------------------------------------------------------- /stats/numa-vmstat: -------------------------------------------------------------------------------- 1 | numa-numastat -------------------------------------------------------------------------------- /stats/uptime: -------------------------------------------------------------------------------- 1 | ../programs/default/parse -------------------------------------------------------------------------------- /tools/grep-ruby-lib-dependency: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | git grep -w -f <(grep '\