├── .gitignore ├── README.md ├── benchmark ├── application │ ├── linux │ │ ├── kevin │ │ │ ├── linux.sh │ │ │ ├── load_linux.sh │ │ │ └── rsync.sh │ │ ├── linux.sh │ │ ├── load_linux.sh │ │ └── rsync.sh │ └── tpcc │ │ ├── kevin │ │ ├── load_tpcc.sh │ │ └── tpcc.sh │ │ ├── load_tpcc.sh │ │ ├── sql │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── add_fkey_idx.sql │ │ ├── count.sql │ │ ├── create_table.sql │ │ ├── drop_cons.sql │ │ ├── load.sh │ │ ├── load_multi_schema.sh │ │ ├── run.sh │ │ ├── schema2 │ │ │ ├── add_fkey_idx.sql │ │ │ ├── count.sql │ │ │ ├── create_table.sql │ │ │ └── drop_cons.sql │ │ ├── scripts │ │ │ ├── 2instances │ │ │ │ └── run.sh │ │ │ ├── analyze.full.sh │ │ │ ├── analyze.sh │ │ │ ├── analyzeR.sh │ │ │ ├── analyze_checkpoint.sh │ │ │ ├── analyze_checkpoint_xtradb.sh │ │ │ ├── analyze_checkpoint_xtradb1.sh │ │ │ ├── analyze_dirty.sh │ │ │ ├── analyze_evicted.sh │ │ │ ├── analyze_flushed.sh │ │ │ ├── analyze_flushed_innodb.sh │ │ │ ├── analyze_min.sh │ │ │ ├── analyze_modified.sh │ │ │ ├── flashcache_stat.sh │ │ │ ├── innodb_stat.sh │ │ │ ├── memlock │ │ │ ├── memlock.c │ │ │ ├── multi-instances │ │ │ │ └── runX.sh │ │ │ ├── parse_trx.py │ │ │ ├── remote │ │ │ │ └── runX.sh │ │ │ ├── run.sh │ │ │ ├── runX.sh │ │ │ ├── run_no_backup.sh │ │ │ └── virident_stat.sh │ │ ├── src │ │ │ ├── Makefile │ │ │ ├── delivery.c │ │ │ ├── driver.c │ │ │ ├── load.c │ │ │ ├── main.c │ │ │ ├── neword.c │ │ │ ├── ordstat.c │ │ │ ├── parse_port.h │ │ │ ├── payment.c │ │ │ ├── rthist.c │ │ │ ├── rthist.h │ │ │ ├── sb_percentile.c │ │ │ ├── sb_percentile.h │ │ │ ├── sequence.c │ │ │ ├── sequence.h │ │ │ ├── slev.c │ │ │ ├── spt_proc.c │ │ │ ├── spt_proc.h │ │ │ ├── support.c │ │ │ ├── tpc.h │ │ │ └── trans_if.h │ │ ├── total.sh │ │ ├── tpcc_load │ │ └── tpcc_start │ │ └── tpcc.sh ├── cheeze │ ├── Makefile │ ├── b │ ├── blk.c │ ├── cheeze.h │ ├── crc32c.c │ ├── queue.c │ ├── replay.c │ ├── shm.c │ └── user.c ├── example ├── filebench │ ├── example │ │ ├── micro_copyfiles.f │ │ ├── micro_createfiles_empty.f │ │ ├── micro_delete.f │ │ ├── micro_makedirs.f │ │ └── micro_removedirs.f │ ├── filebench_nvme.sh │ ├── filebench_vm.sh │ ├── filebench_vm_kevin.sh │ ├── load_only │ │ ├── micro_copyfiles.f │ │ ├── micro_createfiles.f │ │ ├── micro_createfiles_empty.f │ │ ├── micro_delete.f │ │ ├── micro_delete_empty.f │ │ ├── micro_listdirs_empty.f │ │ ├── micro_makedirs.f │ │ ├── micro_removedirs.f │ │ ├── real_fileserver.f │ │ ├── real_oltp.f │ │ ├── real_varmail.f │ │ ├── real_webproxy.f │ │ └── real_webserver.f │ └── workloads │ │ ├── micro_copyfiles.f │ │ ├── micro_createfiles.f │ │ ├── micro_createfiles_empty.f │ │ ├── micro_delete.f │ │ ├── micro_delete_empty.f │ │ ├── micro_listdirs_empty.f │ │ ├── micro_makedirs.f │ │ ├── micro_removedirs.f │ │ ├── real_fileserver.f │ │ ├── real_oltp.f │ │ ├── real_varmail.f │ │ ├── real_webproxy.f │ │ └── real_webserver.f ├── fio │ ├── fio.sh │ ├── fio_kevin.sh │ ├── global.fio │ ├── randread.fio │ ├── randwrite.fio │ ├── seqread.fio │ └── seqwrite.fio ├── fragmentation │ ├── frag_file.f │ ├── frag_filebench_geriatrix-kevin.sh │ ├── frag_filebench_geriatrix.sh │ ├── load_only │ │ ├── micro_copyfiles.f │ │ ├── micro_createfiles.f │ │ ├── micro_createfiles_empty.f │ │ ├── micro_delete.f │ │ ├── micro_delete_empty.f │ │ ├── micro_listdirs.f │ │ ├── micro_makedirs.f │ │ ├── micro_removedirs.f │ │ ├── real_fileserver.f │ │ ├── real_oltp.f │ │ ├── real_varmail.f │ │ ├── real_webproxy.f │ │ └── real_webserver.f │ └── workloads │ │ ├── micro_copyfiles.f │ │ ├── micro_createfiles.f │ │ ├── micro_createfiles_empty.f │ │ ├── micro_delete.f │ │ ├── micro_delete_empty.f │ │ ├── micro_listdirs_empty.f │ │ ├── micro_makedirs.f │ │ ├── micro_removedirs.f │ │ ├── real_fileserver.f │ │ ├── real_oltp.f │ │ ├── real_varmail.f │ │ ├── real_webproxy.f │ │ └── real_webserver.f ├── general │ ├── blk_map │ │ ├── .nfs0000000000fc177d00000001 │ │ ├── 01_create_map.py │ │ ├── 02_trace_map.py │ │ ├── dump.txt │ │ └── parse.sh │ ├── blktrace.sh │ ├── btrfs.sh │ ├── cutloadtrace.sh │ ├── cuttrace.sh │ ├── dumpfs.sh │ ├── ext4_data_journal.sh │ ├── ext4_metadata_journal.sh │ ├── ext4_no_journal.sh │ ├── ext4_wb_journal.sh │ ├── f2fs.sh │ ├── flush_cache.sh │ ├── genfiostat.sh │ ├── genmasterstat.sh │ ├── genstat.sh │ ├── gentrace.sh │ ├── get_lba_by_inode_number.sh │ ├── io_count_parser.c │ ├── kukasum.sh │ ├── parser.sh │ ├── parser_ext4 │ ├── parser_xfs │ ├── vmsum.sh │ └── xfs.sh ├── setup_cheeze.sh ├── setup_vm.sh ├── ssd-fio.sh └── unused │ ├── filebench_betrfs.sh │ ├── filebench_ext4.sh │ ├── filebench_vm-delay.sh │ ├── filebench_vm-fio-delay.sh │ ├── filebench_vm2vm.sh │ ├── lightfs │ ├── bench.sh │ ├── setup_lightfs.sh │ ├── setup_vm.sh │ ├── tmp │ │ ├── copyfiles_16_gamma_fuse.f │ │ ├── filemicro_createfiles_16_fuse.f │ │ ├── filemicro_delete_16_fuse.f │ │ ├── fileserver_gamma_fuse.f │ │ ├── makedirs_16_fuse.f │ │ ├── micro_copyfiles.f │ │ ├── micro_createfiles.f │ │ ├── micro_createfiles_empty.f │ │ ├── micro_delete.f │ │ ├── micro_makedirs.f │ │ ├── micro_removedirs.f │ │ ├── removedirs_16_fuse.f │ │ ├── tmp.f │ │ ├── tmp_fileserver_gamma_fuse.f │ │ ├── varmail_gamma_fuse.f │ │ ├── webproxy_gamma_fuse.f │ │ └── webserver_gamma_fuse.f │ └── ttest.sh │ └── setup_cheeze_vm2vm.sh ├── bin └── rm ├── env ├── kevinfs ├── .gitignore ├── Makefile ├── bloomfilter.c ├── bloomfilter.h ├── cheeze │ ├── blk.c │ ├── cheeze.h │ ├── queue.c │ └── shm.c ├── db.h ├── dummy.dev ├── lightfs.h ├── lightfs_bstore.c ├── lightfs_cache.c ├── lightfs_cache.h ├── lightfs_db.c ├── lightfs_db.h ├── lightfs_db_env.c ├── lightfs_db_env.h ├── lightfs_debug.h ├── lightfs_fs.h ├── lightfs_io.c ├── lightfs_io.h ├── lightfs_module.c ├── lightfs_queue.c ├── lightfs_queue.h ├── lightfs_reada.c ├── lightfs_reada.h ├── lightfs_super.c ├── lightfs_txn_hdlr.c ├── lightfs_txn_hdlr.h ├── mkinclude ├── murmur3.c ├── murmur3.h ├── rbtreekv.c ├── rbtreekv.h └── run.sh ├── libvirt └── passthru.xml └── patches └── geriatrix.patch /.gitignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/application/linux/kevin/linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/linux/kevin/linux.sh -------------------------------------------------------------------------------- /benchmark/application/linux/kevin/load_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/linux/kevin/load_linux.sh -------------------------------------------------------------------------------- /benchmark/application/linux/kevin/rsync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/linux/kevin/rsync.sh -------------------------------------------------------------------------------- /benchmark/application/linux/linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/linux/linux.sh -------------------------------------------------------------------------------- /benchmark/application/linux/load_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/linux/load_linux.sh -------------------------------------------------------------------------------- /benchmark/application/linux/rsync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/linux/rsync.sh -------------------------------------------------------------------------------- /benchmark/application/tpcc/kevin/load_tpcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/kevin/load_tpcc.sh -------------------------------------------------------------------------------- /benchmark/application/tpcc/kevin/tpcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/kevin/tpcc.sh -------------------------------------------------------------------------------- /benchmark/application/tpcc/load_tpcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/load_tpcc.sh -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/Dockerfile -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/README.md -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/add_fkey_idx.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/add_fkey_idx.sql -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/count.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/count.sql -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/create_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/create_table.sql -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/drop_cons.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/drop_cons.sql -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/load.sh -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/load_multi_schema.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/load_multi_schema.sh -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/run.sh -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/schema2/add_fkey_idx.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/schema2/add_fkey_idx.sql -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/schema2/count.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/schema2/count.sql -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/schema2/create_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/schema2/create_table.sql -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/schema2/drop_cons.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/schema2/drop_cons.sql -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/scripts/2instances/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/scripts/2instances/run.sh -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/scripts/analyze.full.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/scripts/analyze.full.sh -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/scripts/analyze.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/scripts/analyze.sh -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/scripts/analyzeR.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/scripts/analyzeR.sh -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/scripts/analyze_checkpoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/scripts/analyze_checkpoint.sh -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/scripts/analyze_checkpoint_xtradb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/scripts/analyze_checkpoint_xtradb.sh -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/scripts/analyze_checkpoint_xtradb1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/scripts/analyze_checkpoint_xtradb1.sh -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/scripts/analyze_dirty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/scripts/analyze_dirty.sh -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/scripts/analyze_evicted.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/scripts/analyze_evicted.sh -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/scripts/analyze_flushed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/scripts/analyze_flushed.sh -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/scripts/analyze_flushed_innodb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/scripts/analyze_flushed_innodb.sh -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/scripts/analyze_min.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/scripts/analyze_min.sh -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/scripts/analyze_modified.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/scripts/analyze_modified.sh -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/scripts/flashcache_stat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/scripts/flashcache_stat.sh -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/scripts/innodb_stat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/scripts/innodb_stat.sh -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/scripts/memlock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/scripts/memlock -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/scripts/memlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/scripts/memlock.c -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/scripts/multi-instances/runX.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/scripts/multi-instances/runX.sh -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/scripts/parse_trx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/scripts/parse_trx.py -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/scripts/remote/runX.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/scripts/remote/runX.sh -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/scripts/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/scripts/run.sh -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/scripts/runX.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/scripts/runX.sh -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/scripts/run_no_backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/scripts/run_no_backup.sh -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/scripts/virident_stat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/scripts/virident_stat.sh -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/src/Makefile -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/src/delivery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/src/delivery.c -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/src/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/src/driver.c -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/src/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/src/load.c -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/src/main.c -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/src/neword.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/src/neword.c -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/src/ordstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/src/ordstat.c -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/src/parse_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/src/parse_port.h -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/src/payment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/src/payment.c -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/src/rthist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/src/rthist.c -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/src/rthist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/src/rthist.h -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/src/sb_percentile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/src/sb_percentile.c -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/src/sb_percentile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/src/sb_percentile.h -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/src/sequence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/src/sequence.c -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/src/sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/src/sequence.h -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/src/slev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/src/slev.c -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/src/spt_proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/src/spt_proc.c -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/src/spt_proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/src/spt_proc.h -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/src/support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/src/support.c -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/src/tpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/src/tpc.h -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/src/trans_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/src/trans_if.h -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/total.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/total.sh -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/tpcc_load: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/tpcc_load -------------------------------------------------------------------------------- /benchmark/application/tpcc/sql/tpcc_start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/sql/tpcc_start -------------------------------------------------------------------------------- /benchmark/application/tpcc/tpcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/application/tpcc/tpcc.sh -------------------------------------------------------------------------------- /benchmark/cheeze/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/cheeze/Makefile -------------------------------------------------------------------------------- /benchmark/cheeze/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/cheeze/b -------------------------------------------------------------------------------- /benchmark/cheeze/blk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/cheeze/blk.c -------------------------------------------------------------------------------- /benchmark/cheeze/cheeze.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/cheeze/cheeze.h -------------------------------------------------------------------------------- /benchmark/cheeze/crc32c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/cheeze/crc32c.c -------------------------------------------------------------------------------- /benchmark/cheeze/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/cheeze/queue.c -------------------------------------------------------------------------------- /benchmark/cheeze/replay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/cheeze/replay.c -------------------------------------------------------------------------------- /benchmark/cheeze/shm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/cheeze/shm.c -------------------------------------------------------------------------------- /benchmark/cheeze/user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/cheeze/user.c -------------------------------------------------------------------------------- /benchmark/example: -------------------------------------------------------------------------------- 1 | filebench/example -------------------------------------------------------------------------------- /benchmark/filebench/example/micro_copyfiles.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/filebench/example/micro_copyfiles.f -------------------------------------------------------------------------------- /benchmark/filebench/example/micro_createfiles_empty.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/filebench/example/micro_createfiles_empty.f -------------------------------------------------------------------------------- /benchmark/filebench/example/micro_delete.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/filebench/example/micro_delete.f -------------------------------------------------------------------------------- /benchmark/filebench/example/micro_makedirs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/filebench/example/micro_makedirs.f -------------------------------------------------------------------------------- /benchmark/filebench/example/micro_removedirs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/filebench/example/micro_removedirs.f -------------------------------------------------------------------------------- /benchmark/filebench/filebench_nvme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/filebench/filebench_nvme.sh -------------------------------------------------------------------------------- /benchmark/filebench/filebench_vm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/filebench/filebench_vm.sh -------------------------------------------------------------------------------- /benchmark/filebench/filebench_vm_kevin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/filebench/filebench_vm_kevin.sh -------------------------------------------------------------------------------- /benchmark/filebench/load_only/micro_copyfiles.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/filebench/load_only/micro_copyfiles.f -------------------------------------------------------------------------------- /benchmark/filebench/load_only/micro_createfiles.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/filebench/load_only/micro_createfiles.f -------------------------------------------------------------------------------- /benchmark/filebench/load_only/micro_createfiles_empty.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/filebench/load_only/micro_createfiles_empty.f -------------------------------------------------------------------------------- /benchmark/filebench/load_only/micro_delete.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/filebench/load_only/micro_delete.f -------------------------------------------------------------------------------- /benchmark/filebench/load_only/micro_delete_empty.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/filebench/load_only/micro_delete_empty.f -------------------------------------------------------------------------------- /benchmark/filebench/load_only/micro_listdirs_empty.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/filebench/load_only/micro_listdirs_empty.f -------------------------------------------------------------------------------- /benchmark/filebench/load_only/micro_makedirs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/filebench/load_only/micro_makedirs.f -------------------------------------------------------------------------------- /benchmark/filebench/load_only/micro_removedirs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/filebench/load_only/micro_removedirs.f -------------------------------------------------------------------------------- /benchmark/filebench/load_only/real_fileserver.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/filebench/load_only/real_fileserver.f -------------------------------------------------------------------------------- /benchmark/filebench/load_only/real_oltp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/filebench/load_only/real_oltp.f -------------------------------------------------------------------------------- /benchmark/filebench/load_only/real_varmail.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/filebench/load_only/real_varmail.f -------------------------------------------------------------------------------- /benchmark/filebench/load_only/real_webproxy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/filebench/load_only/real_webproxy.f -------------------------------------------------------------------------------- /benchmark/filebench/load_only/real_webserver.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/filebench/load_only/real_webserver.f -------------------------------------------------------------------------------- /benchmark/filebench/workloads/micro_copyfiles.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/filebench/workloads/micro_copyfiles.f -------------------------------------------------------------------------------- /benchmark/filebench/workloads/micro_createfiles.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/filebench/workloads/micro_createfiles.f -------------------------------------------------------------------------------- /benchmark/filebench/workloads/micro_createfiles_empty.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/filebench/workloads/micro_createfiles_empty.f -------------------------------------------------------------------------------- /benchmark/filebench/workloads/micro_delete.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/filebench/workloads/micro_delete.f -------------------------------------------------------------------------------- /benchmark/filebench/workloads/micro_delete_empty.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/filebench/workloads/micro_delete_empty.f -------------------------------------------------------------------------------- /benchmark/filebench/workloads/micro_listdirs_empty.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/filebench/workloads/micro_listdirs_empty.f -------------------------------------------------------------------------------- /benchmark/filebench/workloads/micro_makedirs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/filebench/workloads/micro_makedirs.f -------------------------------------------------------------------------------- /benchmark/filebench/workloads/micro_removedirs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/filebench/workloads/micro_removedirs.f -------------------------------------------------------------------------------- /benchmark/filebench/workloads/real_fileserver.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/filebench/workloads/real_fileserver.f -------------------------------------------------------------------------------- /benchmark/filebench/workloads/real_oltp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/filebench/workloads/real_oltp.f -------------------------------------------------------------------------------- /benchmark/filebench/workloads/real_varmail.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/filebench/workloads/real_varmail.f -------------------------------------------------------------------------------- /benchmark/filebench/workloads/real_webproxy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/filebench/workloads/real_webproxy.f -------------------------------------------------------------------------------- /benchmark/filebench/workloads/real_webserver.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/filebench/workloads/real_webserver.f -------------------------------------------------------------------------------- /benchmark/fio/fio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fio/fio.sh -------------------------------------------------------------------------------- /benchmark/fio/fio_kevin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fio/fio_kevin.sh -------------------------------------------------------------------------------- /benchmark/fio/global.fio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fio/global.fio -------------------------------------------------------------------------------- /benchmark/fio/randread.fio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fio/randread.fio -------------------------------------------------------------------------------- /benchmark/fio/randwrite.fio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fio/randwrite.fio -------------------------------------------------------------------------------- /benchmark/fio/seqread.fio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fio/seqread.fio -------------------------------------------------------------------------------- /benchmark/fio/seqwrite.fio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fio/seqwrite.fio -------------------------------------------------------------------------------- /benchmark/fragmentation/frag_file.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fragmentation/frag_file.f -------------------------------------------------------------------------------- /benchmark/fragmentation/frag_filebench_geriatrix-kevin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fragmentation/frag_filebench_geriatrix-kevin.sh -------------------------------------------------------------------------------- /benchmark/fragmentation/frag_filebench_geriatrix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fragmentation/frag_filebench_geriatrix.sh -------------------------------------------------------------------------------- /benchmark/fragmentation/load_only/micro_copyfiles.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fragmentation/load_only/micro_copyfiles.f -------------------------------------------------------------------------------- /benchmark/fragmentation/load_only/micro_createfiles.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fragmentation/load_only/micro_createfiles.f -------------------------------------------------------------------------------- /benchmark/fragmentation/load_only/micro_createfiles_empty.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fragmentation/load_only/micro_createfiles_empty.f -------------------------------------------------------------------------------- /benchmark/fragmentation/load_only/micro_delete.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fragmentation/load_only/micro_delete.f -------------------------------------------------------------------------------- /benchmark/fragmentation/load_only/micro_delete_empty.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fragmentation/load_only/micro_delete_empty.f -------------------------------------------------------------------------------- /benchmark/fragmentation/load_only/micro_listdirs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fragmentation/load_only/micro_listdirs.f -------------------------------------------------------------------------------- /benchmark/fragmentation/load_only/micro_makedirs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fragmentation/load_only/micro_makedirs.f -------------------------------------------------------------------------------- /benchmark/fragmentation/load_only/micro_removedirs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fragmentation/load_only/micro_removedirs.f -------------------------------------------------------------------------------- /benchmark/fragmentation/load_only/real_fileserver.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fragmentation/load_only/real_fileserver.f -------------------------------------------------------------------------------- /benchmark/fragmentation/load_only/real_oltp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fragmentation/load_only/real_oltp.f -------------------------------------------------------------------------------- /benchmark/fragmentation/load_only/real_varmail.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fragmentation/load_only/real_varmail.f -------------------------------------------------------------------------------- /benchmark/fragmentation/load_only/real_webproxy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fragmentation/load_only/real_webproxy.f -------------------------------------------------------------------------------- /benchmark/fragmentation/load_only/real_webserver.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fragmentation/load_only/real_webserver.f -------------------------------------------------------------------------------- /benchmark/fragmentation/workloads/micro_copyfiles.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fragmentation/workloads/micro_copyfiles.f -------------------------------------------------------------------------------- /benchmark/fragmentation/workloads/micro_createfiles.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fragmentation/workloads/micro_createfiles.f -------------------------------------------------------------------------------- /benchmark/fragmentation/workloads/micro_createfiles_empty.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fragmentation/workloads/micro_createfiles_empty.f -------------------------------------------------------------------------------- /benchmark/fragmentation/workloads/micro_delete.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fragmentation/workloads/micro_delete.f -------------------------------------------------------------------------------- /benchmark/fragmentation/workloads/micro_delete_empty.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fragmentation/workloads/micro_delete_empty.f -------------------------------------------------------------------------------- /benchmark/fragmentation/workloads/micro_listdirs_empty.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fragmentation/workloads/micro_listdirs_empty.f -------------------------------------------------------------------------------- /benchmark/fragmentation/workloads/micro_makedirs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fragmentation/workloads/micro_makedirs.f -------------------------------------------------------------------------------- /benchmark/fragmentation/workloads/micro_removedirs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fragmentation/workloads/micro_removedirs.f -------------------------------------------------------------------------------- /benchmark/fragmentation/workloads/real_fileserver.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fragmentation/workloads/real_fileserver.f -------------------------------------------------------------------------------- /benchmark/fragmentation/workloads/real_oltp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fragmentation/workloads/real_oltp.f -------------------------------------------------------------------------------- /benchmark/fragmentation/workloads/real_varmail.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fragmentation/workloads/real_varmail.f -------------------------------------------------------------------------------- /benchmark/fragmentation/workloads/real_webproxy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fragmentation/workloads/real_webproxy.f -------------------------------------------------------------------------------- /benchmark/fragmentation/workloads/real_webserver.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/fragmentation/workloads/real_webserver.f -------------------------------------------------------------------------------- /benchmark/general/blk_map/.nfs0000000000fc177d00000001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/general/blk_map/.nfs0000000000fc177d00000001 -------------------------------------------------------------------------------- /benchmark/general/blk_map/01_create_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/general/blk_map/01_create_map.py -------------------------------------------------------------------------------- /benchmark/general/blk_map/02_trace_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/general/blk_map/02_trace_map.py -------------------------------------------------------------------------------- /benchmark/general/blk_map/dump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/general/blk_map/dump.txt -------------------------------------------------------------------------------- /benchmark/general/blk_map/parse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/general/blk_map/parse.sh -------------------------------------------------------------------------------- /benchmark/general/blktrace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/general/blktrace.sh -------------------------------------------------------------------------------- /benchmark/general/btrfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/general/btrfs.sh -------------------------------------------------------------------------------- /benchmark/general/cutloadtrace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/general/cutloadtrace.sh -------------------------------------------------------------------------------- /benchmark/general/cuttrace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/general/cuttrace.sh -------------------------------------------------------------------------------- /benchmark/general/dumpfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/general/dumpfs.sh -------------------------------------------------------------------------------- /benchmark/general/ext4_data_journal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/general/ext4_data_journal.sh -------------------------------------------------------------------------------- /benchmark/general/ext4_metadata_journal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/general/ext4_metadata_journal.sh -------------------------------------------------------------------------------- /benchmark/general/ext4_no_journal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/general/ext4_no_journal.sh -------------------------------------------------------------------------------- /benchmark/general/ext4_wb_journal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/general/ext4_wb_journal.sh -------------------------------------------------------------------------------- /benchmark/general/f2fs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/general/f2fs.sh -------------------------------------------------------------------------------- /benchmark/general/flush_cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/general/flush_cache.sh -------------------------------------------------------------------------------- /benchmark/general/genfiostat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/general/genfiostat.sh -------------------------------------------------------------------------------- /benchmark/general/genmasterstat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/general/genmasterstat.sh -------------------------------------------------------------------------------- /benchmark/general/genstat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/general/genstat.sh -------------------------------------------------------------------------------- /benchmark/general/gentrace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/general/gentrace.sh -------------------------------------------------------------------------------- /benchmark/general/get_lba_by_inode_number.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/general/get_lba_by_inode_number.sh -------------------------------------------------------------------------------- /benchmark/general/io_count_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/general/io_count_parser.c -------------------------------------------------------------------------------- /benchmark/general/kukasum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/general/kukasum.sh -------------------------------------------------------------------------------- /benchmark/general/parser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/general/parser.sh -------------------------------------------------------------------------------- /benchmark/general/parser_ext4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/general/parser_ext4 -------------------------------------------------------------------------------- /benchmark/general/parser_xfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/general/parser_xfs -------------------------------------------------------------------------------- /benchmark/general/vmsum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/general/vmsum.sh -------------------------------------------------------------------------------- /benchmark/general/xfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/general/xfs.sh -------------------------------------------------------------------------------- /benchmark/setup_cheeze.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/setup_cheeze.sh -------------------------------------------------------------------------------- /benchmark/setup_vm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/setup_vm.sh -------------------------------------------------------------------------------- /benchmark/ssd-fio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/ssd-fio.sh -------------------------------------------------------------------------------- /benchmark/unused/filebench_betrfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/unused/filebench_betrfs.sh -------------------------------------------------------------------------------- /benchmark/unused/filebench_ext4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/unused/filebench_ext4.sh -------------------------------------------------------------------------------- /benchmark/unused/filebench_vm-delay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/unused/filebench_vm-delay.sh -------------------------------------------------------------------------------- /benchmark/unused/filebench_vm-fio-delay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/unused/filebench_vm-fio-delay.sh -------------------------------------------------------------------------------- /benchmark/unused/filebench_vm2vm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/unused/filebench_vm2vm.sh -------------------------------------------------------------------------------- /benchmark/unused/lightfs/bench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/unused/lightfs/bench.sh -------------------------------------------------------------------------------- /benchmark/unused/lightfs/setup_lightfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/unused/lightfs/setup_lightfs.sh -------------------------------------------------------------------------------- /benchmark/unused/lightfs/setup_vm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/unused/lightfs/setup_vm.sh -------------------------------------------------------------------------------- /benchmark/unused/lightfs/tmp/copyfiles_16_gamma_fuse.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/unused/lightfs/tmp/copyfiles_16_gamma_fuse.f -------------------------------------------------------------------------------- /benchmark/unused/lightfs/tmp/filemicro_createfiles_16_fuse.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/unused/lightfs/tmp/filemicro_createfiles_16_fuse.f -------------------------------------------------------------------------------- /benchmark/unused/lightfs/tmp/filemicro_delete_16_fuse.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/unused/lightfs/tmp/filemicro_delete_16_fuse.f -------------------------------------------------------------------------------- /benchmark/unused/lightfs/tmp/fileserver_gamma_fuse.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/unused/lightfs/tmp/fileserver_gamma_fuse.f -------------------------------------------------------------------------------- /benchmark/unused/lightfs/tmp/makedirs_16_fuse.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/unused/lightfs/tmp/makedirs_16_fuse.f -------------------------------------------------------------------------------- /benchmark/unused/lightfs/tmp/micro_copyfiles.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/unused/lightfs/tmp/micro_copyfiles.f -------------------------------------------------------------------------------- /benchmark/unused/lightfs/tmp/micro_createfiles.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/unused/lightfs/tmp/micro_createfiles.f -------------------------------------------------------------------------------- /benchmark/unused/lightfs/tmp/micro_createfiles_empty.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/unused/lightfs/tmp/micro_createfiles_empty.f -------------------------------------------------------------------------------- /benchmark/unused/lightfs/tmp/micro_delete.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/unused/lightfs/tmp/micro_delete.f -------------------------------------------------------------------------------- /benchmark/unused/lightfs/tmp/micro_makedirs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/unused/lightfs/tmp/micro_makedirs.f -------------------------------------------------------------------------------- /benchmark/unused/lightfs/tmp/micro_removedirs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/unused/lightfs/tmp/micro_removedirs.f -------------------------------------------------------------------------------- /benchmark/unused/lightfs/tmp/removedirs_16_fuse.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/unused/lightfs/tmp/removedirs_16_fuse.f -------------------------------------------------------------------------------- /benchmark/unused/lightfs/tmp/tmp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/unused/lightfs/tmp/tmp.f -------------------------------------------------------------------------------- /benchmark/unused/lightfs/tmp/tmp_fileserver_gamma_fuse.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/unused/lightfs/tmp/tmp_fileserver_gamma_fuse.f -------------------------------------------------------------------------------- /benchmark/unused/lightfs/tmp/varmail_gamma_fuse.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/unused/lightfs/tmp/varmail_gamma_fuse.f -------------------------------------------------------------------------------- /benchmark/unused/lightfs/tmp/webproxy_gamma_fuse.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/unused/lightfs/tmp/webproxy_gamma_fuse.f -------------------------------------------------------------------------------- /benchmark/unused/lightfs/tmp/webserver_gamma_fuse.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/unused/lightfs/tmp/webserver_gamma_fuse.f -------------------------------------------------------------------------------- /benchmark/unused/lightfs/ttest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/unused/lightfs/ttest.sh -------------------------------------------------------------------------------- /benchmark/unused/setup_cheeze_vm2vm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/benchmark/unused/setup_cheeze_vm2vm.sh -------------------------------------------------------------------------------- /bin/rm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/bin/rm -------------------------------------------------------------------------------- /env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/env -------------------------------------------------------------------------------- /kevinfs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/kevinfs/.gitignore -------------------------------------------------------------------------------- /kevinfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/kevinfs/Makefile -------------------------------------------------------------------------------- /kevinfs/bloomfilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/kevinfs/bloomfilter.c -------------------------------------------------------------------------------- /kevinfs/bloomfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/kevinfs/bloomfilter.h -------------------------------------------------------------------------------- /kevinfs/cheeze/blk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/kevinfs/cheeze/blk.c -------------------------------------------------------------------------------- /kevinfs/cheeze/cheeze.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/kevinfs/cheeze/cheeze.h -------------------------------------------------------------------------------- /kevinfs/cheeze/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/kevinfs/cheeze/queue.c -------------------------------------------------------------------------------- /kevinfs/cheeze/shm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/kevinfs/cheeze/shm.c -------------------------------------------------------------------------------- /kevinfs/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/kevinfs/db.h -------------------------------------------------------------------------------- /kevinfs/dummy.dev: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kevinfs/lightfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/kevinfs/lightfs.h -------------------------------------------------------------------------------- /kevinfs/lightfs_bstore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/kevinfs/lightfs_bstore.c -------------------------------------------------------------------------------- /kevinfs/lightfs_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/kevinfs/lightfs_cache.c -------------------------------------------------------------------------------- /kevinfs/lightfs_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/kevinfs/lightfs_cache.h -------------------------------------------------------------------------------- /kevinfs/lightfs_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/kevinfs/lightfs_db.c -------------------------------------------------------------------------------- /kevinfs/lightfs_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/kevinfs/lightfs_db.h -------------------------------------------------------------------------------- /kevinfs/lightfs_db_env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/kevinfs/lightfs_db_env.c -------------------------------------------------------------------------------- /kevinfs/lightfs_db_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/kevinfs/lightfs_db_env.h -------------------------------------------------------------------------------- /kevinfs/lightfs_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/kevinfs/lightfs_debug.h -------------------------------------------------------------------------------- /kevinfs/lightfs_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/kevinfs/lightfs_fs.h -------------------------------------------------------------------------------- /kevinfs/lightfs_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/kevinfs/lightfs_io.c -------------------------------------------------------------------------------- /kevinfs/lightfs_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/kevinfs/lightfs_io.h -------------------------------------------------------------------------------- /kevinfs/lightfs_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/kevinfs/lightfs_module.c -------------------------------------------------------------------------------- /kevinfs/lightfs_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/kevinfs/lightfs_queue.c -------------------------------------------------------------------------------- /kevinfs/lightfs_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/kevinfs/lightfs_queue.h -------------------------------------------------------------------------------- /kevinfs/lightfs_reada.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/kevinfs/lightfs_reada.c -------------------------------------------------------------------------------- /kevinfs/lightfs_reada.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/kevinfs/lightfs_reada.h -------------------------------------------------------------------------------- /kevinfs/lightfs_super.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/kevinfs/lightfs_super.c -------------------------------------------------------------------------------- /kevinfs/lightfs_txn_hdlr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/kevinfs/lightfs_txn_hdlr.c -------------------------------------------------------------------------------- /kevinfs/lightfs_txn_hdlr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/kevinfs/lightfs_txn_hdlr.h -------------------------------------------------------------------------------- /kevinfs/mkinclude: -------------------------------------------------------------------------------- 1 | KDIR=$(shell uname -r) 2 | -------------------------------------------------------------------------------- /kevinfs/murmur3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/kevinfs/murmur3.c -------------------------------------------------------------------------------- /kevinfs/murmur3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/kevinfs/murmur3.h -------------------------------------------------------------------------------- /kevinfs/rbtreekv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/kevinfs/rbtreekv.c -------------------------------------------------------------------------------- /kevinfs/rbtreekv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/kevinfs/rbtreekv.h -------------------------------------------------------------------------------- /kevinfs/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/kevinfs/run.sh -------------------------------------------------------------------------------- /libvirt/passthru.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/libvirt/passthru.xml -------------------------------------------------------------------------------- /patches/geriatrix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgist-datalab/kevin/HEAD/patches/geriatrix.patch --------------------------------------------------------------------------------