├── .editorconfig ├── README.md ├── benchmarks ├── fxmark │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── bin │ │ ├── cpu-sequences │ │ ├── cpubars │ │ ├── cpuinfo.py │ │ ├── dbench-workloads │ │ │ ├── client.txt │ │ │ ├── iscsi.txt │ │ │ ├── iscsi │ │ │ │ ├── prout_register_twice.txt │ │ │ │ ├── prout_release_parallel_1.txt │ │ │ │ ├── prout_release_parallel_2.txt │ │ │ │ ├── prout_release_twice.txt │ │ │ │ ├── prout_reserve_parallel_1.txt │ │ │ │ ├── prout_reserve_parallel_2.txt │ │ │ │ ├── prout_reserve_repeat.txt │ │ │ │ ├── prout_reserve_twice.txt │ │ │ │ ├── register_twice.txt │ │ │ │ ├── release_parallel.sh │ │ │ │ ├── release_parallel_1.txt │ │ │ │ ├── release_parallel_2.txt │ │ │ │ ├── release_twice.txt │ │ │ │ ├── repeat.txt │ │ │ │ ├── reserve_parallel.sh │ │ │ │ ├── reserve_parallel_1.txt │ │ │ │ ├── reserve_parallel_2.txt │ │ │ │ └── reserve_twice.txt │ │ │ ├── nfs.txt │ │ │ ├── nfs_2.txt │ │ │ ├── nfs_3.load │ │ │ ├── scsi.txt │ │ │ ├── smb.txt │ │ │ ├── smb_1.txt │ │ │ ├── smb_2.txt │ │ │ └── smb_3.txt │ │ ├── drop-caches │ │ ├── filebench-workloads │ │ │ ├── compflow_demo.f │ │ │ ├── copyfiles.f │ │ │ ├── createfiles.f │ │ │ ├── filemicro_create.f │ │ │ ├── filemicro_createfiles.f │ │ │ ├── filemicro_createrand.f │ │ │ ├── filemicro_delete.f │ │ │ ├── filemicro_rread.f │ │ │ ├── filemicro_rwrite.f │ │ │ ├── filemicro_rwritedsync.f │ │ │ ├── filemicro_rwritefsync.f │ │ │ ├── filemicro_seqread.f │ │ │ ├── filemicro_seqwrite.f │ │ │ ├── filemicro_seqwriterand.f │ │ │ ├── filemicro_seqwriterandvargam.f │ │ │ ├── filemicro_seqwriterandvartab.f │ │ │ ├── filemicro_statfile.f │ │ │ ├── filemicro_writefsync.f │ │ │ ├── fileserver.f │ │ │ ├── fivestreamread.f │ │ │ ├── fivestreamreaddirect.f │ │ │ ├── fivestreamwrite.f │ │ │ ├── fivestreamwritedirect.f │ │ │ ├── listdirs.f │ │ │ ├── makedirs.f │ │ │ ├── mongo.f │ │ │ ├── netsfs.f │ │ │ ├── networkfs.f │ │ │ ├── oltp.f │ │ │ ├── openfiles.f │ │ │ ├── randomfileaccess.f │ │ │ ├── randomread.f │ │ │ ├── randomrw.f │ │ │ ├── randomwrite.f │ │ │ ├── ratelimcopyfiles.f │ │ │ ├── removedirs.f │ │ │ ├── singlestreamread.f │ │ │ ├── singlestreamreaddirect.f │ │ │ ├── singlestreamwrite.f │ │ │ ├── singlestreamwritedirect.f │ │ │ ├── tpcso.f │ │ │ ├── varmail.f │ │ │ ├── videoserver.f │ │ │ ├── webproxy.f │ │ │ └── webserver.f │ │ ├── fs_locking_table.py │ │ ├── gen_corepolicy │ │ ├── grubonce │ │ ├── install-fs-tools.sh │ │ ├── kibt.py │ │ ├── list-cpus │ │ ├── parser.py │ │ ├── perfmon.py │ │ ├── perfstdio.py │ │ ├── plotter.py │ │ ├── run-dbench.py │ │ ├── run-filebench.py │ │ ├── run-fxmark.py │ │ ├── set-cpus │ │ └── turnoff-aslr │ ├── scripts │ │ ├── create_external_log_xfs.sh │ │ └── create_journal_ext4.sh │ └── src │ │ ├── DRBH.c │ │ ├── DRBH_bg.c │ │ ├── DRBL.c │ │ ├── DRBL_bg.c │ │ ├── DRBM.c │ │ ├── DRBM_bg.c │ │ ├── DWAL.c │ │ ├── DWOL.c │ │ ├── DWOM.c │ │ ├── DWSL.c │ │ ├── DWTL.c │ │ ├── MRDL.c │ │ ├── MRDL_bg.c │ │ ├── MRDM.c │ │ ├── MRDM_bg.c │ │ ├── MRPH.c │ │ ├── MRPL.c │ │ ├── MRPM.c │ │ ├── MRPM_bg.c │ │ ├── MWCL.c │ │ ├── MWCM.c │ │ ├── MWRL.c │ │ ├── MWRM.c │ │ ├── MWUL.c │ │ ├── MWUM.c │ │ ├── bench.c │ │ ├── bench.h │ │ ├── fxmark.c │ │ ├── fxmark.h │ │ ├── rdtsc.c │ │ ├── rdtsc.h │ │ ├── util.c │ │ └── util.h ├── leveldb │ ├── bin │ │ └── drop-caches │ ├── leveldb-1.20 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── NEWS │ │ ├── README.md │ │ ├── TODO │ │ ├── build_detect_platform │ │ ├── db │ │ │ ├── autocompact_test.cc │ │ │ ├── builder.cc │ │ │ ├── builder.h │ │ │ ├── c.cc │ │ │ ├── c_test.c │ │ │ ├── corruption_test.cc │ │ │ ├── db_bench.cc │ │ │ ├── db_impl.cc │ │ │ ├── db_impl.h │ │ │ ├── db_iter.cc │ │ │ ├── db_iter.h │ │ │ ├── db_test.cc │ │ │ ├── dbformat.cc │ │ │ ├── dbformat.h │ │ │ ├── dbformat_test.cc │ │ │ ├── dumpfile.cc │ │ │ ├── fault_injection_test.cc │ │ │ ├── filename.cc │ │ │ ├── filename.h │ │ │ ├── filename_test.cc │ │ │ ├── leveldbutil.cc │ │ │ ├── log_format.h │ │ │ ├── log_reader.cc │ │ │ ├── log_reader.h │ │ │ ├── log_test.cc │ │ │ ├── log_writer.cc │ │ │ ├── log_writer.h │ │ │ ├── memtable.cc │ │ │ ├── memtable.h │ │ │ ├── recovery_test.cc │ │ │ ├── repair.cc │ │ │ ├── skiplist.h │ │ │ ├── skiplist_test.cc │ │ │ ├── snapshot.h │ │ │ ├── table_cache.cc │ │ │ ├── table_cache.h │ │ │ ├── version_edit.cc │ │ │ ├── version_edit.h │ │ │ ├── version_edit_test.cc │ │ │ ├── version_set.cc │ │ │ ├── version_set.h │ │ │ ├── version_set_test.cc │ │ │ ├── write_batch.cc │ │ │ ├── write_batch_internal.h │ │ │ └── write_batch_test.cc │ │ ├── doc │ │ │ ├── bench │ │ │ │ ├── db_bench_sqlite3.cc │ │ │ │ └── db_bench_tree_db.cc │ │ │ ├── benchmark.html │ │ │ ├── impl.md │ │ │ ├── index.md │ │ │ ├── log_format.md │ │ │ └── table_format.md │ │ ├── helpers │ │ │ └── memenv │ │ │ │ ├── memenv.cc │ │ │ │ ├── memenv.h │ │ │ │ └── memenv_test.cc │ │ ├── include │ │ │ └── leveldb │ │ │ │ ├── c.h │ │ │ │ ├── cache.h │ │ │ │ ├── comparator.h │ │ │ │ ├── db.h │ │ │ │ ├── dumpfile.h │ │ │ │ ├── env.h │ │ │ │ ├── filter_policy.h │ │ │ │ ├── iterator.h │ │ │ │ ├── options.h │ │ │ │ ├── slice.h │ │ │ │ ├── status.h │ │ │ │ ├── table.h │ │ │ │ ├── table_builder.h │ │ │ │ └── write_batch.h │ │ ├── issues │ │ │ ├── issue178_test.cc │ │ │ └── issue200_test.cc │ │ ├── port │ │ │ ├── README │ │ │ ├── atomic_pointer.h │ │ │ ├── port.h │ │ │ ├── port_example.h │ │ │ ├── port_posix.cc │ │ │ ├── port_posix.h │ │ │ ├── port_posix_sse.cc │ │ │ ├── thread_annotations.h │ │ │ └── win │ │ │ │ └── stdint.h │ │ ├── table │ │ │ ├── block.cc │ │ │ ├── block.h │ │ │ ├── block_builder.cc │ │ │ ├── block_builder.h │ │ │ ├── filter_block.cc │ │ │ ├── filter_block.h │ │ │ ├── filter_block_test.cc │ │ │ ├── format.cc │ │ │ ├── format.h │ │ │ ├── iterator.cc │ │ │ ├── iterator_wrapper.h │ │ │ ├── merger.cc │ │ │ ├── merger.h │ │ │ ├── table.cc │ │ │ ├── table_builder.cc │ │ │ ├── table_test.cc │ │ │ ├── two_level_iterator.cc │ │ │ └── two_level_iterator.h │ │ └── util │ │ │ ├── arena.cc │ │ │ ├── arena.h │ │ │ ├── arena_test.cc │ │ │ ├── bloom.cc │ │ │ ├── bloom_test.cc │ │ │ ├── cache.cc │ │ │ ├── cache_test.cc │ │ │ ├── coding.cc │ │ │ ├── coding.h │ │ │ ├── coding_test.cc │ │ │ ├── comparator.cc │ │ │ ├── crc32c.cc │ │ │ ├── crc32c.h │ │ │ ├── crc32c_test.cc │ │ │ ├── env.cc │ │ │ ├── env_posix.cc │ │ │ ├── env_posix_test.cc │ │ │ ├── env_posix_test_helper.h │ │ │ ├── env_test.cc │ │ │ ├── filter_policy.cc │ │ │ ├── hash.cc │ │ │ ├── hash.h │ │ │ ├── hash_test.cc │ │ │ ├── histogram.cc │ │ │ ├── histogram.h │ │ │ ├── logging.cc │ │ │ ├── logging.h │ │ │ ├── mutexlock.h │ │ │ ├── options.cc │ │ │ ├── posix_logger.h │ │ │ ├── random.h │ │ │ ├── status.cc │ │ │ ├── testharness.cc │ │ │ ├── testharness.h │ │ │ ├── testutil.cc │ │ │ └── testutil.h │ ├── plot.py │ └── run_db_bench.sh ├── lockstat │ └── get-lockstat │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README.md │ │ ├── bpf.c │ │ ├── bpf.h │ │ ├── bpf_load.c │ │ ├── bpf_load.h │ │ ├── get_bpflockstat.c │ │ ├── include │ │ ├── bpf_helpers.h │ │ ├── concord.h │ │ └── linux │ │ │ └── types.h │ │ ├── libbpf.h │ │ ├── libbpf_internal.h │ │ └── perf-sys.h ├── metis │ ├── .gitignore │ ├── GNUmakefile │ ├── README │ ├── __init__.py │ ├── __init__.pyc │ ├── app │ │ ├── hist.c │ │ ├── kmeans.c │ │ ├── linear_regression.c │ │ ├── matrix_mult.c │ │ ├── pca.c │ │ ├── string_match.c │ │ ├── wc.c │ │ ├── wr.c │ │ └── wrmem.c │ ├── format.pl │ ├── lib │ │ ├── Makefrag │ │ ├── appendbktmgr.c │ │ ├── apphelper.c │ │ ├── apphelper.h │ │ ├── arraybktmgr.c │ │ ├── bench.h │ │ ├── bsearch.c │ │ ├── bsearch.h │ │ ├── btreebktmgr.c │ │ ├── cpumap.c │ │ ├── cpumap.h │ │ ├── defsplitter.c │ │ ├── estimation.c │ │ ├── estimation.h │ │ ├── ibs.c │ │ ├── ibs.h │ │ ├── keyval_array.c │ │ ├── keyvals_array.c │ │ ├── keyvals_btree.c │ │ ├── keyvals_len_array.c │ │ ├── kvstore.c │ │ ├── kvstore.h │ │ ├── mbktsmgr.h │ │ ├── mergesort.c │ │ ├── mergesort.h │ │ ├── mr-conf.h │ │ ├── mr-sched.c │ │ ├── mr-sched.h │ │ ├── mr-types.h │ │ ├── pchandler.h │ │ ├── perf.c │ │ ├── perf.h │ │ ├── platform.c │ │ ├── platform.h │ │ ├── pmcreg.h │ │ ├── presplitter.c │ │ ├── presplitter.h │ │ ├── profile.c │ │ ├── profile.h │ │ ├── psrs.c │ │ ├── psrs.h │ │ ├── pthreadpool.c │ │ ├── rbktsmgr.c │ │ ├── rbktsmgr.h │ │ ├── reduce.c │ │ ├── reduce.h │ │ ├── thread.h │ │ ├── value_helper.c │ │ └── value_helper.h │ ├── libstreamflow.so │ ├── mergedep.pl │ ├── micro │ │ ├── Makefrag │ │ ├── config.c │ │ ├── fault.c │ │ ├── memcpy_local.c │ │ ├── memcpy_scan.c │ │ ├── memmultiread_remote.c │ │ ├── memmultiread_remote2.c │ │ ├── memread.c │ │ ├── memread_dct0.c │ │ ├── memread_remote.c │ │ ├── memread_scan.c │ │ ├── memwrite.c │ │ └── sf_sample.c │ ├── parser.py │ ├── pkg │ │ └── streamflow │ │ │ ├── Makefile │ │ │ ├── Makefrag │ │ │ ├── README │ │ │ ├── include-ia64 │ │ │ ├── atomic.h │ │ │ ├── bitops.h │ │ │ └── queue.h │ │ │ ├── include-ppc64 │ │ │ ├── atomic.h │ │ │ ├── bitops.h │ │ │ └── queue.h │ │ │ ├── include-x86 │ │ │ ├── atomic.h │ │ │ ├── bitops.h │ │ │ └── queue.h │ │ │ ├── include-x86_64 │ │ │ ├── atomic.h │ │ │ ├── bitops.h │ │ │ └── queue.h │ │ │ ├── lock.h │ │ │ ├── malloc_new.cpp │ │ │ ├── override.c │ │ │ ├── streamflow.c │ │ │ ├── streamflow.h │ │ │ ├── ummap.c │ │ │ └── ummap.h │ ├── test │ │ ├── comsubs.pl │ │ └── test.pl │ └── tools │ │ ├── double_bmp.pl │ │ ├── gen.c │ │ ├── merge.c │ │ ├── mergedir.c │ │ ├── mount.sh │ │ └── umount.sh ├── will-it-scale │ ├── .gitignore │ ├── .travis.yml │ ├── Makefile │ ├── README.md │ ├── main.c │ ├── plot.js │ ├── postprocess.py │ ├── runscript.sh │ ├── runtest.py │ └── tests │ │ ├── brk1.c │ │ ├── context_switch1.c │ │ ├── dup1.c │ │ ├── eventfd1.c │ │ ├── fallocate1.c │ │ ├── fallocate2.c │ │ ├── futex1.c │ │ ├── futex2.c │ │ ├── futex3.c │ │ ├── futex4.c │ │ ├── getppid1.c │ │ ├── lock1.c │ │ ├── lock2.c │ │ ├── lseek1.c │ │ ├── lseek2.c │ │ ├── malloc1.c │ │ ├── malloc2.c │ │ ├── mmap1.c │ │ ├── mmap2.c │ │ ├── open1.c │ │ ├── open2.c │ │ ├── open3.c │ │ ├── page_fault1.c │ │ ├── page_fault2.c │ │ ├── page_fault3.c │ │ ├── pipe1.c │ │ ├── poll1.c │ │ ├── poll2.c │ │ ├── posix_semaphore1.c │ │ ├── pread1.c │ │ ├── pread2.c │ │ ├── pread3.c │ │ ├── pthread_mutex1.c │ │ ├── pthread_mutex2.c │ │ ├── pthread_mutex3.c │ │ ├── pthread_mutex4.c │ │ ├── pwrite1.c │ │ ├── pwrite2.c │ │ ├── pwrite3.c │ │ ├── read1.c │ │ ├── read2.c │ │ ├── read3.c │ │ ├── read4.c │ │ ├── readseek1.c │ │ ├── readseek2.c │ │ ├── readseek3.c │ │ ├── sched_yield.c │ │ ├── signal1.c │ │ ├── tlb_flush1.c │ │ ├── tlb_flush2.c │ │ ├── tlb_flush3.c │ │ ├── unix1.c │ │ ├── unlink1.c │ │ ├── unlink2.c │ │ ├── write1.c │ │ ├── writeseek1.c │ │ ├── writeseek2.c │ │ └── writeseek3.c └── xDir-rename │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── benchmark.c │ ├── plot.py │ └── run_bench.py ├── scripts ├── .gitignore ├── change-cpu-freq.sh ├── config-cna ├── config-syncord ├── get-pip.py ├── pin-vcpu.py ├── qmp.py ├── run-vm.sh └── uninstall_policy.sh └── src ├── concord ├── .gitignore ├── __init__.py ├── bpf │ ├── Makefile │ ├── bpf.c │ ├── bpf.h │ ├── bpf_load.c │ ├── bpf_load.h │ ├── include │ │ ├── bpf_helpers.h │ │ └── linux │ │ │ └── types.h │ ├── libbpf.h │ ├── libbpf_internal.h │ ├── perf-sys.h │ ├── skeleton_kern.c │ └── skeleton_user.c ├── bpfgen.py ├── concord.py ├── config.py ├── instance.py ├── list_APIs.h ├── livepatch.py ├── patch │ ├── pre_patch_callback.patch │ ├── rwsem_custom_cmp_func.patch │ └── single_lock.patch ├── patches │ ├── amp-mwrl.patch │ ├── amp.patch │ ├── bravo.patch │ ├── lockstat.patch │ ├── numa-grouping-cna.patch │ ├── numa-grouping.patch │ ├── numa-scl.patch │ └── scl.patch ├── policy │ ├── amp │ │ ├── amp.h │ │ └── amp_cont_lock.pfile │ ├── bravo │ │ ├── bravo.h │ │ ├── bravo_acqed_lock.pfile │ │ ├── bravo_bypass_acq_lock.pfile │ │ └── bravo_bypass_release_lock.pfile │ ├── lock_policy.h │ ├── lockstat │ │ ├── lockstat.h │ │ ├── lockstat.map │ │ ├── lockstat_lock_acquired.pfile │ │ ├── lockstat_lock_to_release.pfile │ │ └── lockstat_to_enter_slow_path.pfile │ ├── numa-grouping-cna │ │ ├── numa-grouping-cna.h │ │ └── numa-grouping-cna.pfile │ ├── numa-grouping │ │ ├── numa-grouping.h │ │ └── numa-grouping.pfile │ ├── numa-scl │ │ ├── scl.h │ │ ├── scl_acqed_lock.pfile │ │ ├── scl_cmp.pfile │ │ ├── scl_cont_lock.pfile │ │ └── scl_release_lock.pfile │ └── scl │ │ ├── scl.h │ │ ├── scl_acqed_lock.pfile │ │ ├── scl_cmp.pfile │ │ ├── scl_cont_lock.pfile │ │ └── scl_release_lock.pfile ├── requirements.txt └── util.py └── kpatch ├── .gitignore ├── .gitmodules ├── .travis.yml ├── COPYING ├── Makefile ├── Makefile.inc ├── README.md ├── contrib ├── Makefile ├── kpatch.conf ├── kpatch.service └── kpatch.spec ├── doc └── patch-author-guide.md ├── examples ├── tcp_cubic-better-follow-cubic-curve-converted.patch └── tcp_cubic-better-follow-cubic-curve-original.patch ├── kmod ├── Makefile ├── core │ ├── Makefile │ ├── core.c │ ├── kpatch.h │ └── shadow.c └── patch │ ├── Makefile │ ├── kpatch-macros.h │ ├── kpatch-patch-hook.c │ ├── kpatch-patch.h │ ├── kpatch.h │ ├── kpatch.lds │ ├── kpatch.lds.S │ ├── livepatch-patch-hook.c │ ├── modules.order │ └── patch-hook.c ├── kpatch-build ├── Makefile ├── create-diff-object.c ├── create-klp-module.c ├── create-kpatch-module.c ├── gcc-plugins │ ├── gcc-common.h │ ├── gcc-generate-rtl-pass.h │ └── ppc64le-plugin.c ├── insn │ ├── asm │ │ ├── inat.h │ │ ├── inat_types.h │ │ └── insn.h │ ├── inat-tables.c │ ├── inat.c │ └── insn.c ├── kpatch-build ├── kpatch-elf.c ├── kpatch-elf.h ├── kpatch-gcc ├── kpatch-intermediate.h ├── kpatch.h ├── list.h ├── log.h ├── lookup.c └── lookup.h ├── kpatch ├── Makefile └── kpatch ├── man ├── Makefile ├── kpatch-build.1 └── kpatch.1 └── test ├── difftree.sh ├── integration ├── .gitignore ├── Makefile ├── centos-7 ├── common │ └── multiple.template ├── fedora-27 │ ├── README │ ├── data-new-LOADED.test │ ├── data-new.patch │ ├── gcc-static-local-var-6.patch │ ├── macro-callbacks.patch │ ├── meminfo-cmdline-rebuild-SLOW-LOADED.test.disabled │ ├── meminfo-cmdline-rebuild-SLOW.patch.disabled │ ├── module-call-external.patch │ ├── module-shadow.patch.disabled │ ├── multiple.test │ ├── new-function.patch │ ├── new-globals.patch │ ├── remote-setup │ ├── shadow-newpid-LOADED.test │ ├── shadow-newpid.patch.disabled │ └── warn-detect-FAIL.patch ├── kpatch-test ├── lib.sh ├── rebase-patches ├── rhel-7.4 │ ├── bug-table-section.patch │ ├── cmdline-string-LOADED.test │ ├── cmdline-string.patch │ ├── data-new-LOADED.test │ ├── data-new.patch │ ├── data-read-mostly.patch.disabled │ ├── fixup-section.patch │ ├── gcc-constprop.patch │ ├── gcc-isra.patch │ ├── gcc-mangled-3.patch │ ├── gcc-static-local-var-2.patch │ ├── gcc-static-local-var-3.patch │ ├── gcc-static-local-var-4.patch │ ├── gcc-static-local-var-4.test │ ├── gcc-static-local-var-5.patch │ ├── gcc-static-local-var-6.patch │ ├── gcc-static-local-var.patch │ ├── macro-callbacks.patch │ ├── macro-printk.patch │ ├── meminfo-init-FAIL.patch │ ├── meminfo-init2-FAIL.patch │ ├── meminfo-string-LOADED.test │ ├── meminfo-string.patch │ ├── module-call-external.patch │ ├── module-kvm-fixup.patch │ ├── module-shadow.patch │ ├── multiple.test │ ├── new-function.patch │ ├── new-globals.patch │ ├── parainstructions-section.patch │ ├── replace-section-references.patch │ ├── shadow-newpid-LOADED.test │ ├── shadow-newpid.patch │ ├── smp-locks-section.patch │ ├── special-static-2.patch │ ├── special-static.patch │ ├── tracepoints-section.patch │ └── warn-detect-FAIL.patch ├── rhel-7.5 │ ├── bug-table-section.patch │ ├── cmdline-string-LOADED.test │ ├── cmdline-string.patch │ ├── data-new-LOADED.test │ ├── data-new.patch │ ├── data-read-mostly.patch.disabled │ ├── fixup-section.patch │ ├── gcc-constprop.patch │ ├── gcc-isra.patch │ ├── gcc-mangled-3.patch │ ├── gcc-static-local-var-2.patch │ ├── gcc-static-local-var-3.patch │ ├── gcc-static-local-var-4.patch │ ├── gcc-static-local-var-4.test │ ├── gcc-static-local-var-5.patch │ ├── gcc-static-local-var-6.patch │ ├── gcc-static-local-var.patch │ ├── macro-callbacks.patch │ ├── macro-printk.patch │ ├── meminfo-init-FAIL.patch │ ├── meminfo-init2-FAIL.patch │ ├── meminfo-string-LOADED.test │ ├── meminfo-string.patch │ ├── module-call-external.patch │ ├── module-kvm-fixup.patch │ ├── module-shadow.patch.disabled │ ├── multiple.test │ ├── new-function.patch │ ├── new-globals.patch │ ├── parainstructions-section.patch │ ├── replace-section-references.patch │ ├── shadow-newpid-LOADED.test │ ├── shadow-newpid.patch │ ├── smp-locks-section.patch │ ├── special-static-2.patch │ ├── special-static.patch │ ├── tracepoints-section.patch │ └── warn-detect-FAIL.patch ├── rhel-7.6 │ ├── bug-table-section.patch │ ├── cmdline-string-LOADED.test │ ├── cmdline-string.patch │ ├── data-new-LOADED.test │ ├── data-new.patch │ ├── data-read-mostly.patch.disabled │ ├── fixup-section.patch │ ├── gcc-constprop.patch.disabled │ ├── gcc-isra.patch │ ├── gcc-mangled-3.patch │ ├── gcc-static-local-var-2.patch │ ├── gcc-static-local-var-3.patch │ ├── gcc-static-local-var-4.patch │ ├── gcc-static-local-var-4.test │ ├── gcc-static-local-var-5.patch │ ├── gcc-static-local-var-6.patch │ ├── macro-callbacks.patch │ ├── macro-printk.patch │ ├── meminfo-init-FAIL.patch │ ├── meminfo-init2-FAIL.patch │ ├── meminfo-string-LOADED.test │ ├── meminfo-string.patch │ ├── module-call-external.patch │ ├── multiple.test │ ├── new-function.patch │ ├── new-globals.patch │ ├── parainstructions-section.patch │ ├── shadow-newpid-LOADED.test │ ├── shadow-newpid.patch │ ├── smp-locks-section.patch │ ├── special-static.patch │ ├── tracepoints-section.patch │ └── warn-detect-FAIL.patch ├── rhel-7.7 │ ├── bug-table-section.patch │ ├── cmdline-string-LOADED.test │ ├── cmdline-string.patch │ ├── data-new-LOADED.test │ ├── data-new.patch │ ├── data-read-mostly.patch.disabled │ ├── fixup-section.patch │ ├── gcc-constprop.patch.disabled │ ├── gcc-isra.patch │ ├── gcc-mangled-3.patch │ ├── gcc-static-local-var-2.patch │ ├── gcc-static-local-var-3.patch │ ├── gcc-static-local-var-4.patch │ ├── gcc-static-local-var-4.test │ ├── gcc-static-local-var-5.patch │ ├── gcc-static-local-var-6.patch │ ├── macro-callbacks.patch │ ├── macro-printk.patch │ ├── meminfo-init-FAIL.patch │ ├── meminfo-init2-FAIL.patch │ ├── meminfo-string-LOADED.test │ ├── meminfo-string.patch │ ├── module-call-external.patch │ ├── multiple.test │ ├── new-function.patch │ ├── new-globals.patch │ ├── parainstructions-section.patch │ ├── shadow-newpid-LOADED.test │ ├── shadow-newpid.patch │ ├── smp-locks-section.patch │ ├── special-static.patch │ ├── tracepoints-section.patch │ └── warn-detect-FAIL.patch ├── rhel-7.8 │ ├── bug-table-section.patch │ ├── cmdline-string-LOADED.test │ ├── cmdline-string.patch │ ├── data-new-LOADED.test │ ├── data-new.patch │ ├── data-read-mostly.patch.disabled │ ├── fixup-section.patch │ ├── gcc-constprop.patch.disabled │ ├── gcc-isra.patch │ ├── gcc-mangled-3.patch │ ├── gcc-static-local-var-2.patch │ ├── gcc-static-local-var-3.patch │ ├── gcc-static-local-var-4.patch │ ├── gcc-static-local-var-4.test │ ├── gcc-static-local-var-5.patch │ ├── gcc-static-local-var-6.patch │ ├── macro-callbacks.patch │ ├── macro-printk.patch │ ├── meminfo-init-FAIL.patch │ ├── meminfo-init2-FAIL.patch │ ├── meminfo-string-LOADED.test │ ├── meminfo-string.patch │ ├── module-call-external.patch │ ├── multiple.test │ ├── new-function.patch │ ├── new-globals.patch │ ├── parainstructions-section.patch │ ├── shadow-newpid-LOADED.test │ ├── shadow-newpid.patch │ ├── smp-locks-section.patch │ ├── special-static.patch │ ├── tracepoints-section.patch │ └── warn-detect-FAIL.patch ├── rhel-8.0 │ ├── README │ ├── bug-table-section.patch │ ├── cmdline-string-LOADED.test │ ├── cmdline-string.patch │ ├── data-new-LOADED.test │ ├── data-new.patch │ ├── data-read-mostly.patch.disabled │ ├── fixup-section.patch │ ├── gcc-constprop.patch.disabled │ ├── gcc-isra.patch │ ├── gcc-mangled-3.patch │ ├── gcc-static-local-var-2.patch │ ├── gcc-static-local-var-3.patch │ ├── gcc-static-local-var-4.patch.disabled │ ├── gcc-static-local-var-4.test │ ├── gcc-static-local-var-5.patch │ ├── gcc-static-local-var-6.patch │ ├── macro-callbacks.patch │ ├── macro-printk.patch.disabled │ ├── meminfo-init-FAIL.patch │ ├── meminfo-init2-FAIL.patch │ ├── meminfo-string-LOADED.test │ ├── meminfo-string.patch │ ├── module-call-external.patch │ ├── multiple.test │ ├── new-function.patch │ ├── new-globals.patch │ ├── parainstructions-section.patch │ ├── shadow-newpid-LOADED.test │ ├── shadow-newpid.patch.disabled │ ├── smp-locks-section.patch │ ├── special-static.patch │ ├── tracepoints-section.patch │ └── warn-detect-FAIL.patch ├── rhel-8.1 │ ├── bug-table-section.patch │ ├── cmdline-string-LOADED.test │ ├── cmdline-string.patch │ ├── data-new-LOADED.test │ ├── data-new.patch │ ├── data-read-mostly.patch.disabled │ ├── fixup-section.patch │ ├── gcc-constprop.patch.disabled │ ├── gcc-isra.patch │ ├── gcc-mangled-3.patch │ ├── gcc-static-local-var-2.patch │ ├── gcc-static-local-var-3.patch │ ├── gcc-static-local-var-4.patch.disabled │ ├── gcc-static-local-var-4.test.disabled │ ├── gcc-static-local-var-5.patch │ ├── gcc-static-local-var-6.patch │ ├── macro-callbacks.patch │ ├── macro-printk.patch.disabled │ ├── meminfo-init-FAIL.patch │ ├── meminfo-init2-FAIL.patch │ ├── meminfo-string-LOADED.test │ ├── meminfo-string.patch │ ├── module-LOADED.test │ ├── module.patch │ ├── multiple.test │ ├── new-function.patch │ ├── new-globals.patch │ ├── parainstructions-section.patch │ ├── shadow-newpid-LOADED.test.disabled │ ├── shadow-newpid.patch.disabled │ ├── smp-locks-section.patch │ ├── special-static.patch.disabled │ ├── tracepoints-section.patch │ └── warn-detect-FAIL.patch ├── rhel-8.2 │ ├── bug-table-section.patch │ ├── cmdline-string-LOADED.test │ ├── cmdline-string.patch │ ├── data-new-LOADED.test │ ├── data-new.patch │ ├── data-read-mostly.patch.disabled │ ├── fixup-section.patch │ ├── gcc-constprop.patch │ ├── gcc-isra.patch │ ├── gcc-mangled-3.patch │ ├── gcc-static-local-var-2.patch │ ├── gcc-static-local-var-3.patch │ ├── gcc-static-local-var-4.patch.disabled │ ├── gcc-static-local-var-4.test.disabled │ ├── gcc-static-local-var-5.patch │ ├── gcc-static-local-var-6.patch │ ├── macro-callbacks.patch │ ├── macro-printk.patch │ ├── meminfo-init-FAIL.patch │ ├── meminfo-init2-FAIL.patch │ ├── meminfo-string-LOADED.test │ ├── meminfo-string.patch │ ├── module-LOADED.test │ ├── module.patch │ ├── multiple.test │ ├── new-function.patch │ ├── new-globals.patch │ ├── parainstructions-section.patch │ ├── shadow-newpid-LOADED.test.disabled │ ├── shadow-newpid.patch.disabled │ ├── smp-locks-section.patch │ ├── special-static.patch.disabled │ ├── tracepoints-section.patch │ └── warn-detect-FAIL.patch ├── test-vagrant ├── ubuntu-16.04 │ ├── README │ ├── bug-table-section.patch │ ├── cmdline-string-LOADED.test │ ├── cmdline-string.patch │ ├── data-new-LOADED.test │ ├── data-new.patch │ ├── data-read-mostly.patch │ ├── fixup-section.patch │ ├── gcc-constprop.patch │ ├── gcc-isra.patch │ ├── gcc-mangled-3.patch.disabled │ ├── gcc-static-local-var-2.patch │ ├── gcc-static-local-var-3.patch │ ├── gcc-static-local-var-4.patch │ ├── gcc-static-local-var-4.test │ ├── gcc-static-local-var-5.patch │ ├── gcc-static-local-var-6.patch │ ├── gcc-static-local-var.patch │ ├── macro-callbacks.patch │ ├── macro-printk.patch │ ├── meminfo-cmdline-rebuild-SLOW-LOADED.test.disabled │ ├── meminfo-cmdline-rebuild-SLOW.patch.disabled │ ├── meminfo-init-FAIL.patch │ ├── meminfo-init2-FAIL.patch │ ├── meminfo-string-LOADED.test │ ├── meminfo-string.patch │ ├── module-call-external.patch.disable │ ├── module-kvm-fixup.patch │ ├── multiple.test │ ├── new-function.patch │ ├── new-globals.patch │ ├── parainstructions-section.patch │ ├── replace-section-references.patch │ ├── smp-locks-section.patch │ ├── special-static-2.patch │ ├── special-static.patch │ ├── tracepoints-section.patch │ └── warn-detect-FAIL.patch └── vm-integration-run ├── test-functions.sh └── unit ├── Makefile └── Makefile.include /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/.editorconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/fxmark/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/.gitignore -------------------------------------------------------------------------------- /benchmarks/fxmark/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/LICENSE -------------------------------------------------------------------------------- /benchmarks/fxmark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/Makefile -------------------------------------------------------------------------------- /benchmarks/fxmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/README.md -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/cpu-sequences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/cpu-sequences -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/cpubars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/cpubars -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/cpuinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/cpuinfo.py -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/dbench-workloads/client.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/dbench-workloads/client.txt -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/dbench-workloads/iscsi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/dbench-workloads/iscsi.txt -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/dbench-workloads/iscsi/register_twice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/dbench-workloads/iscsi/register_twice.txt -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/dbench-workloads/iscsi/release_parallel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/dbench-workloads/iscsi/release_parallel.sh -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/dbench-workloads/iscsi/release_twice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/dbench-workloads/iscsi/release_twice.txt -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/dbench-workloads/iscsi/repeat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/dbench-workloads/iscsi/repeat.txt -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/dbench-workloads/iscsi/reserve_parallel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/dbench-workloads/iscsi/reserve_parallel.sh -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/dbench-workloads/iscsi/reserve_twice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/dbench-workloads/iscsi/reserve_twice.txt -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/dbench-workloads/nfs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/dbench-workloads/nfs.txt -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/dbench-workloads/nfs_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/dbench-workloads/nfs_2.txt -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/dbench-workloads/nfs_3.load: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/dbench-workloads/nfs_3.load -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/dbench-workloads/scsi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/dbench-workloads/scsi.txt -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/dbench-workloads/smb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/dbench-workloads/smb.txt -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/dbench-workloads/smb_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/dbench-workloads/smb_1.txt -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/dbench-workloads/smb_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/dbench-workloads/smb_2.txt -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/dbench-workloads/smb_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/dbench-workloads/smb_3.txt -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/drop-caches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/drop-caches -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/compflow_demo.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/compflow_demo.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/copyfiles.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/copyfiles.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/createfiles.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/createfiles.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/filemicro_create.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/filemicro_create.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/filemicro_createrand.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/filemicro_createrand.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/filemicro_delete.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/filemicro_delete.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/filemicro_rread.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/filemicro_rread.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/filemicro_rwrite.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/filemicro_rwrite.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/filemicro_seqread.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/filemicro_seqread.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/filemicro_seqwrite.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/filemicro_seqwrite.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/filemicro_statfile.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/filemicro_statfile.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/filemicro_writefsync.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/filemicro_writefsync.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/fileserver.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/fileserver.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/fivestreamread.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/fivestreamread.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/fivestreamreaddirect.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/fivestreamreaddirect.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/fivestreamwrite.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/fivestreamwrite.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/listdirs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/listdirs.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/makedirs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/makedirs.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/mongo.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/mongo.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/netsfs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/netsfs.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/networkfs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/networkfs.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/oltp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/oltp.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/openfiles.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/openfiles.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/randomfileaccess.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/randomfileaccess.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/randomread.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/randomread.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/randomrw.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/randomrw.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/randomwrite.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/randomwrite.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/ratelimcopyfiles.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/ratelimcopyfiles.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/removedirs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/removedirs.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/singlestreamread.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/singlestreamread.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/singlestreamwrite.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/singlestreamwrite.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/tpcso.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/tpcso.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/varmail.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/varmail.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/videoserver.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/videoserver.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/webproxy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/webproxy.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/filebench-workloads/webserver.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/filebench-workloads/webserver.f -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/fs_locking_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/fs_locking_table.py -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/gen_corepolicy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/gen_corepolicy -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/grubonce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/grubonce -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/install-fs-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/install-fs-tools.sh -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/kibt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/kibt.py -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/list-cpus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/list-cpus -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/parser.py -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/perfmon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/perfmon.py -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/perfstdio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/perfstdio.py -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/plotter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/plotter.py -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/run-dbench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/run-dbench.py -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/run-filebench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/run-filebench.py -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/run-fxmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/run-fxmark.py -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/set-cpus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/set-cpus -------------------------------------------------------------------------------- /benchmarks/fxmark/bin/turnoff-aslr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/bin/turnoff-aslr -------------------------------------------------------------------------------- /benchmarks/fxmark/scripts/create_external_log_xfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/scripts/create_external_log_xfs.sh -------------------------------------------------------------------------------- /benchmarks/fxmark/scripts/create_journal_ext4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/scripts/create_journal_ext4.sh -------------------------------------------------------------------------------- /benchmarks/fxmark/src/DRBH.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/src/DRBH.c -------------------------------------------------------------------------------- /benchmarks/fxmark/src/DRBH_bg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/src/DRBH_bg.c -------------------------------------------------------------------------------- /benchmarks/fxmark/src/DRBL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/src/DRBL.c -------------------------------------------------------------------------------- /benchmarks/fxmark/src/DRBL_bg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/src/DRBL_bg.c -------------------------------------------------------------------------------- /benchmarks/fxmark/src/DRBM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/src/DRBM.c -------------------------------------------------------------------------------- /benchmarks/fxmark/src/DRBM_bg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/src/DRBM_bg.c -------------------------------------------------------------------------------- /benchmarks/fxmark/src/DWAL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/src/DWAL.c -------------------------------------------------------------------------------- /benchmarks/fxmark/src/DWOL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/src/DWOL.c -------------------------------------------------------------------------------- /benchmarks/fxmark/src/DWOM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/src/DWOM.c -------------------------------------------------------------------------------- /benchmarks/fxmark/src/DWSL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/src/DWSL.c -------------------------------------------------------------------------------- /benchmarks/fxmark/src/DWTL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/src/DWTL.c -------------------------------------------------------------------------------- /benchmarks/fxmark/src/MRDL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/src/MRDL.c -------------------------------------------------------------------------------- /benchmarks/fxmark/src/MRDL_bg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/src/MRDL_bg.c -------------------------------------------------------------------------------- /benchmarks/fxmark/src/MRDM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/src/MRDM.c -------------------------------------------------------------------------------- /benchmarks/fxmark/src/MRDM_bg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/src/MRDM_bg.c -------------------------------------------------------------------------------- /benchmarks/fxmark/src/MRPH.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/src/MRPH.c -------------------------------------------------------------------------------- /benchmarks/fxmark/src/MRPL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/src/MRPL.c -------------------------------------------------------------------------------- /benchmarks/fxmark/src/MRPM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/src/MRPM.c -------------------------------------------------------------------------------- /benchmarks/fxmark/src/MRPM_bg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/src/MRPM_bg.c -------------------------------------------------------------------------------- /benchmarks/fxmark/src/MWCL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/src/MWCL.c -------------------------------------------------------------------------------- /benchmarks/fxmark/src/MWCM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/src/MWCM.c -------------------------------------------------------------------------------- /benchmarks/fxmark/src/MWRL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/src/MWRL.c -------------------------------------------------------------------------------- /benchmarks/fxmark/src/MWRM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/src/MWRM.c -------------------------------------------------------------------------------- /benchmarks/fxmark/src/MWUL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/src/MWUL.c -------------------------------------------------------------------------------- /benchmarks/fxmark/src/MWUM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/src/MWUM.c -------------------------------------------------------------------------------- /benchmarks/fxmark/src/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/src/bench.c -------------------------------------------------------------------------------- /benchmarks/fxmark/src/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/src/bench.h -------------------------------------------------------------------------------- /benchmarks/fxmark/src/fxmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/src/fxmark.c -------------------------------------------------------------------------------- /benchmarks/fxmark/src/fxmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/src/fxmark.h -------------------------------------------------------------------------------- /benchmarks/fxmark/src/rdtsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/src/rdtsc.c -------------------------------------------------------------------------------- /benchmarks/fxmark/src/rdtsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/src/rdtsc.h -------------------------------------------------------------------------------- /benchmarks/fxmark/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/src/util.c -------------------------------------------------------------------------------- /benchmarks/fxmark/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/fxmark/src/util.h -------------------------------------------------------------------------------- /benchmarks/leveldb/bin/drop-caches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/bin/drop-caches -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/.gitignore -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/.travis.yml -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/AUTHORS -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/CONTRIBUTING.md -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/LICENSE -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/Makefile -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/NEWS -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/README.md -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/TODO -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/build_detect_platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/build_detect_platform -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/autocompact_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/autocompact_test.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/builder.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/builder.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/c.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/c_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/c_test.c -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/corruption_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/corruption_test.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/db_bench.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/db_bench.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/db_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/db_impl.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/db_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/db_impl.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/db_iter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/db_iter.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/db_iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/db_iter.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/db_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/db_test.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/dbformat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/dbformat.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/dbformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/dbformat.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/dbformat_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/dbformat_test.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/dumpfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/dumpfile.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/fault_injection_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/fault_injection_test.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/filename.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/filename.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/filename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/filename.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/filename_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/filename_test.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/leveldbutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/leveldbutil.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/log_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/log_format.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/log_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/log_reader.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/log_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/log_reader.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/log_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/log_test.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/log_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/log_writer.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/log_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/log_writer.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/memtable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/memtable.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/memtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/memtable.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/recovery_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/recovery_test.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/repair.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/repair.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/skiplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/skiplist.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/skiplist_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/skiplist_test.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/snapshot.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/table_cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/table_cache.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/table_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/table_cache.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/version_edit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/version_edit.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/version_edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/version_edit.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/version_edit_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/version_edit_test.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/version_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/version_set.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/version_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/version_set.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/version_set_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/version_set_test.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/write_batch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/write_batch.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/write_batch_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/write_batch_internal.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/db/write_batch_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/db/write_batch_test.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/doc/bench/db_bench_sqlite3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/doc/bench/db_bench_sqlite3.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/doc/bench/db_bench_tree_db.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/doc/bench/db_bench_tree_db.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/doc/benchmark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/doc/benchmark.html -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/doc/impl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/doc/impl.md -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/doc/index.md -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/doc/log_format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/doc/log_format.md -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/doc/table_format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/doc/table_format.md -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/helpers/memenv/memenv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/helpers/memenv/memenv.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/helpers/memenv/memenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/helpers/memenv/memenv.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/helpers/memenv/memenv_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/helpers/memenv/memenv_test.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/include/leveldb/c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/include/leveldb/c.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/include/leveldb/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/include/leveldb/cache.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/include/leveldb/comparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/include/leveldb/comparator.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/include/leveldb/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/include/leveldb/db.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/include/leveldb/dumpfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/include/leveldb/dumpfile.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/include/leveldb/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/include/leveldb/env.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/include/leveldb/filter_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/include/leveldb/filter_policy.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/include/leveldb/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/include/leveldb/iterator.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/include/leveldb/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/include/leveldb/options.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/include/leveldb/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/include/leveldb/slice.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/include/leveldb/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/include/leveldb/status.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/include/leveldb/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/include/leveldb/table.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/include/leveldb/table_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/include/leveldb/table_builder.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/include/leveldb/write_batch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/include/leveldb/write_batch.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/issues/issue178_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/issues/issue178_test.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/issues/issue200_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/issues/issue200_test.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/port/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/port/README -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/port/atomic_pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/port/atomic_pointer.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/port/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/port/port.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/port/port_example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/port/port_example.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/port/port_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/port/port_posix.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/port/port_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/port/port_posix.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/port/port_posix_sse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/port/port_posix_sse.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/port/thread_annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/port/thread_annotations.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/port/win/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/port/win/stdint.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/table/block.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/table/block.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/table/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/table/block.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/table/block_builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/table/block_builder.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/table/block_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/table/block_builder.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/table/filter_block.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/table/filter_block.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/table/filter_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/table/filter_block.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/table/filter_block_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/table/filter_block_test.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/table/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/table/format.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/table/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/table/format.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/table/iterator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/table/iterator.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/table/iterator_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/table/iterator_wrapper.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/table/merger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/table/merger.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/table/merger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/table/merger.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/table/table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/table/table.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/table/table_builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/table/table_builder.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/table/table_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/table/table_test.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/table/two_level_iterator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/table/two_level_iterator.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/table/two_level_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/table/two_level_iterator.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/arena.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/arena.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/arena.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/arena_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/arena_test.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/bloom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/bloom.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/bloom_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/bloom_test.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/cache.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/cache_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/cache_test.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/coding.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/coding.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/coding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/coding.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/coding_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/coding_test.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/comparator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/comparator.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/crc32c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/crc32c.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/crc32c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/crc32c.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/crc32c_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/crc32c_test.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/env.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/env.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/env_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/env_posix.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/env_posix_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/env_posix_test.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/env_posix_test_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/env_posix_test_helper.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/env_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/env_test.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/filter_policy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/filter_policy.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/hash.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/hash.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/hash_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/hash_test.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/histogram.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/histogram.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/histogram.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/logging.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/logging.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/mutexlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/mutexlock.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/options.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/posix_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/posix_logger.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/random.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/status.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/status.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/testharness.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/testharness.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/testharness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/testharness.h -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/testutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/testutil.cc -------------------------------------------------------------------------------- /benchmarks/leveldb/leveldb-1.20/util/testutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/leveldb-1.20/util/testutil.h -------------------------------------------------------------------------------- /benchmarks/leveldb/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/plot.py -------------------------------------------------------------------------------- /benchmarks/leveldb/run_db_bench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/leveldb/run_db_bench.sh -------------------------------------------------------------------------------- /benchmarks/lockstat/get-lockstat/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | get_bpflockstat 3 | -------------------------------------------------------------------------------- /benchmarks/lockstat/get-lockstat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/lockstat/get-lockstat/Makefile -------------------------------------------------------------------------------- /benchmarks/lockstat/get-lockstat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/lockstat/get-lockstat/README.md -------------------------------------------------------------------------------- /benchmarks/lockstat/get-lockstat/bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/lockstat/get-lockstat/bpf.c -------------------------------------------------------------------------------- /benchmarks/lockstat/get-lockstat/bpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/lockstat/get-lockstat/bpf.h -------------------------------------------------------------------------------- /benchmarks/lockstat/get-lockstat/bpf_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/lockstat/get-lockstat/bpf_load.c -------------------------------------------------------------------------------- /benchmarks/lockstat/get-lockstat/bpf_load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/lockstat/get-lockstat/bpf_load.h -------------------------------------------------------------------------------- /benchmarks/lockstat/get-lockstat/get_bpflockstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/lockstat/get-lockstat/get_bpflockstat.c -------------------------------------------------------------------------------- /benchmarks/lockstat/get-lockstat/include/bpf_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/lockstat/get-lockstat/include/bpf_helpers.h -------------------------------------------------------------------------------- /benchmarks/lockstat/get-lockstat/include/concord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/lockstat/get-lockstat/include/concord.h -------------------------------------------------------------------------------- /benchmarks/lockstat/get-lockstat/include/linux/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/lockstat/get-lockstat/include/linux/types.h -------------------------------------------------------------------------------- /benchmarks/lockstat/get-lockstat/libbpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/lockstat/get-lockstat/libbpf.h -------------------------------------------------------------------------------- /benchmarks/lockstat/get-lockstat/libbpf_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/lockstat/get-lockstat/libbpf_internal.h -------------------------------------------------------------------------------- /benchmarks/lockstat/get-lockstat/perf-sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/lockstat/get-lockstat/perf-sys.h -------------------------------------------------------------------------------- /benchmarks/metis/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/.gitignore -------------------------------------------------------------------------------- /benchmarks/metis/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/GNUmakefile -------------------------------------------------------------------------------- /benchmarks/metis/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/README -------------------------------------------------------------------------------- /benchmarks/metis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/__init__.py -------------------------------------------------------------------------------- /benchmarks/metis/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/__init__.pyc -------------------------------------------------------------------------------- /benchmarks/metis/app/hist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/app/hist.c -------------------------------------------------------------------------------- /benchmarks/metis/app/kmeans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/app/kmeans.c -------------------------------------------------------------------------------- /benchmarks/metis/app/linear_regression.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/app/linear_regression.c -------------------------------------------------------------------------------- /benchmarks/metis/app/matrix_mult.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/app/matrix_mult.c -------------------------------------------------------------------------------- /benchmarks/metis/app/pca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/app/pca.c -------------------------------------------------------------------------------- /benchmarks/metis/app/string_match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/app/string_match.c -------------------------------------------------------------------------------- /benchmarks/metis/app/wc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/app/wc.c -------------------------------------------------------------------------------- /benchmarks/metis/app/wr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/app/wr.c -------------------------------------------------------------------------------- /benchmarks/metis/app/wrmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/app/wrmem.c -------------------------------------------------------------------------------- /benchmarks/metis/format.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/format.pl -------------------------------------------------------------------------------- /benchmarks/metis/lib/Makefrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/Makefrag -------------------------------------------------------------------------------- /benchmarks/metis/lib/appendbktmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/appendbktmgr.c -------------------------------------------------------------------------------- /benchmarks/metis/lib/apphelper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/apphelper.c -------------------------------------------------------------------------------- /benchmarks/metis/lib/apphelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/apphelper.h -------------------------------------------------------------------------------- /benchmarks/metis/lib/arraybktmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/arraybktmgr.c -------------------------------------------------------------------------------- /benchmarks/metis/lib/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/bench.h -------------------------------------------------------------------------------- /benchmarks/metis/lib/bsearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/bsearch.c -------------------------------------------------------------------------------- /benchmarks/metis/lib/bsearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/bsearch.h -------------------------------------------------------------------------------- /benchmarks/metis/lib/btreebktmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/btreebktmgr.c -------------------------------------------------------------------------------- /benchmarks/metis/lib/cpumap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/cpumap.c -------------------------------------------------------------------------------- /benchmarks/metis/lib/cpumap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/cpumap.h -------------------------------------------------------------------------------- /benchmarks/metis/lib/defsplitter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/defsplitter.c -------------------------------------------------------------------------------- /benchmarks/metis/lib/estimation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/estimation.c -------------------------------------------------------------------------------- /benchmarks/metis/lib/estimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/estimation.h -------------------------------------------------------------------------------- /benchmarks/metis/lib/ibs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/ibs.c -------------------------------------------------------------------------------- /benchmarks/metis/lib/ibs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/ibs.h -------------------------------------------------------------------------------- /benchmarks/metis/lib/keyval_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/keyval_array.c -------------------------------------------------------------------------------- /benchmarks/metis/lib/keyvals_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/keyvals_array.c -------------------------------------------------------------------------------- /benchmarks/metis/lib/keyvals_btree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/keyvals_btree.c -------------------------------------------------------------------------------- /benchmarks/metis/lib/keyvals_len_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/keyvals_len_array.c -------------------------------------------------------------------------------- /benchmarks/metis/lib/kvstore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/kvstore.c -------------------------------------------------------------------------------- /benchmarks/metis/lib/kvstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/kvstore.h -------------------------------------------------------------------------------- /benchmarks/metis/lib/mbktsmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/mbktsmgr.h -------------------------------------------------------------------------------- /benchmarks/metis/lib/mergesort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/mergesort.c -------------------------------------------------------------------------------- /benchmarks/metis/lib/mergesort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/mergesort.h -------------------------------------------------------------------------------- /benchmarks/metis/lib/mr-conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/mr-conf.h -------------------------------------------------------------------------------- /benchmarks/metis/lib/mr-sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/mr-sched.c -------------------------------------------------------------------------------- /benchmarks/metis/lib/mr-sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/mr-sched.h -------------------------------------------------------------------------------- /benchmarks/metis/lib/mr-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/mr-types.h -------------------------------------------------------------------------------- /benchmarks/metis/lib/pchandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/pchandler.h -------------------------------------------------------------------------------- /benchmarks/metis/lib/perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/perf.c -------------------------------------------------------------------------------- /benchmarks/metis/lib/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/perf.h -------------------------------------------------------------------------------- /benchmarks/metis/lib/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/platform.c -------------------------------------------------------------------------------- /benchmarks/metis/lib/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/platform.h -------------------------------------------------------------------------------- /benchmarks/metis/lib/pmcreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/pmcreg.h -------------------------------------------------------------------------------- /benchmarks/metis/lib/presplitter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/presplitter.c -------------------------------------------------------------------------------- /benchmarks/metis/lib/presplitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/presplitter.h -------------------------------------------------------------------------------- /benchmarks/metis/lib/profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/profile.c -------------------------------------------------------------------------------- /benchmarks/metis/lib/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/profile.h -------------------------------------------------------------------------------- /benchmarks/metis/lib/psrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/psrs.c -------------------------------------------------------------------------------- /benchmarks/metis/lib/psrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/psrs.h -------------------------------------------------------------------------------- /benchmarks/metis/lib/pthreadpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/pthreadpool.c -------------------------------------------------------------------------------- /benchmarks/metis/lib/rbktsmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/rbktsmgr.c -------------------------------------------------------------------------------- /benchmarks/metis/lib/rbktsmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/rbktsmgr.h -------------------------------------------------------------------------------- /benchmarks/metis/lib/reduce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/reduce.c -------------------------------------------------------------------------------- /benchmarks/metis/lib/reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/reduce.h -------------------------------------------------------------------------------- /benchmarks/metis/lib/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/thread.h -------------------------------------------------------------------------------- /benchmarks/metis/lib/value_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/value_helper.c -------------------------------------------------------------------------------- /benchmarks/metis/lib/value_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/lib/value_helper.h -------------------------------------------------------------------------------- /benchmarks/metis/libstreamflow.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/libstreamflow.so -------------------------------------------------------------------------------- /benchmarks/metis/mergedep.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/mergedep.pl -------------------------------------------------------------------------------- /benchmarks/metis/micro/Makefrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/micro/Makefrag -------------------------------------------------------------------------------- /benchmarks/metis/micro/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/micro/config.c -------------------------------------------------------------------------------- /benchmarks/metis/micro/fault.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/micro/fault.c -------------------------------------------------------------------------------- /benchmarks/metis/micro/memcpy_local.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/micro/memcpy_local.c -------------------------------------------------------------------------------- /benchmarks/metis/micro/memcpy_scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/micro/memcpy_scan.c -------------------------------------------------------------------------------- /benchmarks/metis/micro/memmultiread_remote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/micro/memmultiread_remote.c -------------------------------------------------------------------------------- /benchmarks/metis/micro/memmultiread_remote2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/micro/memmultiread_remote2.c -------------------------------------------------------------------------------- /benchmarks/metis/micro/memread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/micro/memread.c -------------------------------------------------------------------------------- /benchmarks/metis/micro/memread_dct0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/micro/memread_dct0.c -------------------------------------------------------------------------------- /benchmarks/metis/micro/memread_remote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/micro/memread_remote.c -------------------------------------------------------------------------------- /benchmarks/metis/micro/memread_scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/micro/memread_scan.c -------------------------------------------------------------------------------- /benchmarks/metis/micro/memwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/micro/memwrite.c -------------------------------------------------------------------------------- /benchmarks/metis/micro/sf_sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/micro/sf_sample.c -------------------------------------------------------------------------------- /benchmarks/metis/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/parser.py -------------------------------------------------------------------------------- /benchmarks/metis/pkg/streamflow/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/pkg/streamflow/Makefile -------------------------------------------------------------------------------- /benchmarks/metis/pkg/streamflow/Makefrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/pkg/streamflow/Makefrag -------------------------------------------------------------------------------- /benchmarks/metis/pkg/streamflow/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/pkg/streamflow/README -------------------------------------------------------------------------------- /benchmarks/metis/pkg/streamflow/include-ia64/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/pkg/streamflow/include-ia64/atomic.h -------------------------------------------------------------------------------- /benchmarks/metis/pkg/streamflow/include-ia64/bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/pkg/streamflow/include-ia64/bitops.h -------------------------------------------------------------------------------- /benchmarks/metis/pkg/streamflow/include-ia64/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/pkg/streamflow/include-ia64/queue.h -------------------------------------------------------------------------------- /benchmarks/metis/pkg/streamflow/include-ppc64/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/pkg/streamflow/include-ppc64/atomic.h -------------------------------------------------------------------------------- /benchmarks/metis/pkg/streamflow/include-ppc64/bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/pkg/streamflow/include-ppc64/bitops.h -------------------------------------------------------------------------------- /benchmarks/metis/pkg/streamflow/include-ppc64/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/pkg/streamflow/include-ppc64/queue.h -------------------------------------------------------------------------------- /benchmarks/metis/pkg/streamflow/include-x86/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/pkg/streamflow/include-x86/atomic.h -------------------------------------------------------------------------------- /benchmarks/metis/pkg/streamflow/include-x86/bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/pkg/streamflow/include-x86/bitops.h -------------------------------------------------------------------------------- /benchmarks/metis/pkg/streamflow/include-x86/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/pkg/streamflow/include-x86/queue.h -------------------------------------------------------------------------------- /benchmarks/metis/pkg/streamflow/include-x86_64/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/pkg/streamflow/include-x86_64/atomic.h -------------------------------------------------------------------------------- /benchmarks/metis/pkg/streamflow/include-x86_64/bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/pkg/streamflow/include-x86_64/bitops.h -------------------------------------------------------------------------------- /benchmarks/metis/pkg/streamflow/include-x86_64/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/pkg/streamflow/include-x86_64/queue.h -------------------------------------------------------------------------------- /benchmarks/metis/pkg/streamflow/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/pkg/streamflow/lock.h -------------------------------------------------------------------------------- /benchmarks/metis/pkg/streamflow/malloc_new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/pkg/streamflow/malloc_new.cpp -------------------------------------------------------------------------------- /benchmarks/metis/pkg/streamflow/override.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/pkg/streamflow/override.c -------------------------------------------------------------------------------- /benchmarks/metis/pkg/streamflow/streamflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/pkg/streamflow/streamflow.c -------------------------------------------------------------------------------- /benchmarks/metis/pkg/streamflow/streamflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/pkg/streamflow/streamflow.h -------------------------------------------------------------------------------- /benchmarks/metis/pkg/streamflow/ummap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/pkg/streamflow/ummap.c -------------------------------------------------------------------------------- /benchmarks/metis/pkg/streamflow/ummap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/pkg/streamflow/ummap.h -------------------------------------------------------------------------------- /benchmarks/metis/test/comsubs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/test/comsubs.pl -------------------------------------------------------------------------------- /benchmarks/metis/test/test.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/test/test.pl -------------------------------------------------------------------------------- /benchmarks/metis/tools/double_bmp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/tools/double_bmp.pl -------------------------------------------------------------------------------- /benchmarks/metis/tools/gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/tools/gen.c -------------------------------------------------------------------------------- /benchmarks/metis/tools/merge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/tools/merge.c -------------------------------------------------------------------------------- /benchmarks/metis/tools/mergedir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/tools/mergedir.c -------------------------------------------------------------------------------- /benchmarks/metis/tools/mount.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/tools/mount.sh -------------------------------------------------------------------------------- /benchmarks/metis/tools/umount.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/metis/tools/umount.sh -------------------------------------------------------------------------------- /benchmarks/will-it-scale/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/.gitignore -------------------------------------------------------------------------------- /benchmarks/will-it-scale/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/.travis.yml -------------------------------------------------------------------------------- /benchmarks/will-it-scale/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/Makefile -------------------------------------------------------------------------------- /benchmarks/will-it-scale/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/README.md -------------------------------------------------------------------------------- /benchmarks/will-it-scale/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/main.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/plot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/plot.js -------------------------------------------------------------------------------- /benchmarks/will-it-scale/postprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/postprocess.py -------------------------------------------------------------------------------- /benchmarks/will-it-scale/runscript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/runscript.sh -------------------------------------------------------------------------------- /benchmarks/will-it-scale/runtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/runtest.py -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/brk1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/brk1.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/context_switch1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/context_switch1.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/dup1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/dup1.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/eventfd1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/eventfd1.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/fallocate1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/fallocate1.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/fallocate2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/fallocate2.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/futex1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/futex1.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/futex2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/futex2.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/futex3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/futex3.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/futex4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/futex4.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/getppid1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/getppid1.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/lock1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/lock1.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/lock2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/lock2.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/lseek1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/lseek1.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/lseek2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/lseek2.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/malloc1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/malloc1.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/malloc2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/malloc2.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/mmap1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/mmap1.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/mmap2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/mmap2.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/open1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/open1.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/open2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/open2.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/open3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/open3.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/page_fault1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/page_fault1.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/page_fault2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/page_fault2.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/page_fault3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/page_fault3.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/pipe1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/pipe1.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/poll1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/poll1.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/poll2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/poll2.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/posix_semaphore1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/posix_semaphore1.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/pread1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/pread1.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/pread2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/pread2.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/pread3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/pread3.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/pthread_mutex1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/pthread_mutex1.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/pthread_mutex2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/pthread_mutex2.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/pthread_mutex3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/pthread_mutex3.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/pthread_mutex4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/pthread_mutex4.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/pwrite1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/pwrite1.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/pwrite2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/pwrite2.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/pwrite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/pwrite3.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/read1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/read1.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/read2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/read2.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/read3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/read3.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/read4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/read4.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/readseek1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/readseek1.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/readseek2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/readseek2.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/readseek3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/readseek3.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/sched_yield.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/sched_yield.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/signal1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/signal1.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/tlb_flush1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/tlb_flush1.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/tlb_flush2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/tlb_flush2.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/tlb_flush3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/tlb_flush3.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/unix1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/unix1.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/unlink1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/unlink1.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/unlink2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/unlink2.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/write1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/write1.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/writeseek1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/writeseek1.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/writeseek2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/writeseek2.c -------------------------------------------------------------------------------- /benchmarks/will-it-scale/tests/writeseek3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/will-it-scale/tests/writeseek3.c -------------------------------------------------------------------------------- /benchmarks/xDir-rename/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/xDir-rename/.gitignore -------------------------------------------------------------------------------- /benchmarks/xDir-rename/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/xDir-rename/Makefile -------------------------------------------------------------------------------- /benchmarks/xDir-rename/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/xDir-rename/README.md -------------------------------------------------------------------------------- /benchmarks/xDir-rename/benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/xDir-rename/benchmark.c -------------------------------------------------------------------------------- /benchmarks/xDir-rename/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/xDir-rename/plot.py -------------------------------------------------------------------------------- /benchmarks/xDir-rename/run_bench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/benchmarks/xDir-rename/run_bench.py -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /scripts/change-cpu-freq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/scripts/change-cpu-freq.sh -------------------------------------------------------------------------------- /scripts/config-cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/scripts/config-cna -------------------------------------------------------------------------------- /scripts/config-syncord: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/scripts/config-syncord -------------------------------------------------------------------------------- /scripts/get-pip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/scripts/get-pip.py -------------------------------------------------------------------------------- /scripts/pin-vcpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/scripts/pin-vcpu.py -------------------------------------------------------------------------------- /scripts/qmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/scripts/qmp.py -------------------------------------------------------------------------------- /scripts/run-vm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/scripts/run-vm.sh -------------------------------------------------------------------------------- /scripts/uninstall_policy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/scripts/uninstall_policy.sh -------------------------------------------------------------------------------- /src/concord/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .idea 3 | output/ 4 | -------------------------------------------------------------------------------- /src/concord/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/concord/bpf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/bpf/Makefile -------------------------------------------------------------------------------- /src/concord/bpf/bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/bpf/bpf.c -------------------------------------------------------------------------------- /src/concord/bpf/bpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/bpf/bpf.h -------------------------------------------------------------------------------- /src/concord/bpf/bpf_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/bpf/bpf_load.c -------------------------------------------------------------------------------- /src/concord/bpf/bpf_load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/bpf/bpf_load.h -------------------------------------------------------------------------------- /src/concord/bpf/include/bpf_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/bpf/include/bpf_helpers.h -------------------------------------------------------------------------------- /src/concord/bpf/include/linux/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/bpf/include/linux/types.h -------------------------------------------------------------------------------- /src/concord/bpf/libbpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/bpf/libbpf.h -------------------------------------------------------------------------------- /src/concord/bpf/libbpf_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/bpf/libbpf_internal.h -------------------------------------------------------------------------------- /src/concord/bpf/perf-sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/bpf/perf-sys.h -------------------------------------------------------------------------------- /src/concord/bpf/skeleton_kern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/bpf/skeleton_kern.c -------------------------------------------------------------------------------- /src/concord/bpf/skeleton_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/bpf/skeleton_user.c -------------------------------------------------------------------------------- /src/concord/bpfgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/bpfgen.py -------------------------------------------------------------------------------- /src/concord/concord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/concord.py -------------------------------------------------------------------------------- /src/concord/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/config.py -------------------------------------------------------------------------------- /src/concord/instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/instance.py -------------------------------------------------------------------------------- /src/concord/list_APIs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/list_APIs.h -------------------------------------------------------------------------------- /src/concord/livepatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/livepatch.py -------------------------------------------------------------------------------- /src/concord/patch/pre_patch_callback.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/patch/pre_patch_callback.patch -------------------------------------------------------------------------------- /src/concord/patch/rwsem_custom_cmp_func.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/patch/rwsem_custom_cmp_func.patch -------------------------------------------------------------------------------- /src/concord/patch/single_lock.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/patch/single_lock.patch -------------------------------------------------------------------------------- /src/concord/patches/amp-mwrl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/patches/amp-mwrl.patch -------------------------------------------------------------------------------- /src/concord/patches/amp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/patches/amp.patch -------------------------------------------------------------------------------- /src/concord/patches/bravo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/patches/bravo.patch -------------------------------------------------------------------------------- /src/concord/patches/lockstat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/patches/lockstat.patch -------------------------------------------------------------------------------- /src/concord/patches/numa-grouping-cna.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/patches/numa-grouping-cna.patch -------------------------------------------------------------------------------- /src/concord/patches/numa-grouping.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/patches/numa-grouping.patch -------------------------------------------------------------------------------- /src/concord/patches/numa-scl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/patches/numa-scl.patch -------------------------------------------------------------------------------- /src/concord/patches/scl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/patches/scl.patch -------------------------------------------------------------------------------- /src/concord/policy/amp/amp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/policy/amp/amp.h -------------------------------------------------------------------------------- /src/concord/policy/amp/amp_cont_lock.pfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/policy/amp/amp_cont_lock.pfile -------------------------------------------------------------------------------- /src/concord/policy/bravo/bravo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/policy/bravo/bravo.h -------------------------------------------------------------------------------- /src/concord/policy/bravo/bravo_acqed_lock.pfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/policy/bravo/bravo_acqed_lock.pfile -------------------------------------------------------------------------------- /src/concord/policy/bravo/bravo_bypass_acq_lock.pfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/policy/bravo/bravo_bypass_acq_lock.pfile -------------------------------------------------------------------------------- /src/concord/policy/bravo/bravo_bypass_release_lock.pfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/policy/bravo/bravo_bypass_release_lock.pfile -------------------------------------------------------------------------------- /src/concord/policy/lock_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/policy/lock_policy.h -------------------------------------------------------------------------------- /src/concord/policy/lockstat/lockstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/policy/lockstat/lockstat.h -------------------------------------------------------------------------------- /src/concord/policy/lockstat/lockstat.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/policy/lockstat/lockstat.map -------------------------------------------------------------------------------- /src/concord/policy/lockstat/lockstat_lock_acquired.pfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/policy/lockstat/lockstat_lock_acquired.pfile -------------------------------------------------------------------------------- /src/concord/policy/lockstat/lockstat_lock_to_release.pfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/policy/lockstat/lockstat_lock_to_release.pfile -------------------------------------------------------------------------------- /src/concord/policy/lockstat/lockstat_to_enter_slow_path.pfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/policy/lockstat/lockstat_to_enter_slow_path.pfile -------------------------------------------------------------------------------- /src/concord/policy/numa-grouping-cna/numa-grouping-cna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/policy/numa-grouping-cna/numa-grouping-cna.h -------------------------------------------------------------------------------- /src/concord/policy/numa-grouping-cna/numa-grouping-cna.pfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/policy/numa-grouping-cna/numa-grouping-cna.pfile -------------------------------------------------------------------------------- /src/concord/policy/numa-grouping/numa-grouping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/policy/numa-grouping/numa-grouping.h -------------------------------------------------------------------------------- /src/concord/policy/numa-grouping/numa-grouping.pfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/policy/numa-grouping/numa-grouping.pfile -------------------------------------------------------------------------------- /src/concord/policy/numa-scl/scl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/policy/numa-scl/scl.h -------------------------------------------------------------------------------- /src/concord/policy/numa-scl/scl_acqed_lock.pfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/policy/numa-scl/scl_acqed_lock.pfile -------------------------------------------------------------------------------- /src/concord/policy/numa-scl/scl_cmp.pfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/policy/numa-scl/scl_cmp.pfile -------------------------------------------------------------------------------- /src/concord/policy/numa-scl/scl_cont_lock.pfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/policy/numa-scl/scl_cont_lock.pfile -------------------------------------------------------------------------------- /src/concord/policy/numa-scl/scl_release_lock.pfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/policy/numa-scl/scl_release_lock.pfile -------------------------------------------------------------------------------- /src/concord/policy/scl/scl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/policy/scl/scl.h -------------------------------------------------------------------------------- /src/concord/policy/scl/scl_acqed_lock.pfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/policy/scl/scl_acqed_lock.pfile -------------------------------------------------------------------------------- /src/concord/policy/scl/scl_cmp.pfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/policy/scl/scl_cmp.pfile -------------------------------------------------------------------------------- /src/concord/policy/scl/scl_cont_lock.pfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/policy/scl/scl_cont_lock.pfile -------------------------------------------------------------------------------- /src/concord/policy/scl/scl_release_lock.pfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/policy/scl/scl_release_lock.pfile -------------------------------------------------------------------------------- /src/concord/requirements.txt: -------------------------------------------------------------------------------- 1 | GitPython 2 | -------------------------------------------------------------------------------- /src/concord/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/concord/util.py -------------------------------------------------------------------------------- /src/kpatch/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/.gitignore -------------------------------------------------------------------------------- /src/kpatch/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/.gitmodules -------------------------------------------------------------------------------- /src/kpatch/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/.travis.yml -------------------------------------------------------------------------------- /src/kpatch/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/COPYING -------------------------------------------------------------------------------- /src/kpatch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/Makefile -------------------------------------------------------------------------------- /src/kpatch/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/Makefile.inc -------------------------------------------------------------------------------- /src/kpatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/README.md -------------------------------------------------------------------------------- /src/kpatch/contrib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/contrib/Makefile -------------------------------------------------------------------------------- /src/kpatch/contrib/kpatch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/contrib/kpatch.conf -------------------------------------------------------------------------------- /src/kpatch/contrib/kpatch.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/contrib/kpatch.service -------------------------------------------------------------------------------- /src/kpatch/contrib/kpatch.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/contrib/kpatch.spec -------------------------------------------------------------------------------- /src/kpatch/doc/patch-author-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/doc/patch-author-guide.md -------------------------------------------------------------------------------- /src/kpatch/kmod/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kmod/Makefile -------------------------------------------------------------------------------- /src/kpatch/kmod/core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kmod/core/Makefile -------------------------------------------------------------------------------- /src/kpatch/kmod/core/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kmod/core/core.c -------------------------------------------------------------------------------- /src/kpatch/kmod/core/kpatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kmod/core/kpatch.h -------------------------------------------------------------------------------- /src/kpatch/kmod/core/shadow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kmod/core/shadow.c -------------------------------------------------------------------------------- /src/kpatch/kmod/patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kmod/patch/Makefile -------------------------------------------------------------------------------- /src/kpatch/kmod/patch/kpatch-macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kmod/patch/kpatch-macros.h -------------------------------------------------------------------------------- /src/kpatch/kmod/patch/kpatch-patch-hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kmod/patch/kpatch-patch-hook.c -------------------------------------------------------------------------------- /src/kpatch/kmod/patch/kpatch-patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kmod/patch/kpatch-patch.h -------------------------------------------------------------------------------- /src/kpatch/kmod/patch/kpatch.h: -------------------------------------------------------------------------------- 1 | ../core/kpatch.h -------------------------------------------------------------------------------- /src/kpatch/kmod/patch/kpatch.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kmod/patch/kpatch.lds -------------------------------------------------------------------------------- /src/kpatch/kmod/patch/kpatch.lds.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kmod/patch/kpatch.lds.S -------------------------------------------------------------------------------- /src/kpatch/kmod/patch/livepatch-patch-hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kmod/patch/livepatch-patch-hook.c -------------------------------------------------------------------------------- /src/kpatch/kmod/patch/modules.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kmod/patch/modules.order -------------------------------------------------------------------------------- /src/kpatch/kmod/patch/patch-hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kmod/patch/patch-hook.c -------------------------------------------------------------------------------- /src/kpatch/kpatch-build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kpatch-build/Makefile -------------------------------------------------------------------------------- /src/kpatch/kpatch-build/create-diff-object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kpatch-build/create-diff-object.c -------------------------------------------------------------------------------- /src/kpatch/kpatch-build/create-klp-module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kpatch-build/create-klp-module.c -------------------------------------------------------------------------------- /src/kpatch/kpatch-build/create-kpatch-module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kpatch-build/create-kpatch-module.c -------------------------------------------------------------------------------- /src/kpatch/kpatch-build/gcc-plugins/gcc-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kpatch-build/gcc-plugins/gcc-common.h -------------------------------------------------------------------------------- /src/kpatch/kpatch-build/gcc-plugins/gcc-generate-rtl-pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kpatch-build/gcc-plugins/gcc-generate-rtl-pass.h -------------------------------------------------------------------------------- /src/kpatch/kpatch-build/gcc-plugins/ppc64le-plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kpatch-build/gcc-plugins/ppc64le-plugin.c -------------------------------------------------------------------------------- /src/kpatch/kpatch-build/insn/asm/inat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kpatch-build/insn/asm/inat.h -------------------------------------------------------------------------------- /src/kpatch/kpatch-build/insn/asm/inat_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kpatch-build/insn/asm/inat_types.h -------------------------------------------------------------------------------- /src/kpatch/kpatch-build/insn/asm/insn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kpatch-build/insn/asm/insn.h -------------------------------------------------------------------------------- /src/kpatch/kpatch-build/insn/inat-tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kpatch-build/insn/inat-tables.c -------------------------------------------------------------------------------- /src/kpatch/kpatch-build/insn/inat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kpatch-build/insn/inat.c -------------------------------------------------------------------------------- /src/kpatch/kpatch-build/insn/insn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kpatch-build/insn/insn.c -------------------------------------------------------------------------------- /src/kpatch/kpatch-build/kpatch-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kpatch-build/kpatch-build -------------------------------------------------------------------------------- /src/kpatch/kpatch-build/kpatch-elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kpatch-build/kpatch-elf.c -------------------------------------------------------------------------------- /src/kpatch/kpatch-build/kpatch-elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kpatch-build/kpatch-elf.h -------------------------------------------------------------------------------- /src/kpatch/kpatch-build/kpatch-gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kpatch-build/kpatch-gcc -------------------------------------------------------------------------------- /src/kpatch/kpatch-build/kpatch-intermediate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kpatch-build/kpatch-intermediate.h -------------------------------------------------------------------------------- /src/kpatch/kpatch-build/kpatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kpatch-build/kpatch.h -------------------------------------------------------------------------------- /src/kpatch/kpatch-build/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kpatch-build/list.h -------------------------------------------------------------------------------- /src/kpatch/kpatch-build/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kpatch-build/log.h -------------------------------------------------------------------------------- /src/kpatch/kpatch-build/lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kpatch-build/lookup.c -------------------------------------------------------------------------------- /src/kpatch/kpatch-build/lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kpatch-build/lookup.h -------------------------------------------------------------------------------- /src/kpatch/kpatch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kpatch/Makefile -------------------------------------------------------------------------------- /src/kpatch/kpatch/kpatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/kpatch/kpatch -------------------------------------------------------------------------------- /src/kpatch/man/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/man/Makefile -------------------------------------------------------------------------------- /src/kpatch/man/kpatch-build.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/man/kpatch-build.1 -------------------------------------------------------------------------------- /src/kpatch/man/kpatch.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/man/kpatch.1 -------------------------------------------------------------------------------- /src/kpatch/test/difftree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/difftree.sh -------------------------------------------------------------------------------- /src/kpatch/test/integration/.gitignore: -------------------------------------------------------------------------------- 1 | test.log 2 | COMBINED.patch 3 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/Makefile -------------------------------------------------------------------------------- /src/kpatch/test/integration/centos-7: -------------------------------------------------------------------------------- 1 | rhel-7.8/ -------------------------------------------------------------------------------- /src/kpatch/test/integration/common/multiple.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/common/multiple.template -------------------------------------------------------------------------------- /src/kpatch/test/integration/fedora-27/README: -------------------------------------------------------------------------------- 1 | 4.13.9-300.fc27.x86_64 2 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/fedora-27/data-new-LOADED.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grep "kpatch: 5" /proc/meminfo 4 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/fedora-27/data-new.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/fedora-27/data-new.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/fedora-27/macro-callbacks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/fedora-27/macro-callbacks.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/fedora-27/module-call-external.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/fedora-27/module-call-external.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/fedora-27/multiple.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/fedora-27/multiple.test -------------------------------------------------------------------------------- /src/kpatch/test/integration/fedora-27/new-function.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/fedora-27/new-function.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/fedora-27/new-globals.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/fedora-27/new-globals.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/fedora-27/remote-setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/fedora-27/remote-setup -------------------------------------------------------------------------------- /src/kpatch/test/integration/fedora-27/shadow-newpid-LOADED.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grep -q newpid: /proc/$$/status 4 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/fedora-27/warn-detect-FAIL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/fedora-27/warn-detect-FAIL.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/kpatch-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/kpatch-test -------------------------------------------------------------------------------- /src/kpatch/test/integration/lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/lib.sh -------------------------------------------------------------------------------- /src/kpatch/test/integration/rebase-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rebase-patches -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.4/bug-table-section.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.4/bug-table-section.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.4/cmdline-string-LOADED.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grep kpatch=1 /proc/cmdline 4 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.4/cmdline-string.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.4/cmdline-string.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.4/data-new-LOADED.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grep "kpatch: 5" /proc/meminfo 4 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.4/data-new.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.4/data-new.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.4/fixup-section.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.4/fixup-section.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.4/gcc-constprop.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.4/gcc-constprop.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.4/gcc-isra.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.4/gcc-isra.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.4/gcc-mangled-3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.4/gcc-mangled-3.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.4/gcc-static-local-var-4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.4/gcc-static-local-var-4.test -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.4/gcc-static-local-var.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.4/gcc-static-local-var.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.4/macro-callbacks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.4/macro-callbacks.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.4/macro-printk.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.4/macro-printk.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.4/meminfo-init-FAIL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.4/meminfo-init-FAIL.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.4/meminfo-init2-FAIL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.4/meminfo-init2-FAIL.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.4/meminfo-string-LOADED.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grep VMALLOCCHUNK /proc/meminfo 4 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.4/meminfo-string.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.4/meminfo-string.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.4/module-call-external.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.4/module-call-external.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.4/module-kvm-fixup.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.4/module-kvm-fixup.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.4/module-shadow.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.4/module-shadow.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.4/multiple.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.4/multiple.test -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.4/new-function.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.4/new-function.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.4/new-globals.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.4/new-globals.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.4/shadow-newpid-LOADED.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grep -q newpid: /proc/$$/status 4 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.4/shadow-newpid.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.4/shadow-newpid.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.4/smp-locks-section.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.4/smp-locks-section.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.4/special-static-2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.4/special-static-2.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.4/special-static.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.4/special-static.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.4/tracepoints-section.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.4/tracepoints-section.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.4/warn-detect-FAIL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.4/warn-detect-FAIL.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.5/bug-table-section.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.5/bug-table-section.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.5/cmdline-string-LOADED.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grep kpatch=1 /proc/cmdline 4 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.5/cmdline-string.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.5/cmdline-string.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.5/data-new-LOADED.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grep "kpatch: 5" /proc/meminfo 4 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.5/data-new.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.5/data-new.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.5/fixup-section.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.5/fixup-section.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.5/gcc-constprop.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.5/gcc-constprop.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.5/gcc-isra.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.5/gcc-isra.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.5/gcc-mangled-3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.5/gcc-mangled-3.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.5/gcc-static-local-var-4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.5/gcc-static-local-var-4.test -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.5/macro-callbacks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.5/macro-callbacks.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.5/macro-printk.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.5/macro-printk.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.5/meminfo-init-FAIL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.5/meminfo-init-FAIL.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.5/meminfo-init2-FAIL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.5/meminfo-init2-FAIL.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.5/meminfo-string-LOADED.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grep VMALLOCCHUNK /proc/meminfo 4 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.5/meminfo-string.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.5/meminfo-string.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.5/module-kvm-fixup.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.5/module-kvm-fixup.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.5/multiple.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.5/multiple.test -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.5/new-function.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.5/new-function.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.5/new-globals.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.5/new-globals.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.5/shadow-newpid-LOADED.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grep -q newpid: /proc/$$/status 4 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.5/shadow-newpid.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.5/shadow-newpid.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.5/smp-locks-section.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.5/smp-locks-section.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.5/special-static-2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.5/special-static-2.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.5/special-static.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.5/special-static.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.5/warn-detect-FAIL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.5/warn-detect-FAIL.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.6/bug-table-section.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.6/bug-table-section.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.6/cmdline-string-LOADED.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grep kpatch=1 /proc/cmdline 4 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.6/cmdline-string.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.6/cmdline-string.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.6/data-new-LOADED.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grep "kpatch: 5" /proc/meminfo 4 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.6/data-new.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.6/data-new.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.6/fixup-section.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.6/fixup-section.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.6/gcc-isra.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.6/gcc-isra.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.6/gcc-mangled-3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.6/gcc-mangled-3.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.6/macro-callbacks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.6/macro-callbacks.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.6/macro-printk.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.6/macro-printk.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.6/meminfo-init-FAIL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.6/meminfo-init-FAIL.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.6/meminfo-init2-FAIL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.6/meminfo-init2-FAIL.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.6/meminfo-string-LOADED.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grep VMALLOCCHUNK /proc/meminfo 4 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.6/meminfo-string.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.6/meminfo-string.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.6/multiple.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.6/multiple.test -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.6/new-function.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.6/new-function.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.6/new-globals.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.6/new-globals.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.6/shadow-newpid-LOADED.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grep -q newpid: /proc/$$/status 4 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.6/shadow-newpid.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.6/shadow-newpid.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.6/smp-locks-section.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.6/smp-locks-section.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.6/special-static.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.6/special-static.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.6/warn-detect-FAIL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.6/warn-detect-FAIL.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.7/bug-table-section.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.7/bug-table-section.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.7/cmdline-string-LOADED.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grep kpatch=1 /proc/cmdline 4 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.7/cmdline-string.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.7/cmdline-string.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.7/data-new-LOADED.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grep "kpatch: 5" /proc/meminfo 4 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.7/data-new.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.7/data-new.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.7/fixup-section.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.7/fixup-section.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.7/gcc-isra.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.7/gcc-isra.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.7/gcc-mangled-3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.7/gcc-mangled-3.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.7/macro-callbacks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.7/macro-callbacks.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.7/macro-printk.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.7/macro-printk.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.7/meminfo-init-FAIL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.7/meminfo-init-FAIL.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.7/meminfo-init2-FAIL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.7/meminfo-init2-FAIL.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.7/meminfo-string-LOADED.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grep VMALLOCCHUNK /proc/meminfo 4 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.7/meminfo-string.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.7/meminfo-string.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.7/multiple.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.7/multiple.test -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.7/new-function.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.7/new-function.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.7/new-globals.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.7/new-globals.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.7/shadow-newpid-LOADED.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grep -q newpid: /proc/$$/status 4 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.7/shadow-newpid.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.7/shadow-newpid.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.7/smp-locks-section.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.7/smp-locks-section.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.7/special-static.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.7/special-static.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.7/warn-detect-FAIL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.7/warn-detect-FAIL.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.8/bug-table-section.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.8/bug-table-section.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.8/cmdline-string-LOADED.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grep kpatch=1 /proc/cmdline 4 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.8/cmdline-string.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.8/cmdline-string.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.8/data-new-LOADED.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grep "kpatch: 5" /proc/meminfo 4 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.8/data-new.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.8/data-new.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.8/fixup-section.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.8/fixup-section.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.8/gcc-isra.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.8/gcc-isra.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.8/gcc-mangled-3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.8/gcc-mangled-3.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.8/macro-callbacks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.8/macro-callbacks.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.8/macro-printk.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.8/macro-printk.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.8/meminfo-init-FAIL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.8/meminfo-init-FAIL.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.8/meminfo-init2-FAIL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.8/meminfo-init2-FAIL.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.8/meminfo-string-LOADED.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grep VMALLOCCHUNK /proc/meminfo 4 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.8/meminfo-string.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.8/meminfo-string.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.8/multiple.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.8/multiple.test -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.8/new-function.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.8/new-function.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.8/new-globals.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.8/new-globals.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.8/shadow-newpid-LOADED.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grep -q newpid: /proc/$$/status 4 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.8/shadow-newpid.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.8/shadow-newpid.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.8/smp-locks-section.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.8/smp-locks-section.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.8/special-static.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.8/special-static.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-7.8/warn-detect-FAIL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-7.8/warn-detect-FAIL.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.0/README: -------------------------------------------------------------------------------- 1 | 4.18.0-80.el8 2 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.0/bug-table-section.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.0/bug-table-section.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.0/cmdline-string-LOADED.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grep kpatch=1 /proc/cmdline 4 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.0/cmdline-string.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.0/cmdline-string.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.0/data-new-LOADED.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.0/data-new-LOADED.test -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.0/data-new.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.0/data-new.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.0/fixup-section.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.0/fixup-section.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.0/gcc-isra.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.0/gcc-isra.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.0/gcc-mangled-3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.0/gcc-mangled-3.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.0/macro-callbacks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.0/macro-callbacks.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.0/meminfo-init-FAIL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.0/meminfo-init-FAIL.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.0/meminfo-init2-FAIL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.0/meminfo-init2-FAIL.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.0/meminfo-string-LOADED.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grep VMALLOCCHUNK /proc/meminfo 4 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.0/meminfo-string.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.0/meminfo-string.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.0/multiple.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.0/multiple.test -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.0/new-function.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.0/new-function.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.0/new-globals.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.0/new-globals.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.0/shadow-newpid-LOADED.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grep -q newpid: /proc/$$/status 4 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.0/smp-locks-section.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.0/smp-locks-section.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.0/special-static.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.0/special-static.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.0/warn-detect-FAIL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.0/warn-detect-FAIL.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.1/bug-table-section.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.1/bug-table-section.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.1/cmdline-string-LOADED.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grep kpatch=1 /proc/cmdline 4 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.1/cmdline-string.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.1/cmdline-string.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.1/data-new-LOADED.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.1/data-new-LOADED.test -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.1/data-new.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.1/data-new.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.1/fixup-section.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.1/fixup-section.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.1/gcc-isra.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.1/gcc-isra.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.1/gcc-mangled-3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.1/gcc-mangled-3.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.1/macro-callbacks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.1/macro-callbacks.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.1/meminfo-init-FAIL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.1/meminfo-init-FAIL.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.1/meminfo-init2-FAIL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.1/meminfo-init2-FAIL.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.1/meminfo-string-LOADED.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grep VMALLOCCHUNK /proc/meminfo 4 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.1/meminfo-string.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.1/meminfo-string.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.1/module-LOADED.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.1/module-LOADED.test -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.1/module.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.1/module.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.1/multiple.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.1/multiple.test -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.1/new-function.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.1/new-function.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.1/new-globals.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.1/new-globals.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.1/shadow-newpid-LOADED.test.disabled: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grep -q newpid: /proc/$$/status 4 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.1/smp-locks-section.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.1/smp-locks-section.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.1/warn-detect-FAIL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.1/warn-detect-FAIL.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.2/bug-table-section.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.2/bug-table-section.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.2/cmdline-string-LOADED.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grep kpatch=1 /proc/cmdline 4 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.2/cmdline-string.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.2/cmdline-string.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.2/data-new-LOADED.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.2/data-new-LOADED.test -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.2/data-new.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.2/data-new.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.2/fixup-section.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.2/fixup-section.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.2/gcc-constprop.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.2/gcc-constprop.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.2/gcc-isra.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.2/gcc-isra.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.2/gcc-mangled-3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.2/gcc-mangled-3.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.2/macro-callbacks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.2/macro-callbacks.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.2/macro-printk.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.2/macro-printk.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.2/meminfo-init-FAIL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.2/meminfo-init-FAIL.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.2/meminfo-init2-FAIL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.2/meminfo-init2-FAIL.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.2/meminfo-string-LOADED.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grep VMALLOCCHUNK /proc/meminfo 4 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.2/meminfo-string.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.2/meminfo-string.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.2/module-LOADED.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.2/module-LOADED.test -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.2/module.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.2/module.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.2/multiple.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.2/multiple.test -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.2/new-function.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.2/new-function.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.2/new-globals.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.2/new-globals.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.2/shadow-newpid-LOADED.test.disabled: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grep -q newpid: /proc/$$/status 4 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.2/smp-locks-section.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.2/smp-locks-section.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/rhel-8.2/warn-detect-FAIL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/rhel-8.2/warn-detect-FAIL.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/test-vagrant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/test-vagrant -------------------------------------------------------------------------------- /src/kpatch/test/integration/ubuntu-16.04/README: -------------------------------------------------------------------------------- 1 | 4.4.0-53-generic 2 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/ubuntu-16.04/cmdline-string-LOADED.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grep kpatch=1 /proc/cmdline 4 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/ubuntu-16.04/cmdline-string.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/ubuntu-16.04/cmdline-string.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/ubuntu-16.04/data-new-LOADED.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grep "kpatch: 5" /proc/meminfo 4 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/ubuntu-16.04/data-new.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/ubuntu-16.04/data-new.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/ubuntu-16.04/fixup-section.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/ubuntu-16.04/fixup-section.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/ubuntu-16.04/gcc-constprop.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/ubuntu-16.04/gcc-constprop.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/ubuntu-16.04/gcc-isra.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/ubuntu-16.04/gcc-isra.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/ubuntu-16.04/macro-printk.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/ubuntu-16.04/macro-printk.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/ubuntu-16.04/meminfo-string-LOADED.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grep VMALLOCCHUNK /proc/meminfo 4 | -------------------------------------------------------------------------------- /src/kpatch/test/integration/ubuntu-16.04/meminfo-string.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/ubuntu-16.04/meminfo-string.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/ubuntu-16.04/multiple.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/ubuntu-16.04/multiple.test -------------------------------------------------------------------------------- /src/kpatch/test/integration/ubuntu-16.04/new-function.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/ubuntu-16.04/new-function.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/ubuntu-16.04/new-globals.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/ubuntu-16.04/new-globals.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/ubuntu-16.04/special-static.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/ubuntu-16.04/special-static.patch -------------------------------------------------------------------------------- /src/kpatch/test/integration/vm-integration-run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/integration/vm-integration-run -------------------------------------------------------------------------------- /src/kpatch/test/test-functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/test-functions.sh -------------------------------------------------------------------------------- /src/kpatch/test/unit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/unit/Makefile -------------------------------------------------------------------------------- /src/kpatch/test/unit/Makefile.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rs3lab/SynCord/HEAD/src/kpatch/test/unit/Makefile.include --------------------------------------------------------------------------------