├── zcsd ├── compsys2021 │ ├── compsys2021.out │ ├── compsys2021.snm │ ├── compsys2021.toc │ ├── vu-logo.png │ ├── resources │ │ ├── images │ │ │ ├── vu-logo.png │ │ │ ├── comp-stor.jpg │ │ │ ├── intro-zns.png │ │ │ ├── comp-stor2.jpg │ │ │ ├── storage-gap.png │ │ │ ├── uva-logo-tag.jpg │ │ │ ├── filter-example.png │ │ │ ├── performance-crop.pdf │ │ │ ├── zcsd-arch-final.pdf │ │ │ ├── zns-ssd-kernel-landscape.png │ │ │ └── universiteit-van-amsterdam-basis-logo.jpg │ │ └── c │ │ │ └── filter.c │ ├── compsys2021.bbl │ └── beamercolorthemecern.sty ├── presentation │ ├── presentation.out │ ├── presentation.snm │ ├── presentation.toc │ ├── vu-logo.png │ ├── resources │ │ └── images │ │ │ ├── vu-logo.png │ │ │ ├── uva-logo-tag.jpg │ │ │ ├── zns-ssd-kernel-landscape.png │ │ │ └── universiteit-van-amsterdam-basis-logo.jpg │ ├── bilbliography.bib │ └── beamercolorthemecern.sty └── documentation │ └── resources │ ├── bash │ ├── gdb-qemu.sh │ ├── nvme-subsystem.sh │ ├── spdk.service │ └── inxi.sh │ └── images │ ├── vu-logo.png │ ├── uva-logo.png │ ├── arrow-circle.png │ ├── bpf-landscape.png │ ├── bpf-landscape-legend.png │ ├── prototype-components.png │ ├── prototype-landscape.png │ ├── spdk-zns-ssd-landscape.png │ └── zns-ssd-kernel-landscape.png ├── thesis ├── 12_backmatter │ └── declaration.tex ├── Latex │ └── Classes │ │ └── CUEDthesisPSnPDF.texshop ├── resources │ ├── bash │ │ ├── setup-fluffle.sh │ │ ├── setup-spdk.sh │ │ ├── check-spdk.sh │ │ ├── delete-namespace.sh │ │ ├── format-f2fs.sh │ │ ├── create-namespace-fluffle.sh │ │ ├── create-namespace-f2fs.sh │ │ ├── qemu-parameters.sh │ │ └── vfio.sh │ ├── images │ │ ├── vu-logo.png │ │ ├── f2fs-nat.pdf │ │ ├── ubpf-abi.pdf │ │ ├── f2fs-layout.pdf │ │ ├── f2fs-layout.png │ │ ├── offloading.png │ │ ├── fluffle-layout.pdf │ │ ├── csx-fs-agnostic.pdf │ │ ├── csx-fs-agnostic.png │ │ ├── fluffle-path-map.pdf │ │ ├── kernel-submission.pdf │ │ ├── fluffle-data-block.pdf │ │ ├── fluffle-inode-sync.pdf │ │ ├── fluffle-inodeblock.pdf │ │ ├── fluffle-layout-log.pdf │ │ ├── loader-pfs-arch-v2.pdf │ │ ├── loader-pfs-arch-v3.pdf │ │ ├── loader-pfs-arch-v3.png │ │ ├── module-dependencies.pdf │ │ ├── results-passthrough.pdf │ │ ├── results-random-read.pdf │ │ ├── results-sequential.pdf │ │ ├── storage-bottleneck.png │ │ ├── write-amplification.pdf │ │ ├── zns-vs-conventional.pdf │ │ ├── current-event-kernel.png │ │ ├── offloading-management.png │ │ ├── results-random-write.pdf │ │ ├── results-random-write.png │ │ ├── results-shannon-lower.pdf │ │ ├── results-shannon-upper.pdf │ │ ├── loader-pfs-arch-1.drawio.png │ │ ├── loader-pfs-arch-2.drawio.png │ │ ├── loader-pfs-arch-3.drawio.png │ │ ├── results-concurrent-read.pdf │ │ ├── results-sequential-write.pdf │ │ └── zns-vs-conventional-layout.pdf │ └── measurements │ │ ├── instrumentation-overhead-qemu-5900x.csv │ │ └── instrumentation-overhead-5900x.csv └── 0_frontmatter │ ├── figures │ ├── uva_logo.jpg │ ├── vu-griffioen.pdf │ ├── module-dependencies.pdf │ ├── loader-pfs-arch-1.drawio.png │ ├── loader-pfs-arch-2.drawio.png │ └── loader-pfs-arch-3.drawio.png │ └── dedication.tex ├── tests ├── src │ └── tests.cxx └── include │ └── tests.hpp ├── python ├── requirements.txt └── graphs │ └── README.md ├── fosdem2023 ├── vu-logo.png ├── resources │ ├── images │ │ ├── csd.png │ │ ├── lfs.png │ │ ├── zns.png │ │ ├── zns2.png │ │ ├── compile.png │ │ ├── crystal.png │ │ ├── f2fs-nat.pdf │ │ ├── results.pdf │ │ ├── results.png │ │ ├── ubpf-abi.pdf │ │ ├── vu-logo.png │ │ ├── zns-lfs.png │ │ ├── zns-lfs2.png │ │ ├── zns-lfs3.png │ │ ├── bottleneck.png │ │ ├── challenges.png │ │ ├── comp-stor.jpg │ │ ├── comp-stor2.jpg │ │ ├── intro-zns.png │ │ ├── offloading.png │ │ ├── qemu-setup.png │ │ ├── zns-simple.png │ │ ├── conventional.png │ │ ├── data-problem.png │ │ ├── demo-kernel-2.png │ │ ├── demo-kernel-3.png │ │ ├── demo-kernel.png │ │ ├── f2fs-layout.pdf │ │ ├── f2fs-layout.png │ │ ├── kernel-calls.png │ │ ├── lfs-example.png │ │ ├── python-kernel.png │ │ ├── qemu-setup2.png │ │ ├── related-work.png │ │ ├── storage-gap.png │ │ ├── ubpf-medium.png │ │ ├── ubpf-simple.png │ │ ├── uva-logo-tag.jpg │ │ ├── xattr-inode.png │ │ ├── csx-fs-agnostic.pdf │ │ ├── csx-fs-agnostic.png │ │ ├── filter-example.png │ │ ├── fluffle-layout.pdf │ │ ├── zcsd-arch-final.pdf │ │ ├── fluffle-data-block.pdf │ │ ├── fluffle-inode-sync.pdf │ │ ├── fluffle-inodeblock.pdf │ │ ├── fluffle-layout-log.pdf │ │ ├── fluffle-path-map.pdf │ │ ├── kernel-submission.pdf │ │ ├── loader-pfs-arch-v2.pdf │ │ ├── loader-pfs-arch-v3.pdf │ │ ├── loader-pfs-arch-v3.png │ │ ├── modules-interfaces.png │ │ ├── performance-crop.pdf │ │ ├── results-sequential.pdf │ │ ├── storage-bottleneck.png │ │ ├── ubpf-medium-design.png │ │ ├── current-event-kernel.png │ │ ├── module-dependencies.pdf │ │ ├── python-kernel-carbon.png │ │ ├── results-passthrough.pdf │ │ ├── results-random-read.pdf │ │ ├── results-random-write.pdf │ │ ├── results-random-write.png │ │ ├── storage-bottleneck2.png │ │ ├── write-amplification.pdf │ │ ├── zns-vs-conventional.pdf │ │ ├── fluffle-layout-complete.png │ │ ├── offloading-management.png │ │ ├── python-kernel-carbon2.png │ │ ├── results-concurrent-read.pdf │ │ ├── results-shannon-lower.pdf │ │ ├── results-shannon-upper.pdf │ │ ├── loader-pfs-arch-1.drawio.png │ │ ├── loader-pfs-arch-2.drawio.png │ │ ├── loader-pfs-arch-3.drawio.png │ │ ├── results-sequential-write.pdf │ │ ├── zns-ssd-kernel-landscape.png │ │ ├── zns-vs-conventional-expanded.png │ │ ├── zns-vs-conventional-layout.pdf │ │ └── universiteit-van-amsterdam-basis-logo.jpg │ └── c │ │ └── filter.c └── beamercolorthemecern.sty ├── ictopen2022 ├── vu-logo.png ├── resources │ ├── images │ │ ├── csd.png │ │ ├── lfs.png │ │ ├── compile.png │ │ ├── crystal.png │ │ ├── results.pdf │ │ ├── results.png │ │ ├── vu-logo.png │ │ ├── comp-stor.jpg │ │ ├── f2fs-nat.pdf │ │ ├── intro-zns.png │ │ ├── ubpf-abi.pdf │ │ ├── bottleneck.png │ │ ├── challenges.png │ │ ├── comp-stor2.jpg │ │ ├── data-problem.png │ │ ├── offloading.png │ │ ├── storage-gap.png │ │ ├── ubpf-simple.png │ │ ├── uva-logo-tag.jpg │ │ ├── filter-example.png │ │ ├── csx-fs-agnostic.png │ │ ├── kernel-submission.pdf │ │ ├── performance-crop.pdf │ │ ├── zcsd-arch-final.pdf │ │ ├── loader-pfs-arch-v3.png │ │ ├── module-dependencies.pdf │ │ ├── storage-bottleneck.png │ │ ├── write-amplification.pdf │ │ ├── zns-vs-conventional.pdf │ │ ├── zns-ssd-kernel-landscape.png │ │ ├── zns-vs-conventional-layout.pdf │ │ └── universiteit-van-amsterdam-basis-logo.jpg │ └── c │ │ └── filter.c └── beamercolorthemecern.sty ├── thesis-presentation ├── vu-logo.png ├── resources │ ├── images │ │ ├── csd.png │ │ ├── lfs.png │ │ ├── zns.png │ │ ├── qrcode.png │ │ ├── comp-stor.jpg │ │ ├── compile.png │ │ ├── crystal.png │ │ ├── f2fs-nat.pdf │ │ ├── intro-zns.png │ │ ├── results.pdf │ │ ├── results.png │ │ ├── ubpf-abi.pdf │ │ ├── vu-logo.png │ │ ├── zns-lfs.png │ │ ├── bottleneck.png │ │ ├── challenges.png │ │ ├── comp-stor2.jpg │ │ ├── lfs-example.png │ │ ├── offloading.png │ │ ├── storage-gap.png │ │ ├── ubpf-medium.png │ │ ├── ubpf-simple.png │ │ ├── xattr-inode.png │ │ ├── zns-simple.png │ │ ├── data-problem.png │ │ ├── filter-example.png │ │ ├── related-work.png │ │ ├── uva-logo-tag.jpg │ │ ├── csx-fs-agnostic.pdf │ │ ├── csx-fs-agnostic.png │ │ ├── fluffle-path-map.pdf │ │ ├── performance-crop.pdf │ │ ├── zcsd-arch-final.pdf │ │ ├── fluffle-data-block.pdf │ │ ├── fluffle-inode-sync.pdf │ │ ├── kernel-submission.pdf │ │ ├── loader-pfs-arch-v3.png │ │ ├── module-dependencies.pdf │ │ ├── modules-interfaces.png │ │ ├── results-passthrough.pdf │ │ ├── results-sequential.pdf │ │ ├── storage-bottleneck.png │ │ ├── ubpf-medium-design.png │ │ ├── write-amplification.pdf │ │ ├── zns-vs-conventional.pdf │ │ ├── offloading-management.png │ │ ├── results-shannon-lower.pdf │ │ ├── results-shannon-upper.pdf │ │ ├── fluffle-layout-complete.png │ │ ├── results-sequential-write.pdf │ │ ├── zns-ssd-kernel-landscape.png │ │ ├── zns-vs-conventional-layout.pdf │ │ ├── zns-vs-conventional-expanded.png │ │ └── universiteit-van-amsterdam-basis-logo.jpg │ └── c │ │ └── filter.c └── beamercolorthemecern.sty ├── measurements ├── fio │ ├── fio-rand-write-fluffle-2-64.csv │ ├── fio-rand-read-fluffle-16-64.csv │ ├── fio-rand-read-fluffle-2-64.csv │ ├── fio-rand-read-fluffle-32-64.csv │ ├── fio-rand-read-fluffle-4-64.csv │ ├── fio-rand-write-fluffle-16-64.csv │ ├── fio-rand-write-fluffle-32-64.csv │ ├── fio-rand-write-fluffle-4-64.csv │ ├── fio-rand-write-fluffle-8-64.csv │ ├── fio-rand-read-fluffle-8-64.csv │ ├── README.md │ ├── fio-seq-read-f2fs-1-64k.csv │ ├── fio-seq-read-f2fs-16-64k.csv │ ├── fio-seq-read-f2fs-2-64k.csv │ ├── fio-seq-read-f2fs-32-64k.csv │ ├── fio-seq-read-f2fs-4-64k.csv │ ├── fio-seq-read-f2fs-8-64k.csv │ ├── fio-seq-read-fluffle-1-64k.csv │ ├── fio-seq-read-fluffle-2-64k.csv │ ├── fio-seq-read-fluffle-4-64k.csv │ ├── fio-seq-read-fluffle-8-64k.csv │ ├── fio-seq-write-f2fs-1-64k.csv │ ├── fio-seq-write-f2fs-16-64k.csv │ ├── fio-seq-write-f2fs-2-64k.csv │ ├── fio-seq-write-f2fs-32-64k.csv │ ├── fio-seq-write-f2fs-4-64k.csv │ ├── fio-seq-write-f2fs-8-64k.csv │ ├── fio-seq-write-fluffle-64k.csv │ ├── fio-seq-read-fluffle-1-1024k.csv │ ├── fio-seq-read-fluffle-1-256k.csv │ ├── fio-seq-read-fluffle-16-1024k.csv │ ├── fio-seq-read-fluffle-16-256k.csv │ ├── fio-seq-read-fluffle-16-64k.csv │ ├── fio-seq-read-fluffle-2-1024k.csv │ ├── fio-seq-read-fluffle-2-256k.csv │ ├── fio-seq-read-fluffle-32-1024k.csv │ ├── fio-seq-read-fluffle-32-256k.csv │ ├── fio-seq-read-fluffle-32-64k.csv │ ├── fio-seq-read-fluffle-4-1024k.csv │ ├── fio-seq-read-fluffle-4-256k.csv │ ├── fio-seq-read-fluffle-8-1024k.csv │ ├── fio-seq-read-fluffle-8-256k.csv │ ├── fio-seq-write-fluffle-1-64k.csv │ ├── fio-seq-write-fluffle-16-64k.csv │ ├── fio-seq-write-fluffle-2-64k.csv │ ├── fio-seq-write-fluffle-32-64k.csv │ ├── fio-seq-write-fluffle-4-64k.csv │ ├── fio-seq-write-fluffle-8-64k.csv │ ├── fio-seq-concurrent-read-1-flufflefs-1024k.csv │ ├── fio-seq-concurrent-read-1-flufflefs-4096k.csv │ ├── fio-seq-concurrent-read-2-flufflefs-1024k.csv │ ├── fio-seq-concurrent-read-2-flufflefs-4096k.csv │ ├── fio-seq-concurrent-read-3-flufflefs-1024k.csv │ ├── fio-seq-concurrent-read-3-flufflefs-4096k.csv │ ├── fio-seq-concurrent-read-4-flufflefs-1024k.csv │ ├── fio-seq-concurrent-read-4-flufflefs-4096k.csv │ ├── fio-seq-read-f2fs-1-16384k.csv │ ├── fio-seq-concurrent-read-1-flufflefs-1048576k.csv │ ├── fio-seq-concurrent-read-1-flufflefs-16384k.csv │ ├── fio-seq-concurrent-read-1-flufflefs-262144k.csv │ ├── fio-seq-concurrent-read-1-flufflefs-65536k.csv │ ├── fio-seq-concurrent-read-2-flufflefs-1048576k.csv │ ├── fio-seq-concurrent-read-2-flufflefs-16384k.csv │ ├── fio-seq-concurrent-read-2-flufflefs-262144k.csv │ ├── fio-seq-concurrent-read-2-flufflefs-65536k.csv │ ├── fio-seq-concurrent-read-3-flufflefs-1048576k.csv │ ├── fio-seq-concurrent-read-3-flufflefs-16384k.csv │ ├── fio-seq-concurrent-read-3-flufflefs-262144k.csv │ ├── fio-seq-concurrent-read-3-flufflefs-65536k.csv │ ├── fio-seq-concurrent-read-4-flufflefs-1048576k.csv │ ├── fio-seq-concurrent-read-4-flufflefs-16384k.csv │ ├── fio-seq-concurrent-read-4-flufflefs-262144k.csv │ ├── fio-seq-concurrent-read-4-flufflefs-65536k.csv │ ├── fio-seq-concurrent-write-3-flufflefs-1048576k.csv │ ├── fio-seq-concurrent-write-3-flufflefs-65536k.csv │ ├── fio-seq-concurrent-write-4-flufflefs-1048576k.csv │ ├── fio-seq-concurrent-write-4-flufflefs-16384k.csv │ ├── fio-seq-concurrent-write-4-flufflefs-262144k.csv │ ├── fio-seq-concurrent-write-4-flufflefs-65536k.csv │ ├── fio-seq-concurrent-write-2-flufflefs-65536k.csv │ ├── fio-seq-concurrent-write-3-flufflefs-262144k.csv │ ├── fio-seq-concurrent-write-4-flufflefs-4096k.csv │ ├── fio-seq-read-fluffle-1-4096k.csv │ ├── fio-seq-read-fluffle-16-4096k.csv │ ├── fio-seq-read-fluffle-32-4096k.csv │ ├── fio-seq-read-fluffle-4-4096k.csv │ ├── fio-seq-write-f2fs-4-256k.csv │ ├── fio-seq-concurrent-write-2-flufflefs-1048576k.csv │ ├── fio-seq-concurrent-write-2-flufflefs-16384k.csv │ ├── fio-seq-concurrent-write-3-flufflefs-4096k.csv │ ├── fio-seq-read-f2fs-1-1024k.csv │ ├── fio-seq-read-f2fs-1-256k.csv │ ├── fio-seq-read-f2fs-1-4096k.csv │ ├── fio-seq-read-f2fs-16-1024k.csv │ ├── fio-seq-read-f2fs-16-256k.csv │ ├── fio-seq-read-f2fs-16-4096k.csv │ ├── fio-seq-read-f2fs-2-1024k.csv │ ├── fio-seq-read-f2fs-2-16384k.csv │ ├── fio-seq-read-f2fs-2-256k.csv │ ├── fio-seq-read-f2fs-2-4096k.csv │ ├── fio-seq-read-f2fs-32-1024k.csv │ ├── fio-seq-read-f2fs-32-256k.csv │ ├── fio-seq-read-f2fs-32-4096k.csv │ ├── fio-seq-read-f2fs-4-1024k.csv │ ├── fio-seq-read-f2fs-4-16384k.csv │ ├── fio-seq-read-f2fs-4-256k.csv │ ├── fio-seq-read-f2fs-4-4096k.csv │ ├── fio-seq-read-f2fs-8-1024k.csv │ ├── fio-seq-read-f2fs-8-16384k.csv │ ├── fio-seq-read-f2fs-8-256k.csv │ ├── fio-seq-read-f2fs-8-4096k.csv │ ├── fio-seq-read-fluffle-2-4096k.csv │ ├── fio-seq-read-fluffle-8-4096k.csv │ ├── fio-seq-write-f2fs-1-1024k.csv │ ├── fio-seq-write-f2fs-1-256k.csv │ ├── fio-seq-write-f2fs-16-256k.csv │ ├── fio-seq-write-f2fs-2-1024k.csv │ ├── fio-seq-write-f2fs-2-256k.csv │ ├── fio-seq-write-f2fs-2-4096k.csv │ ├── fio-seq-write-f2fs-32-256k.csv │ ├── fio-seq-write-f2fs-4-1024k.csv │ ├── fio-seq-write-f2fs-4-4096k.csv │ ├── fio-seq-write-f2fs-8-1024k.csv │ ├── fio-seq-write-f2fs-8-256k.csv │ ├── fio-seq-write-f2fs-8-4096k.csv │ ├── fio-seq-write-fluffle-16-256k.csv │ ├── fio-seq-write-fluffle-256k.csv │ ├── fio-seq-write-fluffle-32-256k.csv │ ├── fio-seq-write-fluffle-8-256k.csv │ ├── fio-seq-concurrent-write-2-flufflefs-262144k.csv │ ├── fio-seq-concurrent-write-2-flufflefs-4096k.csv │ ├── fio-seq-concurrent-write-3-flufflefs-1024k.csv │ ├── fio-seq-concurrent-write-3-flufflefs-16384k.csv │ ├── fio-seq-concurrent-write-4-flufflefs-1024k.csv │ ├── fio-seq-read-f2fs-16-16384k.csv │ ├── fio-seq-read-f2fs-32-16384k.csv │ ├── fio-seq-read-fluffle-1-1048576k.csv │ ├── fio-seq-read-fluffle-1-16384k.csv │ ├── fio-seq-read-fluffle-1-262144k.csv │ ├── fio-seq-read-fluffle-1-65536k.csv │ ├── fio-seq-read-fluffle-16-16384k.csv │ ├── fio-seq-read-fluffle-16-262144k.csv │ ├── fio-seq-read-fluffle-16-65536k.csv │ ├── fio-seq-read-fluffle-2-1048576k.csv │ ├── fio-seq-read-fluffle-2-16384k.csv │ ├── fio-seq-read-fluffle-2-262144k.csv │ ├── fio-seq-read-fluffle-2-65536k.csv │ ├── fio-seq-read-fluffle-32-16384k.csv │ ├── fio-seq-read-fluffle-32-262144k.csv │ ├── fio-seq-read-fluffle-32-65536k.csv │ ├── fio-seq-read-fluffle-4-1048576k.csv │ ├── fio-seq-read-fluffle-4-16384k.csv │ ├── fio-seq-read-fluffle-4-262144k.csv │ ├── fio-seq-read-fluffle-4-65536k.csv │ ├── fio-seq-read-fluffle-8-1048576k.csv │ ├── fio-seq-read-fluffle-8-16384k.csv │ ├── fio-seq-read-fluffle-8-262144k.csv │ ├── fio-seq-read-fluffle-8-65536k.csv │ ├── fio-seq-write-f2fs-1-16384k.csv │ ├── fio-seq-write-f2fs-1-4096k.csv │ ├── fio-seq-write-f2fs-16-1024k.csv │ ├── fio-seq-write-f2fs-4-16384k.csv │ ├── fio-seq-write-f2fs-8-16384k.csv │ ├── fio-seq-write-fluffle-1-1024k.csv │ ├── fio-seq-write-fluffle-1-16384k.csv │ ├── fio-seq-write-fluffle-1-256k.csv │ ├── fio-seq-write-fluffle-1-262144k.csv │ ├── fio-seq-write-fluffle-1-4096k.csv │ ├── fio-seq-write-fluffle-1-65536k.csv │ ├── fio-seq-write-fluffle-1024k.csv │ ├── fio-seq-write-fluffle-1048576k.csv │ ├── fio-seq-write-fluffle-16-1024k.csv │ ├── fio-seq-write-fluffle-16-16384k.csv │ ├── fio-seq-write-fluffle-16-4096k.csv │ ├── fio-seq-write-fluffle-16-65536k.csv │ ├── fio-seq-write-fluffle-16384k.csv │ ├── fio-seq-write-fluffle-2-1024k.csv │ ├── fio-seq-write-fluffle-2-16384k.csv │ ├── fio-seq-write-fluffle-2-256k.csv │ ├── fio-seq-write-fluffle-2-262144k.csv │ ├── fio-seq-write-fluffle-2-4096k.csv │ ├── fio-seq-write-fluffle-2-65536k.csv │ ├── fio-seq-write-fluffle-262144k.csv │ ├── fio-seq-write-fluffle-32-1024k.csv │ ├── fio-seq-write-fluffle-32-16384k.csv │ ├── fio-seq-write-fluffle-32-4096k.csv │ ├── fio-seq-write-fluffle-32-65536k.csv │ ├── fio-seq-write-fluffle-4-1024k.csv │ ├── fio-seq-write-fluffle-4-16384k.csv │ ├── fio-seq-write-fluffle-4-256k.csv │ ├── fio-seq-write-fluffle-4-262144k.csv │ ├── fio-seq-write-fluffle-4-4096k.csv │ ├── fio-seq-write-fluffle-4-65536k.csv │ ├── fio-seq-write-fluffle-4096k.csv │ ├── fio-seq-write-fluffle-65536k.csv │ ├── fio-seq-write-fluffle-8-1024k.csv │ ├── fio-seq-write-fluffle-8-16384k.csv │ ├── fio-seq-write-fluffle-8-262144k.csv │ ├── fio-seq-write-fluffle-8-4096k.csv │ ├── fio-seq-write-fluffle-8-65536k.csv │ ├── fio-rand-write-fluffle-1-256.csv │ ├── fio-seq-concurrent-write-1-flufflefs-1024k.csv │ ├── fio-seq-read-fluffle-16-1048576k.csv │ ├── fio-seq-read-fluffle-32-1048576k.csv │ ├── fio-seq-write-f2fs-1-1048576k.csv │ ├── fio-seq-write-f2fs-2-1048576k.csv │ ├── fio-seq-write-f2fs-2-16384k.csv │ ├── fio-seq-write-f2fs-4-1048576k.csv │ ├── fio-seq-write-f2fs-8-1048576k.csv │ ├── fio-seq-write-fluffle-1-1048576k.csv │ ├── fio-seq-write-fluffle-16-1048576k.csv │ ├── fio-seq-write-fluffle-16-262144k.csv │ ├── fio-seq-write-fluffle-2-1048576k.csv │ ├── fio-seq-write-fluffle-32-1048576k.csv │ ├── fio-seq-write-fluffle-32-262144k.csv │ ├── fio-seq-write-fluffle-4-1048576k.csv │ ├── fio-seq-write-fluffle-8-1048576k.csv │ ├── fio-seq-concurrent-write-2-flufflefs-1024k.csv │ ├── fio-seq-write-f2fs-16-1048576k.csv │ ├── fio-seq-write-f2fs-32-1048576k.csv │ ├── fio-seq-concurrent-write-1-flufflefs-1048576k.csv │ ├── fio-seq-concurrent-write-1-flufflefs-16384k.csv │ ├── fio-seq-concurrent-write-1-flufflefs-262144k.csv │ ├── fio-seq-concurrent-write-1-flufflefs-4096k.csv │ ├── fio-seq-concurrent-write-1-flufflefs-65536k.csv │ └── fio-seq-write-f2fs-32-1024k.csv └── ictopen │ ├── ictopen-regular-32.csv │ └── ictopen-offloaded-32.csv ├── scripts ├── windows-rename.sh.in ├── qemu-stop.sh ├── download-image.sh ├── benchmarks │ └── fio-read-write │ │ └── README.md ├── nvme-cli-fill-find-filter.sh ├── boost-windows-rename.sh ├── convert-to-soname.sh └── find_func.sh ├── .vscode └── settings.json └── playground ├── objcopy └── data.cl └── libbpf-bpf-load └── hello_world.c /zcsd/compsys2021/compsys2021.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zcsd/compsys2021/compsys2021.snm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zcsd/compsys2021/compsys2021.toc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thesis/12_backmatter/declaration.tex: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zcsd/presentation/presentation.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zcsd/presentation/presentation.snm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zcsd/presentation/presentation.toc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/src/tests.cxx: -------------------------------------------------------------------------------- 1 | #include "tests.hpp" -------------------------------------------------------------------------------- /thesis/Latex/Classes/CUEDthesisPSnPDF.texshop: -------------------------------------------------------------------------------- 1 | ../../thesis.tex -------------------------------------------------------------------------------- /thesis/resources/bash/setup-fluffle.sh: -------------------------------------------------------------------------------- 1 | cd build/opencsd 2 | mkdir test -------------------------------------------------------------------------------- /python/requirements.txt: -------------------------------------------------------------------------------- 1 | scipy 2 | numpy 3 | sympy 4 | matplotlib 5 | pandas 6 | -------------------------------------------------------------------------------- /thesis/resources/bash/setup-spdk.sh: -------------------------------------------------------------------------------- 1 | ld-sudo ./dependencies/spdk/scripts/setup.sh -------------------------------------------------------------------------------- /fosdem2023/vu-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/vu-logo.png -------------------------------------------------------------------------------- /ictopen2022/vu-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/ictopen2022/vu-logo.png -------------------------------------------------------------------------------- /zcsd/compsys2021/vu-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/zcsd/compsys2021/vu-logo.png -------------------------------------------------------------------------------- /zcsd/presentation/vu-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/zcsd/presentation/vu-logo.png -------------------------------------------------------------------------------- /thesis-presentation/vu-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/vu-logo.png -------------------------------------------------------------------------------- /thesis/resources/bash/check-spdk.sh: -------------------------------------------------------------------------------- 1 | mkdir -p test 2 | ld-sudo ./fuse-entry-spdk -- -d -o max_read=2147483647 test & -------------------------------------------------------------------------------- /thesis/resources/bash/delete-namespace.sh: -------------------------------------------------------------------------------- 1 | sudo nvme delete-ns /dev/nvme0 -n 1 2 | sudo nvme delete-ns /dev/nvme0 -n 2 -------------------------------------------------------------------------------- /thesis/resources/bash/format-f2fs.sh: -------------------------------------------------------------------------------- 1 | sudo mkfs.f2fs -f -m -c /dev/nvme0n2 /dev/nvme0n1 2 | sudo mount /dev/nvme0n1 /mnt -------------------------------------------------------------------------------- /fosdem2023/resources/images/csd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/csd.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/lfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/lfs.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/zns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/zns.png -------------------------------------------------------------------------------- /thesis/resources/images/vu-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/vu-logo.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/zns2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/zns2.png -------------------------------------------------------------------------------- /ictopen2022/resources/images/csd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/ictopen2022/resources/images/csd.png -------------------------------------------------------------------------------- /ictopen2022/resources/images/lfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/ictopen2022/resources/images/lfs.png -------------------------------------------------------------------------------- /thesis/resources/images/f2fs-nat.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/f2fs-nat.pdf -------------------------------------------------------------------------------- /thesis/resources/images/ubpf-abi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/ubpf-abi.pdf -------------------------------------------------------------------------------- /fosdem2023/resources/images/compile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/compile.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/crystal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/crystal.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/f2fs-nat.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/f2fs-nat.pdf -------------------------------------------------------------------------------- /fosdem2023/resources/images/results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/results.pdf -------------------------------------------------------------------------------- /fosdem2023/resources/images/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/results.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/ubpf-abi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/ubpf-abi.pdf -------------------------------------------------------------------------------- /fosdem2023/resources/images/vu-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/vu-logo.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/zns-lfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/zns-lfs.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/zns-lfs2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/zns-lfs2.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/zns-lfs3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/zns-lfs3.png -------------------------------------------------------------------------------- /ictopen2022/resources/images/compile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/ictopen2022/resources/images/compile.png -------------------------------------------------------------------------------- /ictopen2022/resources/images/crystal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/ictopen2022/resources/images/crystal.png -------------------------------------------------------------------------------- /ictopen2022/resources/images/results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/ictopen2022/resources/images/results.pdf -------------------------------------------------------------------------------- /ictopen2022/resources/images/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/ictopen2022/resources/images/results.png -------------------------------------------------------------------------------- /ictopen2022/resources/images/vu-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/ictopen2022/resources/images/vu-logo.png -------------------------------------------------------------------------------- /thesis/resources/images/f2fs-layout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/f2fs-layout.pdf -------------------------------------------------------------------------------- /thesis/resources/images/f2fs-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/f2fs-layout.png -------------------------------------------------------------------------------- /thesis/resources/images/offloading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/offloading.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/bottleneck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/bottleneck.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/challenges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/challenges.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/comp-stor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/comp-stor.jpg -------------------------------------------------------------------------------- /fosdem2023/resources/images/comp-stor2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/comp-stor2.jpg -------------------------------------------------------------------------------- /fosdem2023/resources/images/intro-zns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/intro-zns.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/offloading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/offloading.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/qemu-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/qemu-setup.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/zns-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/zns-simple.png -------------------------------------------------------------------------------- /ictopen2022/resources/images/comp-stor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/ictopen2022/resources/images/comp-stor.jpg -------------------------------------------------------------------------------- /ictopen2022/resources/images/f2fs-nat.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/ictopen2022/resources/images/f2fs-nat.pdf -------------------------------------------------------------------------------- /ictopen2022/resources/images/intro-zns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/ictopen2022/resources/images/intro-zns.png -------------------------------------------------------------------------------- /ictopen2022/resources/images/ubpf-abi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/ictopen2022/resources/images/ubpf-abi.pdf -------------------------------------------------------------------------------- /measurements/fio/fio-rand-write-fluffle-2-64.csv: -------------------------------------------------------------------------------- 1 | bandwidth,iops 2 | 549772,8590.198483 3 | 522432,8163.003004 4 | 522765,8168.217246 5 | -------------------------------------------------------------------------------- /thesis/0_frontmatter/figures/uva_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/0_frontmatter/figures/uva_logo.jpg -------------------------------------------------------------------------------- /thesis/resources/images/fluffle-layout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/fluffle-layout.pdf -------------------------------------------------------------------------------- /fosdem2023/resources/images/conventional.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/conventional.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/data-problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/data-problem.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/demo-kernel-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/demo-kernel-2.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/demo-kernel-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/demo-kernel-3.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/demo-kernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/demo-kernel.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/f2fs-layout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/f2fs-layout.pdf -------------------------------------------------------------------------------- /fosdem2023/resources/images/f2fs-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/f2fs-layout.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/kernel-calls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/kernel-calls.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/lfs-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/lfs-example.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/python-kernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/python-kernel.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/qemu-setup2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/qemu-setup2.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/related-work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/related-work.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/storage-gap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/storage-gap.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/ubpf-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/ubpf-medium.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/ubpf-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/ubpf-simple.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/uva-logo-tag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/uva-logo-tag.jpg -------------------------------------------------------------------------------- /fosdem2023/resources/images/xattr-inode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/xattr-inode.png -------------------------------------------------------------------------------- /ictopen2022/resources/images/bottleneck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/ictopen2022/resources/images/bottleneck.png -------------------------------------------------------------------------------- /ictopen2022/resources/images/challenges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/ictopen2022/resources/images/challenges.png -------------------------------------------------------------------------------- /ictopen2022/resources/images/comp-stor2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/ictopen2022/resources/images/comp-stor2.jpg -------------------------------------------------------------------------------- /ictopen2022/resources/images/data-problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/ictopen2022/resources/images/data-problem.png -------------------------------------------------------------------------------- /ictopen2022/resources/images/offloading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/ictopen2022/resources/images/offloading.png -------------------------------------------------------------------------------- /ictopen2022/resources/images/storage-gap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/ictopen2022/resources/images/storage-gap.png -------------------------------------------------------------------------------- /ictopen2022/resources/images/ubpf-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/ictopen2022/resources/images/ubpf-simple.png -------------------------------------------------------------------------------- /ictopen2022/resources/images/uva-logo-tag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/ictopen2022/resources/images/uva-logo-tag.jpg -------------------------------------------------------------------------------- /scripts/windows-rename.sh.in: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | find . -type f | perl -pe 'print $_; s/@PATTERN_IN@/@PATTERN_OUT@/' | xargs -d "\n" -n2 mv -f -------------------------------------------------------------------------------- /thesis-presentation/resources/images/csd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/csd.png -------------------------------------------------------------------------------- /thesis-presentation/resources/images/lfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/lfs.png -------------------------------------------------------------------------------- /thesis-presentation/resources/images/zns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/zns.png -------------------------------------------------------------------------------- /thesis/0_frontmatter/figures/vu-griffioen.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/0_frontmatter/figures/vu-griffioen.pdf -------------------------------------------------------------------------------- /thesis/resources/images/csx-fs-agnostic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/csx-fs-agnostic.pdf -------------------------------------------------------------------------------- /thesis/resources/images/csx-fs-agnostic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/csx-fs-agnostic.png -------------------------------------------------------------------------------- /thesis/resources/images/fluffle-path-map.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/fluffle-path-map.pdf -------------------------------------------------------------------------------- /thesis/resources/images/kernel-submission.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/kernel-submission.pdf -------------------------------------------------------------------------------- /zcsd/compsys2021/resources/images/vu-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/zcsd/compsys2021/resources/images/vu-logo.png -------------------------------------------------------------------------------- /zcsd/documentation/resources/bash/gdb-qemu.sh: -------------------------------------------------------------------------------- 1 | target remote localhost:2222 2 | set substitute-path /home/arch/opencsd/ /path/to/root/of/project -------------------------------------------------------------------------------- /fosdem2023/resources/images/csx-fs-agnostic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/csx-fs-agnostic.pdf -------------------------------------------------------------------------------- /fosdem2023/resources/images/csx-fs-agnostic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/csx-fs-agnostic.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/filter-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/filter-example.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/fluffle-layout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/fluffle-layout.pdf -------------------------------------------------------------------------------- /fosdem2023/resources/images/zcsd-arch-final.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/zcsd-arch-final.pdf -------------------------------------------------------------------------------- /ictopen2022/resources/images/filter-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/ictopen2022/resources/images/filter-example.png -------------------------------------------------------------------------------- /scripts/qemu-stop.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if [ -f "qemu.pid" ]; then 4 | kill "$(cat qemu.pid)" 5 | rm nohup.out 6 | rm qemu.pid 7 | fi -------------------------------------------------------------------------------- /thesis-presentation/resources/images/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/qrcode.png -------------------------------------------------------------------------------- /thesis/resources/images/fluffle-data-block.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/fluffle-data-block.pdf -------------------------------------------------------------------------------- /thesis/resources/images/fluffle-inode-sync.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/fluffle-inode-sync.pdf -------------------------------------------------------------------------------- /thesis/resources/images/fluffle-inodeblock.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/fluffle-inodeblock.pdf -------------------------------------------------------------------------------- /thesis/resources/images/fluffle-layout-log.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/fluffle-layout-log.pdf -------------------------------------------------------------------------------- /thesis/resources/images/loader-pfs-arch-v2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/loader-pfs-arch-v2.pdf -------------------------------------------------------------------------------- /thesis/resources/images/loader-pfs-arch-v3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/loader-pfs-arch-v3.pdf -------------------------------------------------------------------------------- /thesis/resources/images/loader-pfs-arch-v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/loader-pfs-arch-v3.png -------------------------------------------------------------------------------- /thesis/resources/images/module-dependencies.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/module-dependencies.pdf -------------------------------------------------------------------------------- /thesis/resources/images/results-passthrough.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/results-passthrough.pdf -------------------------------------------------------------------------------- /thesis/resources/images/results-random-read.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/results-random-read.pdf -------------------------------------------------------------------------------- /thesis/resources/images/results-sequential.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/results-sequential.pdf -------------------------------------------------------------------------------- /thesis/resources/images/storage-bottleneck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/storage-bottleneck.png -------------------------------------------------------------------------------- /thesis/resources/images/write-amplification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/write-amplification.pdf -------------------------------------------------------------------------------- /thesis/resources/images/zns-vs-conventional.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/zns-vs-conventional.pdf -------------------------------------------------------------------------------- /zcsd/compsys2021/resources/images/comp-stor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/zcsd/compsys2021/resources/images/comp-stor.jpg -------------------------------------------------------------------------------- /zcsd/compsys2021/resources/images/intro-zns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/zcsd/compsys2021/resources/images/intro-zns.png -------------------------------------------------------------------------------- /zcsd/documentation/resources/images/vu-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/zcsd/documentation/resources/images/vu-logo.png -------------------------------------------------------------------------------- /zcsd/presentation/resources/images/vu-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/zcsd/presentation/resources/images/vu-logo.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/fluffle-data-block.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/fluffle-data-block.pdf -------------------------------------------------------------------------------- /fosdem2023/resources/images/fluffle-inode-sync.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/fluffle-inode-sync.pdf -------------------------------------------------------------------------------- /fosdem2023/resources/images/fluffle-inodeblock.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/fluffle-inodeblock.pdf -------------------------------------------------------------------------------- /fosdem2023/resources/images/fluffle-layout-log.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/fluffle-layout-log.pdf -------------------------------------------------------------------------------- /fosdem2023/resources/images/fluffle-path-map.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/fluffle-path-map.pdf -------------------------------------------------------------------------------- /fosdem2023/resources/images/kernel-submission.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/kernel-submission.pdf -------------------------------------------------------------------------------- /fosdem2023/resources/images/loader-pfs-arch-v2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/loader-pfs-arch-v2.pdf -------------------------------------------------------------------------------- /fosdem2023/resources/images/loader-pfs-arch-v3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/loader-pfs-arch-v3.pdf -------------------------------------------------------------------------------- /fosdem2023/resources/images/loader-pfs-arch-v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/loader-pfs-arch-v3.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/modules-interfaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/modules-interfaces.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/performance-crop.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/performance-crop.pdf -------------------------------------------------------------------------------- /fosdem2023/resources/images/results-sequential.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/results-sequential.pdf -------------------------------------------------------------------------------- /fosdem2023/resources/images/storage-bottleneck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/storage-bottleneck.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/ubpf-medium-design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/ubpf-medium-design.png -------------------------------------------------------------------------------- /ictopen2022/resources/images/csx-fs-agnostic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/ictopen2022/resources/images/csx-fs-agnostic.png -------------------------------------------------------------------------------- /ictopen2022/resources/images/kernel-submission.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/ictopen2022/resources/images/kernel-submission.pdf -------------------------------------------------------------------------------- /ictopen2022/resources/images/performance-crop.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/ictopen2022/resources/images/performance-crop.pdf -------------------------------------------------------------------------------- /ictopen2022/resources/images/zcsd-arch-final.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/ictopen2022/resources/images/zcsd-arch-final.pdf -------------------------------------------------------------------------------- /thesis-presentation/resources/images/comp-stor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/comp-stor.jpg -------------------------------------------------------------------------------- /thesis-presentation/resources/images/compile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/compile.png -------------------------------------------------------------------------------- /thesis-presentation/resources/images/crystal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/crystal.png -------------------------------------------------------------------------------- /thesis-presentation/resources/images/f2fs-nat.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/f2fs-nat.pdf -------------------------------------------------------------------------------- /thesis-presentation/resources/images/intro-zns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/intro-zns.png -------------------------------------------------------------------------------- /thesis-presentation/resources/images/results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/results.pdf -------------------------------------------------------------------------------- /thesis-presentation/resources/images/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/results.png -------------------------------------------------------------------------------- /thesis-presentation/resources/images/ubpf-abi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/ubpf-abi.pdf -------------------------------------------------------------------------------- /thesis-presentation/resources/images/vu-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/vu-logo.png -------------------------------------------------------------------------------- /thesis-presentation/resources/images/zns-lfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/zns-lfs.png -------------------------------------------------------------------------------- /thesis/resources/images/current-event-kernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/current-event-kernel.png -------------------------------------------------------------------------------- /thesis/resources/images/offloading-management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/offloading-management.png -------------------------------------------------------------------------------- /thesis/resources/images/results-random-write.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/results-random-write.pdf -------------------------------------------------------------------------------- /thesis/resources/images/results-random-write.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/results-random-write.png -------------------------------------------------------------------------------- /thesis/resources/images/results-shannon-lower.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/results-shannon-lower.pdf -------------------------------------------------------------------------------- /thesis/resources/images/results-shannon-upper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/results-shannon-upper.pdf -------------------------------------------------------------------------------- /zcsd/compsys2021/resources/images/comp-stor2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/zcsd/compsys2021/resources/images/comp-stor2.jpg -------------------------------------------------------------------------------- /zcsd/compsys2021/resources/images/storage-gap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/zcsd/compsys2021/resources/images/storage-gap.png -------------------------------------------------------------------------------- /zcsd/compsys2021/resources/images/uva-logo-tag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/zcsd/compsys2021/resources/images/uva-logo-tag.jpg -------------------------------------------------------------------------------- /zcsd/documentation/resources/images/uva-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/zcsd/documentation/resources/images/uva-logo.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/current-event-kernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/current-event-kernel.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/module-dependencies.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/module-dependencies.pdf -------------------------------------------------------------------------------- /fosdem2023/resources/images/python-kernel-carbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/python-kernel-carbon.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/results-passthrough.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/results-passthrough.pdf -------------------------------------------------------------------------------- /fosdem2023/resources/images/results-random-read.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/results-random-read.pdf -------------------------------------------------------------------------------- /fosdem2023/resources/images/results-random-write.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/results-random-write.pdf -------------------------------------------------------------------------------- /fosdem2023/resources/images/results-random-write.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/results-random-write.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/storage-bottleneck2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/storage-bottleneck2.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/write-amplification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/write-amplification.pdf -------------------------------------------------------------------------------- /fosdem2023/resources/images/zns-vs-conventional.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/zns-vs-conventional.pdf -------------------------------------------------------------------------------- /ictopen2022/resources/images/loader-pfs-arch-v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/ictopen2022/resources/images/loader-pfs-arch-v3.png -------------------------------------------------------------------------------- /ictopen2022/resources/images/module-dependencies.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/ictopen2022/resources/images/module-dependencies.pdf -------------------------------------------------------------------------------- /ictopen2022/resources/images/storage-bottleneck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/ictopen2022/resources/images/storage-bottleneck.png -------------------------------------------------------------------------------- /ictopen2022/resources/images/write-amplification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/ictopen2022/resources/images/write-amplification.pdf -------------------------------------------------------------------------------- /ictopen2022/resources/images/zns-vs-conventional.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/ictopen2022/resources/images/zns-vs-conventional.pdf -------------------------------------------------------------------------------- /scripts/download-image.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wget -v --show-progress -O=arch-qemucsd.qcow2 https://nextcloud.dantalion.nl/s/diW4CrE7gfgLqxe/download 4 | -------------------------------------------------------------------------------- /thesis-presentation/resources/images/bottleneck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/bottleneck.png -------------------------------------------------------------------------------- /thesis-presentation/resources/images/challenges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/challenges.png -------------------------------------------------------------------------------- /thesis-presentation/resources/images/comp-stor2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/comp-stor2.jpg -------------------------------------------------------------------------------- /thesis-presentation/resources/images/lfs-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/lfs-example.png -------------------------------------------------------------------------------- /thesis-presentation/resources/images/offloading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/offloading.png -------------------------------------------------------------------------------- /thesis-presentation/resources/images/storage-gap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/storage-gap.png -------------------------------------------------------------------------------- /thesis-presentation/resources/images/ubpf-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/ubpf-medium.png -------------------------------------------------------------------------------- /thesis-presentation/resources/images/ubpf-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/ubpf-simple.png -------------------------------------------------------------------------------- /thesis-presentation/resources/images/xattr-inode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/xattr-inode.png -------------------------------------------------------------------------------- /thesis-presentation/resources/images/zns-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/zns-simple.png -------------------------------------------------------------------------------- /thesis/0_frontmatter/figures/module-dependencies.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/0_frontmatter/figures/module-dependencies.pdf -------------------------------------------------------------------------------- /thesis/resources/images/loader-pfs-arch-1.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/loader-pfs-arch-1.drawio.png -------------------------------------------------------------------------------- /thesis/resources/images/loader-pfs-arch-2.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/loader-pfs-arch-2.drawio.png -------------------------------------------------------------------------------- /thesis/resources/images/loader-pfs-arch-3.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/loader-pfs-arch-3.drawio.png -------------------------------------------------------------------------------- /thesis/resources/images/results-concurrent-read.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/results-concurrent-read.pdf -------------------------------------------------------------------------------- /thesis/resources/images/results-sequential-write.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/results-sequential-write.pdf -------------------------------------------------------------------------------- /zcsd/compsys2021/resources/images/filter-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/zcsd/compsys2021/resources/images/filter-example.png -------------------------------------------------------------------------------- /zcsd/documentation/resources/images/arrow-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/zcsd/documentation/resources/images/arrow-circle.png -------------------------------------------------------------------------------- /zcsd/presentation/resources/images/uva-logo-tag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/zcsd/presentation/resources/images/uva-logo-tag.jpg -------------------------------------------------------------------------------- /fosdem2023/resources/images/fluffle-layout-complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/fluffle-layout-complete.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/offloading-management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/offloading-management.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/python-kernel-carbon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/python-kernel-carbon2.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/results-concurrent-read.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/results-concurrent-read.pdf -------------------------------------------------------------------------------- /fosdem2023/resources/images/results-shannon-lower.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/results-shannon-lower.pdf -------------------------------------------------------------------------------- /fosdem2023/resources/images/results-shannon-upper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/results-shannon-upper.pdf -------------------------------------------------------------------------------- /thesis-presentation/resources/images/data-problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/data-problem.png -------------------------------------------------------------------------------- /thesis-presentation/resources/images/filter-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/filter-example.png -------------------------------------------------------------------------------- /thesis-presentation/resources/images/related-work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/related-work.png -------------------------------------------------------------------------------- /thesis-presentation/resources/images/uva-logo-tag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/uva-logo-tag.jpg -------------------------------------------------------------------------------- /thesis/resources/images/zns-vs-conventional-layout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/resources/images/zns-vs-conventional-layout.pdf -------------------------------------------------------------------------------- /zcsd/compsys2021/resources/images/performance-crop.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/zcsd/compsys2021/resources/images/performance-crop.pdf -------------------------------------------------------------------------------- /zcsd/compsys2021/resources/images/zcsd-arch-final.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/zcsd/compsys2021/resources/images/zcsd-arch-final.pdf -------------------------------------------------------------------------------- /zcsd/documentation/resources/images/bpf-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/zcsd/documentation/resources/images/bpf-landscape.png -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "files.associations": { 3 | "type_traits": "cpp", 4 | "typeinfo": "cpp" 5 | }, 6 | "editor.rulers": [80] 7 | } -------------------------------------------------------------------------------- /fosdem2023/resources/images/loader-pfs-arch-1.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/loader-pfs-arch-1.drawio.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/loader-pfs-arch-2.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/loader-pfs-arch-2.drawio.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/loader-pfs-arch-3.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/loader-pfs-arch-3.drawio.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/results-sequential-write.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/results-sequential-write.pdf -------------------------------------------------------------------------------- /fosdem2023/resources/images/zns-ssd-kernel-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/zns-ssd-kernel-landscape.png -------------------------------------------------------------------------------- /ictopen2022/resources/images/zns-ssd-kernel-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/ictopen2022/resources/images/zns-ssd-kernel-landscape.png -------------------------------------------------------------------------------- /thesis-presentation/resources/images/csx-fs-agnostic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/csx-fs-agnostic.pdf -------------------------------------------------------------------------------- /thesis-presentation/resources/images/csx-fs-agnostic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/csx-fs-agnostic.png -------------------------------------------------------------------------------- /thesis-presentation/resources/images/fluffle-path-map.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/fluffle-path-map.pdf -------------------------------------------------------------------------------- /thesis-presentation/resources/images/performance-crop.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/performance-crop.pdf -------------------------------------------------------------------------------- /thesis-presentation/resources/images/zcsd-arch-final.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/zcsd-arch-final.pdf -------------------------------------------------------------------------------- /thesis/0_frontmatter/figures/loader-pfs-arch-1.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/0_frontmatter/figures/loader-pfs-arch-1.drawio.png -------------------------------------------------------------------------------- /thesis/0_frontmatter/figures/loader-pfs-arch-2.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/0_frontmatter/figures/loader-pfs-arch-2.drawio.png -------------------------------------------------------------------------------- /thesis/0_frontmatter/figures/loader-pfs-arch-3.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis/0_frontmatter/figures/loader-pfs-arch-3.drawio.png -------------------------------------------------------------------------------- /thesis/resources/bash/create-namespace-fluffle.sh: -------------------------------------------------------------------------------- 1 | sudo nvme create-ns /dev/nvme0 -s 1934622720 -c 1934622720 -b 4096 --csi=2 2 | sudo nvme attach-ns /dev/nvme0 -n 1 -c 0 -------------------------------------------------------------------------------- /fosdem2023/resources/images/zns-vs-conventional-expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/zns-vs-conventional-expanded.png -------------------------------------------------------------------------------- /fosdem2023/resources/images/zns-vs-conventional-layout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/zns-vs-conventional-layout.pdf -------------------------------------------------------------------------------- /ictopen2022/resources/images/zns-vs-conventional-layout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/ictopen2022/resources/images/zns-vs-conventional-layout.pdf -------------------------------------------------------------------------------- /thesis-presentation/resources/images/fluffle-data-block.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/fluffle-data-block.pdf -------------------------------------------------------------------------------- /thesis-presentation/resources/images/fluffle-inode-sync.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/fluffle-inode-sync.pdf -------------------------------------------------------------------------------- /thesis-presentation/resources/images/kernel-submission.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/kernel-submission.pdf -------------------------------------------------------------------------------- /thesis-presentation/resources/images/loader-pfs-arch-v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/loader-pfs-arch-v3.png -------------------------------------------------------------------------------- /thesis-presentation/resources/images/module-dependencies.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/module-dependencies.pdf -------------------------------------------------------------------------------- /thesis-presentation/resources/images/modules-interfaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/modules-interfaces.png -------------------------------------------------------------------------------- /thesis-presentation/resources/images/results-passthrough.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/results-passthrough.pdf -------------------------------------------------------------------------------- /thesis-presentation/resources/images/results-sequential.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/results-sequential.pdf -------------------------------------------------------------------------------- /thesis-presentation/resources/images/storage-bottleneck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/storage-bottleneck.png -------------------------------------------------------------------------------- /thesis-presentation/resources/images/ubpf-medium-design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/ubpf-medium-design.png -------------------------------------------------------------------------------- /thesis-presentation/resources/images/write-amplification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/write-amplification.pdf -------------------------------------------------------------------------------- /thesis-presentation/resources/images/zns-vs-conventional.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/zns-vs-conventional.pdf -------------------------------------------------------------------------------- /zcsd/documentation/resources/images/bpf-landscape-legend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/zcsd/documentation/resources/images/bpf-landscape-legend.png -------------------------------------------------------------------------------- /zcsd/documentation/resources/images/prototype-components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/zcsd/documentation/resources/images/prototype-components.png -------------------------------------------------------------------------------- /zcsd/documentation/resources/images/prototype-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/zcsd/documentation/resources/images/prototype-landscape.png -------------------------------------------------------------------------------- /measurements/ictopen/ictopen-regular-32.csv: -------------------------------------------------------------------------------- 1 | wait,user,sys 2 | 0.014, 2.214, 0.014 3 | 0.015, 2.151, 0.013 4 | 0.014, 2.174, 0.017 5 | 0.02, 2.271, 0.013 6 | 0.013, 2.121, 0.017 -------------------------------------------------------------------------------- /thesis-presentation/resources/images/offloading-management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/offloading-management.png -------------------------------------------------------------------------------- /thesis-presentation/resources/images/results-shannon-lower.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/results-shannon-lower.pdf -------------------------------------------------------------------------------- /thesis-presentation/resources/images/results-shannon-upper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/results-shannon-upper.pdf -------------------------------------------------------------------------------- /zcsd/compsys2021/resources/images/zns-ssd-kernel-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/zcsd/compsys2021/resources/images/zns-ssd-kernel-landscape.png -------------------------------------------------------------------------------- /zcsd/documentation/resources/images/spdk-zns-ssd-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/zcsd/documentation/resources/images/spdk-zns-ssd-landscape.png -------------------------------------------------------------------------------- /measurements/fio/fio-rand-read-fluffle-16-64.csv: -------------------------------------------------------------------------------- 1 | bandwidth,iops 2 | 610056,9532.129972 3 | 612854,9575.856163 4 | 618645,9666.338448 5 | 669208,10456.377579 6 | 682007,10656.36169 7 | -------------------------------------------------------------------------------- /measurements/fio/fio-rand-read-fluffle-2-64.csv: -------------------------------------------------------------------------------- 1 | bandwidth,iops 2 | 619639,9681.874002 3 | 612706,9573.539322 4 | 613603,9587.550346 5 | 608995,9515.559501 6 | 613350,9583.601667 7 | -------------------------------------------------------------------------------- /measurements/fio/fio-rand-read-fluffle-32-64.csv: -------------------------------------------------------------------------------- 1 | bandwidth,iops 2 | 618813,9668.962322 3 | 673843,10528.803063 4 | 613302,9582.846258 5 | 609314,9520.532694 6 | 611167,9549.486559 7 | -------------------------------------------------------------------------------- /measurements/fio/fio-rand-read-fluffle-4-64.csv: -------------------------------------------------------------------------------- 1 | bandwidth,iops 2 | 620838,9700.593928 3 | 618520,9664.389571 4 | 616767,9636.98828 5 | 663910,10373.608327 6 | 671015,10484.613245 7 | -------------------------------------------------------------------------------- /measurements/fio/fio-rand-write-fluffle-16-64.csv: -------------------------------------------------------------------------------- 1 | bandwidth,iops 2 | 528187,8252.933893 3 | 529455,8272.740004 4 | 527855,8247.744767 5 | 527892,8248.320564 6 | 588143,9189.737118 7 | -------------------------------------------------------------------------------- /measurements/fio/fio-rand-write-fluffle-32-64.csv: -------------------------------------------------------------------------------- 1 | bandwidth,iops 2 | 528576,8259.003586 3 | 528967,8265.122931 4 | 528364,8255.699494 5 | 527206,8237.604472 6 | 526802,8231.291556 7 | -------------------------------------------------------------------------------- /measurements/fio/fio-rand-write-fluffle-4-64.csv: -------------------------------------------------------------------------------- 1 | bandwidth,iops 2 | 526340,8224.065019 3 | 527885,8248.21513 4 | 529018,8265.912922 5 | 525904,8217.257635 6 | 540154,8439.914239 7 | -------------------------------------------------------------------------------- /measurements/fio/fio-rand-write-fluffle-8-64.csv: -------------------------------------------------------------------------------- 1 | bandwidth,iops 2 | 529180,8268.446797 3 | 529571,8274.555662 4 | 550085,8595.083391 5 | 529288,8270.134193 6 | 528885,8263.832395 7 | -------------------------------------------------------------------------------- /measurements/ictopen/ictopen-offloaded-32.csv: -------------------------------------------------------------------------------- 1 | wait,user,sys 2 | 1.141, 0.025, 0.009 3 | 1.01, 0.011, 0.011 4 | 1.067, 0.017, 0.004 5 | 1.085, 0.011, 0.011 6 | 0.978, 0.009, 0.013 7 | -------------------------------------------------------------------------------- /thesis-presentation/resources/images/fluffle-layout-complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/fluffle-layout-complete.png -------------------------------------------------------------------------------- /thesis-presentation/resources/images/results-sequential-write.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/results-sequential-write.pdf -------------------------------------------------------------------------------- /thesis-presentation/resources/images/zns-ssd-kernel-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/zns-ssd-kernel-landscape.png -------------------------------------------------------------------------------- /zcsd/documentation/resources/images/zns-ssd-kernel-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/zcsd/documentation/resources/images/zns-ssd-kernel-landscape.png -------------------------------------------------------------------------------- /zcsd/presentation/resources/images/zns-ssd-kernel-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/zcsd/presentation/resources/images/zns-ssd-kernel-landscape.png -------------------------------------------------------------------------------- /measurements/fio/fio-rand-read-fluffle-8-64.csv: -------------------------------------------------------------------------------- 1 | bandwidth,iops 2 | 655639,10244.364359 3 | 612906,9576.659668 4 | 656302,10254.733669 5 | 677503,10585.996151 6 | 628725,9823.830313 7 | -------------------------------------------------------------------------------- /playground/objcopy/data.cl: -------------------------------------------------------------------------------- 1 | void kernel simple_add(global const int* A, global const int* B, global int* C) { 2 | C[get_global_id(0)] = A[get_global_id(0)] + B[get_global_id(0)]; 3 | } -------------------------------------------------------------------------------- /tests/include/tests.hpp: -------------------------------------------------------------------------------- 1 | #ifndef QEMUCSD_TESTS_H 2 | #define QEMUCSD_TESTS_H 3 | 4 | #include 5 | #include 6 | #include 7 | 8 | #endif //QEMUCSD_TESTS_H 9 | -------------------------------------------------------------------------------- /thesis-presentation/resources/images/zns-vs-conventional-layout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/zns-vs-conventional-layout.pdf -------------------------------------------------------------------------------- /fosdem2023/resources/images/universiteit-van-amsterdam-basis-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/fosdem2023/resources/images/universiteit-van-amsterdam-basis-logo.jpg -------------------------------------------------------------------------------- /ictopen2022/resources/images/universiteit-van-amsterdam-basis-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/ictopen2022/resources/images/universiteit-van-amsterdam-basis-logo.jpg -------------------------------------------------------------------------------- /thesis-presentation/resources/images/zns-vs-conventional-expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/zns-vs-conventional-expanded.png -------------------------------------------------------------------------------- /zcsd/compsys2021/resources/images/universiteit-van-amsterdam-basis-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/zcsd/compsys2021/resources/images/universiteit-van-amsterdam-basis-logo.jpg -------------------------------------------------------------------------------- /zcsd/presentation/resources/images/universiteit-van-amsterdam-basis-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/zcsd/presentation/resources/images/universiteit-van-amsterdam-basis-logo.jpg -------------------------------------------------------------------------------- /thesis-presentation/resources/images/universiteit-van-amsterdam-basis-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantali0n/OpenCSD/HEAD/thesis-presentation/resources/images/universiteit-van-amsterdam-basis-logo.jpg -------------------------------------------------------------------------------- /python/graphs/README.md: -------------------------------------------------------------------------------- 1 | # Graph data processing and generation 2 | 3 | This folder contains files to analyze measurement data from the measurements 4 | folder and process this into graphs. The graphs are used, as is, in 5 | publications. -------------------------------------------------------------------------------- /zcsd/documentation/resources/bash/nvme-subsystem.sh: -------------------------------------------------------------------------------- 1 | -device nvme-subsys,id=subsys0 2 | -device nvme,serial=foo,id=nvme0,subsys=subsys0 3 | -device nvme,serial=bar,id=nvme1,subsys=subsys0 4 | -device nvme-ns,id=ns1,drive=,nsid=1,subsys=subsys0 -------------------------------------------------------------------------------- /scripts/benchmarks/fio-read-write/README.md: -------------------------------------------------------------------------------- 1 | # FIO benchmarks 2 | 3 | Used for microbenchmark comparisons of f2fs and FluffleFS (benchmarks 1 and 2). 4 | Ensure bash scripts are launched such that mount point of current path is 5 | filesystem under test! -------------------------------------------------------------------------------- /scripts/nvme-cli-fill-find-filter.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | time (sudo nvme zns reset-zone -a /dev/nvme0n1; sudo nvme write -s 0 -z 131072 -d integers.dat /dev/nvme0n1; sudo nvme read -s 0 -z 131072 -d data.dat /dev/nvme0n1) 4 | ../playground/play-filter -------------------------------------------------------------------------------- /measurements/fio/README.md: -------------------------------------------------------------------------------- 1 | # Fio performance test 2 | 3 | Naming schemes: 4 | 5 | - {seq/rand}, sequential or random IOPS. 6 | 7 | - fio-{seq/rand}-{read/write}-{fluffle/f2fs}-{iodepth}-{size}.csv 8 | - fio-seq-concurrent-{read/write}-{numjobs}-{fluffle/f2fs}-{iodepth}-{size}.csv -------------------------------------------------------------------------------- /scripts/boost-windows-rename.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Rename libboost.lib files cause Boost found it to hard to have consistent filenames across platforms.. 4 | find . -type f | perl -pe 'print $_; s/libboost_([_a-z0-9]*)-[-a-z0-9_]*\.lib/boost_$1.lib/' | xargs -d "\n" -n2 mv -f -------------------------------------------------------------------------------- /thesis/resources/bash/create-namespace-f2fs.sh: -------------------------------------------------------------------------------- 1 | sudo nvme create-ns /dev/nvme0 -s 1048576 -c 1048576 -b 4096 --csi=0 2 | sudo nvme create-ns /dev/nvme0 -s 201326592 -c 201326592 -b 4096 --csi=2 3 | sudo nvme attach-ns /dev/nvme0 -n 1 -c 0 4 | sudo nvme attach-ns /dev/nvme0 -n 2 -c 0 -------------------------------------------------------------------------------- /thesis/resources/bash/qemu-parameters.sh: -------------------------------------------------------------------------------- 1 | qemu-system-x86_64 -nographic -name qemucsd -m 32G --enable-kvm -cpu host -smp 8 \ 2 | -hda ./arch-qemucsd.qcow2 \ 3 | -net user,hostfwd=tcp:127.0.0.1:7777-:22,hostfwd=tcp:127.0.0.1:2222-:2000 -net nic \ 4 | -device vfio-pci,host=0000:61:00.0 -------------------------------------------------------------------------------- /scripts/convert-to-soname.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # convert all .so files in the current directory to their SONAME 4 | for f in ./*.so; do 5 | NAME=$(objdump -p "$f" | grep SONAME | awk '{print $2}') 6 | if [ ! -f "$NAME" ]; then 7 | ln -s "$f" "$NAME" 8 | fi 9 | done 10 | -------------------------------------------------------------------------------- /scripts/find_func.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # A small script to find which static or shared library object provides a certain 4 | # function 5 | 6 | for i in *.a 7 | do 8 | echo "$i" 9 | nm "$i" | grep "$1" 10 | done 11 | 12 | for i in *.so 13 | do 14 | echo "$i" 15 | nm -D "$i" | grep "$1" 16 | done -------------------------------------------------------------------------------- /thesis/0_frontmatter/dedication.tex: -------------------------------------------------------------------------------- 1 | % Thesis Dedication --------------------------------------------------- 2 | 3 | %\begin{dedication} %this creates the heading for the dedication page 4 | 5 | %To ... 6 | 7 | %\end{dedication} 8 | 9 | % ---------------------------------------------------------------------- -------------------------------------------------------------------------------- /zcsd/documentation/resources/bash/spdk.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=Setup hugepages and assign drivers to devices as required by SPDK 3 | 4 | [Service] 5 | Type=simple 6 | Environment="HUGEMEM=512" 7 | ExecStart=/home/arch/opencsd/dependencies/spdk/scripts/setup.sh 8 | 9 | [Install] 10 | WantedBy=multi-user.target -------------------------------------------------------------------------------- /fosdem2023/resources/c/filter.c: -------------------------------------------------------------------------------- 1 | void bpf_return_data(void *data, 2 | uint64_t size); 3 | void bpf_read(uint64_t lba, 4 | uint64_t offset, uint64_t limit, 5 | void *data); 6 | uint64_t bpf_get_lba_size(void); 7 | uint64_t bpf_get_zone_size(void); 8 | void bpf_get_mem_info(void **mem_ptr, 9 | uint64_t *mem_size); -------------------------------------------------------------------------------- /ictopen2022/resources/c/filter.c: -------------------------------------------------------------------------------- 1 | void bpf_return_data(void *data, 2 | uint64_t size); 3 | void bpf_read(uint64_t lba, 4 | uint64_t offset, uint64_t limit, 5 | void *data); 6 | uint64_t bpf_get_lba_size(void); 7 | uint64_t bpf_get_zone_size(void); 8 | void bpf_get_mem_info(void **mem_ptr, 9 | uint64_t *mem_size); -------------------------------------------------------------------------------- /zcsd/compsys2021/resources/c/filter.c: -------------------------------------------------------------------------------- 1 | void bpf_return_data(void *data, 2 | uint64_t size); 3 | void bpf_read(uint64_t lba, 4 | uint64_t offset, uint64_t limit, 5 | void *data); 6 | uint64_t bpf_get_lba_size(void); 7 | uint64_t bpf_get_zone_size(void); 8 | void bpf_get_mem_info(void **mem_ptr, 9 | uint64_t *mem_size); -------------------------------------------------------------------------------- /thesis-presentation/resources/c/filter.c: -------------------------------------------------------------------------------- 1 | void bpf_return_data(void *data, 2 | uint64_t size); 3 | void bpf_read(uint64_t lba, 4 | uint64_t offset, uint64_t limit, 5 | void *data); 6 | uint64_t bpf_get_lba_size(void); 7 | uint64_t bpf_get_zone_size(void); 8 | void bpf_get_mem_info(void **mem_ptr, 9 | uint64_t *mem_size); -------------------------------------------------------------------------------- /thesis/resources/measurements/instrumentation-overhead-qemu-5900x.csv: -------------------------------------------------------------------------------- 1 | normalized-overhead-nanaoseconds, 2 | 348, 3 | 227, 4 | 242, 5 | 279, 6 | 177, 7 | 234, 8 | 193, 9 | 216, 10 | 263, 11 | 202, 12 | 406, 13 | 306, 14 | 296, 15 | 224, 16 | 346, 17 | 309, 18 | 193, 19 | 388, 20 | 590, 21 | 427, 22 | 303, 23 | 226, 24 | 186, 25 | 382, 26 | 208, 27 | 291, 28 | 368, 29 | 374, 30 | 808, 31 | 140, 32 | 253, -------------------------------------------------------------------------------- /zcsd/presentation/bilbliography.bib: -------------------------------------------------------------------------------- 1 | @Article{FFTW05, 2 | author = {Frigo, Matteo and Johnson, Steven~G.}, 3 | title = {The Design and Implementation of {FFTW3}}, 4 | journal = {Proceedings of the IEEE}, 5 | year = 2005, 6 | volume = 93, 7 | number = 2, 8 | pages = {216--231}, 9 | note = {Special issue on ``Program Generation, Optimization, and Platform Adaptation''} 10 | } -------------------------------------------------------------------------------- /thesis/resources/measurements/instrumentation-overhead-5900x.csv: -------------------------------------------------------------------------------- 1 | normalized-overhead-nanaoseconds, 2 | 1707, 3 | 619, 4 | 1503, 5 | 816, 6 | 1046, 7 | 784, 8 | 694, 9 | 866, 10 | 989, 11 | 1582, 12 | 814, 13 | 1512, 14 | 897, 15 | 875, 16 | 1594, 17 | 1655, 18 | 718, 19 | 714, 20 | 695, 21 | 1491, 22 | 1715, 23 | 709, 24 | 830, 25 | 1509, 26 | 1697, 27 | 810, 28 | 860, 29 | 1330, 30 | 795, 31 | 1737, 32 | 1714, -------------------------------------------------------------------------------- /zcsd/compsys2021/compsys2021.bbl: -------------------------------------------------------------------------------- 1 | \begin{thebibliography}{1} 2 | 3 | \bibitem{snia-model} 4 | SNIA. 5 | \newblock Computational storage architecture and programming model version 0.5 6 | revision 1. 7 | \newblock 8 | \url{https://www.snia.org/sites/default/files/technical_work/PublicReview/SNIA-Computational-Storage-Architecture-and-Programming-Model-0.5R1.pdf}, 9 | 2021. 10 | 11 | \end{thebibliography} 12 | -------------------------------------------------------------------------------- /fosdem2023/beamercolorthemecern.sty: -------------------------------------------------------------------------------- 1 | % https://github.com/jeromebelleman/beamer-cern 2 | % Jerome Belleman , March 2015 3 | 4 | \mode 5 | 6 | \definecolor{cern}{RGB}{0,137,207} 7 | 8 | \setbeamercolor{structure}{fg=cern} 9 | \setbeamercolor{footline}{use=structure, 10 | fg=white, 11 | bg=structure.fg} 12 | 13 | \mode 14 | 15 | -------------------------------------------------------------------------------- /ictopen2022/beamercolorthemecern.sty: -------------------------------------------------------------------------------- 1 | % https://github.com/jeromebelleman/beamer-cern 2 | % Jerome Belleman , March 2015 3 | 4 | \mode 5 | 6 | \definecolor{cern}{RGB}{0,137,207} 7 | 8 | \setbeamercolor{structure}{fg=cern} 9 | \setbeamercolor{footline}{use=structure, 10 | fg=white, 11 | bg=structure.fg} 12 | 13 | \mode 14 | 15 | -------------------------------------------------------------------------------- /zcsd/compsys2021/beamercolorthemecern.sty: -------------------------------------------------------------------------------- 1 | % https://github.com/jeromebelleman/beamer-cern 2 | % Jerome Belleman , March 2015 3 | 4 | \mode 5 | 6 | \definecolor{cern}{RGB}{0,83,161} 7 | 8 | \setbeamercolor{structure}{fg=cern} 9 | \setbeamercolor{footline}{use=structure, 10 | fg=white, 11 | bg=structure.fg} 12 | 13 | \mode 14 | 15 | -------------------------------------------------------------------------------- /zcsd/presentation/beamercolorthemecern.sty: -------------------------------------------------------------------------------- 1 | % https://github.com/jeromebelleman/beamer-cern 2 | % Jerome Belleman , March 2015 3 | 4 | \mode 5 | 6 | \definecolor{cern}{RGB}{0,83,161} 7 | 8 | \setbeamercolor{structure}{fg=cern} 9 | \setbeamercolor{footline}{use=structure, 10 | fg=white, 11 | bg=structure.fg} 12 | 13 | \mode 14 | 15 | -------------------------------------------------------------------------------- /thesis-presentation/beamercolorthemecern.sty: -------------------------------------------------------------------------------- 1 | % https://github.com/jeromebelleman/beamer-cern 2 | % Jerome Belleman , March 2015 3 | 4 | \mode 5 | 6 | \definecolor{cern}{RGB}{0,137,207} 7 | 8 | \setbeamercolor{structure}{fg=cern} 9 | \setbeamercolor{footline}{use=structure, 10 | fg=white, 11 | bg=structure.fg} 12 | 13 | \mode 14 | 15 | -------------------------------------------------------------------------------- /zcsd/documentation/resources/bash/inxi.sh: -------------------------------------------------------------------------------- 1 | CPU: 2 | Topology: Quad core Intel Core i5-4690K 3 | MCP L2 cache: 6144 KB speed: 4100 MHz 4 | Graphics: 5 | Device-1: Advanced Micro Devices [AMD/ATI] 6 | Ellesmere [Radeon RX 470/480/570/570X/580/580X] 7 | Display: x11 1.20.8 8 | driver: amdgpu 9 | OpenGL: renderer: AMD Radeon RX 470 Graphics 10 | POLARIS10, DRM 3.40.0, 5.4.0-62-generic 11 | LLVM 10.0.0 12 | version: 4.6 Mesa 20.0.8 -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-f2fs-1-64k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 65536000 3 | 65536000 4 | 65536000 5 | 65536000 6 | 65536000 7 | 65536000 8 | 65536000 9 | 65536000 10 | 65536000 11 | 65536000 12 | 65536000 13 | 65536000 14 | 65536000 15 | 65536000 16 | 65536000 17 | 65536000 18 | 65536000 19 | 65536000 20 | 65536000 21 | 65536000 22 | 65536000 23 | 65536000 24 | 65536000 25 | 65536000 26 | 65536000 27 | 65536000 28 | 65536000 29 | 65536000 30 | 65536000 31 | 65536000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-f2fs-16-64k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 65536000 3 | 65536000 4 | 65536000 5 | 65536000 6 | 65536000 7 | 65536000 8 | 65536000 9 | 65536000 10 | 65536000 11 | 65536000 12 | 65536000 13 | 65536000 14 | 65536000 15 | 65536000 16 | 65536000 17 | 65536000 18 | 65536000 19 | 65536000 20 | 65536000 21 | 65536000 22 | 65536000 23 | 65536000 24 | 65536000 25 | 65536000 26 | 65536000 27 | 65536000 28 | 65536000 29 | 65536000 30 | 65536000 31 | 65536000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-f2fs-2-64k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 65536000 3 | 65536000 4 | 65536000 5 | 65536000 6 | 65536000 7 | 65536000 8 | 65536000 9 | 65536000 10 | 65536000 11 | 65536000 12 | 65536000 13 | 65536000 14 | 65536000 15 | 65536000 16 | 65536000 17 | 65536000 18 | 65536000 19 | 65536000 20 | 65536000 21 | 65536000 22 | 65536000 23 | 65536000 24 | 65536000 25 | 65536000 26 | 65536000 27 | 65536000 28 | 65536000 29 | 65536000 30 | 65536000 31 | 65536000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-f2fs-32-64k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 65536000 3 | 65536000 4 | 65536000 5 | 65536000 6 | 65536000 7 | 65536000 8 | 65536000 9 | 65536000 10 | 65536000 11 | 65536000 12 | 65536000 13 | 65536000 14 | 65536000 15 | 65536000 16 | 65536000 17 | 65536000 18 | 65536000 19 | 65536000 20 | 65536000 21 | 65536000 22 | 65536000 23 | 65536000 24 | 65536000 25 | 65536000 26 | 65536000 27 | 65536000 28 | 65536000 29 | 65536000 30 | 65536000 31 | 65536000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-f2fs-4-64k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 65536000 3 | 65536000 4 | 65536000 5 | 65536000 6 | 65536000 7 | 65536000 8 | 65536000 9 | 65536000 10 | 65536000 11 | 65536000 12 | 65536000 13 | 65536000 14 | 65536000 15 | 65536000 16 | 65536000 17 | 65536000 18 | 65536000 19 | 65536000 20 | 65536000 21 | 65536000 22 | 65536000 23 | 65536000 24 | 65536000 25 | 65536000 26 | 65536000 27 | 65536000 28 | 65536000 29 | 65536000 30 | 65536000 31 | 65536000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-f2fs-8-64k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 65536000 3 | 65536000 4 | 65536000 5 | 65536000 6 | 65536000 7 | 65536000 8 | 65536000 9 | 65536000 10 | 65536000 11 | 65536000 12 | 65536000 13 | 65536000 14 | 65536000 15 | 65536000 16 | 65536000 17 | 65536000 18 | 65536000 19 | 65536000 20 | 65536000 21 | 65536000 22 | 65536000 23 | 65536000 24 | 65536000 25 | 65536000 26 | 65536000 27 | 65536000 28 | 65536000 29 | 65536000 30 | 65536000 31 | 65536000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-1-64k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 65536000 3 | 65536000 4 | 65536000 5 | 65536000 6 | 65536000 7 | 65536000 8 | 65536000 9 | 65536000 10 | 65536000 11 | 65536000 12 | 65536000 13 | 65536000 14 | 65536000 15 | 65536000 16 | 65536000 17 | 65536000 18 | 65536000 19 | 65536000 20 | 65536000 21 | 65536000 22 | 65536000 23 | 65536000 24 | 65536000 25 | 65536000 26 | 65536000 27 | 65536000 28 | 65536000 29 | 65536000 30 | 65536000 31 | 65536000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-2-64k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 65536000 3 | 65536000 4 | 65536000 5 | 65536000 6 | 65536000 7 | 65536000 8 | 65536000 9 | 65536000 10 | 65536000 11 | 65536000 12 | 65536000 13 | 65536000 14 | 65536000 15 | 65536000 16 | 65536000 17 | 65536000 18 | 65536000 19 | 65536000 20 | 65536000 21 | 65536000 22 | 65536000 23 | 65536000 24 | 65536000 25 | 65536000 26 | 65536000 27 | 65536000 28 | 65536000 29 | 65536000 30 | 65536000 31 | 65536000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-4-64k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 65536000 3 | 65536000 4 | 65536000 5 | 65536000 6 | 65536000 7 | 65536000 8 | 65536000 9 | 65536000 10 | 65536000 11 | 65536000 12 | 65536000 13 | 65536000 14 | 65536000 15 | 65536000 16 | 65536000 17 | 65536000 18 | 65536000 19 | 65536000 20 | 65536000 21 | 65536000 22 | 65536000 23 | 65536000 24 | 65536000 25 | 65536000 26 | 65536000 27 | 65536000 28 | 65536000 29 | 65536000 30 | 65536000 31 | 65536000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-8-64k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 65536000 3 | 65536000 4 | 65536000 5 | 65536000 6 | 65536000 7 | 65536000 8 | 65536000 9 | 65536000 10 | 65536000 11 | 65536000 12 | 65536000 13 | 65536000 14 | 65536000 15 | 65536000 16 | 65536000 17 | 65536000 18 | 65536000 19 | 65536000 20 | 65536000 21 | 65536000 22 | 65536000 23 | 65536000 24 | 65536000 25 | 65536000 26 | 65536000 27 | 65536000 28 | 65536000 29 | 65536000 30 | 65536000 31 | 65536000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-f2fs-1-64k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 65536000 3 | 65536000 4 | 65536000 5 | 65536000 6 | 65536000 7 | 65536000 8 | 65536000 9 | 65536000 10 | 65536000 11 | 65536000 12 | 65536000 13 | 65536000 14 | 65536000 15 | 65536000 16 | 65536000 17 | 65536000 18 | 65536000 19 | 65536000 20 | 65536000 21 | 65536000 22 | 65536000 23 | 65536000 24 | 65536000 25 | 65536000 26 | 65536000 27 | 65536000 28 | 65536000 29 | 65536000 30 | 65536000 31 | 65536000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-f2fs-16-64k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 65536000 3 | 65536000 4 | 65536000 5 | 65536000 6 | 65536000 7 | 65536000 8 | 65536000 9 | 65536000 10 | 65536000 11 | 65536000 12 | 65536000 13 | 65536000 14 | 65536000 15 | 65536000 16 | 65536000 17 | 65536000 18 | 65536000 19 | 65536000 20 | 65536000 21 | 65536000 22 | 65536000 23 | 65536000 24 | 65536000 25 | 65536000 26 | 65536000 27 | 65536000 28 | 65536000 29 | 65536000 30 | 65536000 31 | 65536000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-f2fs-2-64k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 65536000 3 | 65536000 4 | 65536000 5 | 65536000 6 | 65536000 7 | 65536000 8 | 65536000 9 | 65536000 10 | 65536000 11 | 65536000 12 | 65536000 13 | 65536000 14 | 65536000 15 | 65536000 16 | 65536000 17 | 65536000 18 | 65536000 19 | 65536000 20 | 65536000 21 | 65536000 22 | 65536000 23 | 65536000 24 | 65536000 25 | 65536000 26 | 65536000 27 | 65536000 28 | 65536000 29 | 65536000 30 | 65536000 31 | 65536000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-f2fs-32-64k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 65536000 3 | 65536000 4 | 65536000 5 | 65536000 6 | 65536000 7 | 65536000 8 | 65536000 9 | 65536000 10 | 65536000 11 | 65536000 12 | 65536000 13 | 65536000 14 | 65536000 15 | 65536000 16 | 65536000 17 | 65536000 18 | 65536000 19 | 65536000 20 | 65536000 21 | 65536000 22 | 65536000 23 | 65536000 24 | 65536000 25 | 65536000 26 | 65536000 27 | 65536000 28 | 65536000 29 | 65536000 30 | 65536000 31 | 65536000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-f2fs-4-64k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 65536000 3 | 65536000 4 | 65536000 5 | 65536000 6 | 65536000 7 | 65536000 8 | 65536000 9 | 65536000 10 | 65536000 11 | 65536000 12 | 65536000 13 | 65536000 14 | 65536000 15 | 65536000 16 | 65536000 17 | 65536000 18 | 65536000 19 | 65536000 20 | 65536000 21 | 65536000 22 | 65536000 23 | 65536000 24 | 65536000 25 | 65536000 26 | 65536000 27 | 65536000 28 | 65536000 29 | 65536000 30 | 65536000 31 | 65536000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-f2fs-8-64k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 65536000 3 | 65536000 4 | 65536000 5 | 65536000 6 | 65536000 7 | 65536000 8 | 65536000 9 | 65536000 10 | 65536000 11 | 65536000 12 | 65536000 13 | 65536000 14 | 65536000 15 | 65536000 16 | 65536000 17 | 65536000 18 | 65536000 19 | 65536000 20 | 65536000 21 | 65536000 22 | 65536000 23 | 65536000 24 | 65536000 25 | 65536000 26 | 65536000 27 | 65536000 28 | 65536000 29 | 65536000 30 | 65536000 31 | 65536000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-64k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 65536000 3 | 65536000 4 | 65536000 5 | 65536000 6 | 65536000 7 | 65536000 8 | 65536000 9 | 65536000 10 | 65536000 11 | 65536000 12 | 65536000 13 | 65536000 14 | 65536000 15 | 65536000 16 | 65536000 17 | 65536000 18 | 65536000 19 | 65536000 20 | 65536000 21 | 65536000 22 | 65536000 23 | 65536000 24 | 65536000 25 | 65536000 26 | 65536000 27 | 65536000 28 | 65536000 29 | 65536000 30 | 65536000 31 | 65536000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-1-1024k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 80659692 3 | 80659692 4 | 80659692 5 | 87381333 6 | 87381333 7 | 87381333 8 | 80659692 9 | 87381333 10 | 80659692 11 | 80659692 12 | 80659692 13 | 87381333 14 | 87381333 15 | 87381333 16 | 87381333 17 | 80659692 18 | 87381333 19 | 87381333 20 | 80659692 21 | 87381333 22 | 87381333 23 | 87381333 24 | 80659692 25 | 87381333 26 | 87381333 27 | 80659692 28 | 87381333 29 | 80659692 30 | 80659692 31 | 80659692 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-1-256k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 87381333 3 | 87381333 4 | 87381333 5 | 65536000 6 | 87381333 7 | 87381333 8 | 87381333 9 | 87381333 10 | 87381333 11 | 87381333 12 | 87381333 13 | 87381333 14 | 87381333 15 | 87381333 16 | 87381333 17 | 87381333 18 | 87381333 19 | 87381333 20 | 87381333 21 | 87381333 22 | 87381333 23 | 87381333 24 | 87381333 25 | 65536000 26 | 87381333 27 | 87381333 28 | 87381333 29 | 87381333 30 | 87381333 31 | 87381333 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-16-1024k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 69905066 3 | 69905066 4 | 74898285 5 | 69905066 6 | 69905066 7 | 69905066 8 | 69905066 9 | 69905066 10 | 74898285 11 | 74898285 12 | 69905066 13 | 69905066 14 | 74898285 15 | 74898285 16 | 74898285 17 | 69905066 18 | 74898285 19 | 69905066 20 | 80659692 21 | 74898285 22 | 69905066 23 | 36157793 24 | 80659692 25 | 87381333 26 | 87381333 27 | 87381333 28 | 87381333 29 | 87381333 30 | 87381333 31 | 80659692 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-16-256k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 65536000 3 | 87381333 4 | 87381333 5 | 65536000 6 | 87381333 7 | 87381333 8 | 65536000 9 | 87381333 10 | 65536000 11 | 65536000 12 | 65536000 13 | 87381333 14 | 87381333 15 | 87381333 16 | 87381333 17 | 65536000 18 | 65536000 19 | 87381333 20 | 87381333 21 | 65536000 22 | 65536000 23 | 87381333 24 | 65536000 25 | 65536000 26 | 87381333 27 | 87381333 28 | 87381333 29 | 87381333 30 | 87381333 31 | 65536000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-16-64k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 65536000 3 | 65536000 4 | 65536000 5 | 65536000 6 | 65536000 7 | 65536000 8 | 65536000 9 | 65536000 10 | 65536000 11 | 65536000 12 | 65536000 13 | 65536000 14 | 65536000 15 | 65536000 16 | 65536000 17 | 65536000 18 | 65536000 19 | 65536000 20 | 65536000 21 | 65536000 22 | 65536000 23 | 65536000 24 | 65536000 25 | 65536000 26 | 65536000 27 | 65536000 28 | 65536000 29 | 65536000 30 | 65536000 31 | 65536000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-2-1024k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 80659692 3 | 87381333 4 | 87381333 5 | 80659692 6 | 87381333 7 | 80659692 8 | 87381333 9 | 87381333 10 | 87381333 11 | 80659692 12 | 80659692 13 | 80659692 14 | 80659692 15 | 80659692 16 | 87381333 17 | 80659692 18 | 80659692 19 | 80659692 20 | 87381333 21 | 87381333 22 | 87381333 23 | 87381333 24 | 87381333 25 | 80659692 26 | 87381333 27 | 87381333 28 | 80659692 29 | 80659692 30 | 87381333 31 | 87381333 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-2-256k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 65536000 3 | 65536000 4 | 65536000 5 | 65536000 6 | 65536000 7 | 87381333 8 | 87381333 9 | 87381333 10 | 87381333 11 | 87381333 12 | 65536000 13 | 65536000 14 | 65536000 15 | 65536000 16 | 87381333 17 | 87381333 18 | 65536000 19 | 65536000 20 | 65536000 21 | 65536000 22 | 87381333 23 | 87381333 24 | 65536000 25 | 87381333 26 | 65536000 27 | 65536000 28 | 65536000 29 | 87381333 30 | 87381333 31 | 65536000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-32-1024k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 87381333 3 | 87381333 4 | 87381333 5 | 87381333 6 | 87381333 7 | 87381333 8 | 80659692 9 | 87381333 10 | 87381333 11 | 87381333 12 | 87381333 13 | 87381333 14 | 87381333 15 | 87381333 16 | 87381333 17 | 87381333 18 | 80659692 19 | 87381333 20 | 87381333 21 | 87381333 22 | 87381333 23 | 87381333 24 | 87381333 25 | 87381333 26 | 87381333 27 | 87381333 28 | 80659692 29 | 87381333 30 | 87381333 31 | 87381333 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-32-256k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 87381333 3 | 87381333 4 | 65536000 5 | 87381333 6 | 65536000 7 | 65536000 8 | 87381333 9 | 65536000 10 | 65536000 11 | 65536000 12 | 65536000 13 | 87381333 14 | 65536000 15 | 87381333 16 | 65536000 17 | 87381333 18 | 87381333 19 | 87381333 20 | 65536000 21 | 87381333 22 | 65536000 23 | 65536000 24 | 87381333 25 | 87381333 26 | 87381333 27 | 65536000 28 | 87381333 29 | 87381333 30 | 65536000 31 | 87381333 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-32-64k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 65536000 3 | 65536000 4 | 65536000 5 | 65536000 6 | 65536000 7 | 65536000 8 | 65536000 9 | 65536000 10 | 65536000 11 | 65536000 12 | 65536000 13 | 65536000 14 | 65536000 15 | 65536000 16 | 65536000 17 | 65536000 18 | 65536000 19 | 65536000 20 | 65536000 21 | 65536000 22 | 65536000 23 | 65536000 24 | 65536000 25 | 65536000 26 | 65536000 27 | 65536000 28 | 65536000 29 | 65536000 30 | 65536000 31 | 65536000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-4-1024k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 80659692 3 | 80659692 4 | 80659692 5 | 80659692 6 | 80659692 7 | 80659692 8 | 80659692 9 | 80659692 10 | 80659692 11 | 80659692 12 | 80659692 13 | 80659692 14 | 80659692 15 | 80659692 16 | 80659692 17 | 80659692 18 | 80659692 19 | 80659692 20 | 80659692 21 | 80659692 22 | 80659692 23 | 80659692 24 | 80659692 25 | 80659692 26 | 80659692 27 | 80659692 28 | 80659692 29 | 69905066 30 | 69905066 31 | 69905066 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-4-256k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 65536000 3 | 65536000 4 | 65536000 5 | 65536000 6 | 65536000 7 | 65536000 8 | 65536000 9 | 65536000 10 | 65536000 11 | 65536000 12 | 65536000 13 | 65536000 14 | 65536000 15 | 65536000 16 | 65536000 17 | 65536000 18 | 65536000 19 | 65536000 20 | 65536000 21 | 65536000 22 | 65536000 23 | 65536000 24 | 65536000 25 | 65536000 26 | 65536000 27 | 65536000 28 | 65536000 29 | 65536000 30 | 65536000 31 | 65536000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-8-1024k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 69905066 3 | 69905066 4 | 74898285 5 | 74898285 6 | 80659692 7 | 69905066 8 | 69905066 9 | 69905066 10 | 69905066 11 | 74898285 12 | 69905066 13 | 74898285 14 | 69905066 15 | 74898285 16 | 69905066 17 | 74898285 18 | 69905066 19 | 69905066 20 | 74898285 21 | 74898285 22 | 74898285 23 | 74898285 24 | 69905066 25 | 74898285 26 | 69905066 27 | 74898285 28 | 74898285 29 | 74898285 30 | 74898285 31 | 74898285 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-8-256k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 87381333 3 | 87381333 4 | 87381333 5 | 87381333 6 | 43690666 7 | 87381333 8 | 87381333 9 | 87381333 10 | 87381333 11 | 87381333 12 | 87381333 13 | 87381333 14 | 87381333 15 | 87381333 16 | 87381333 17 | 87381333 18 | 87381333 19 | 87381333 20 | 87381333 21 | 87381333 22 | 87381333 23 | 87381333 24 | 87381333 25 | 87381333 26 | 87381333 27 | 87381333 28 | 87381333 29 | 65536000 30 | 87381333 31 | 65536000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-1-64k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 65536000 3 | 65536000 4 | 65536000 5 | 65536000 6 | 65536000 7 | 65536000 8 | 65536000 9 | 65536000 10 | 65536000 11 | 65536000 12 | 65536000 13 | 65536000 14 | 65536000 15 | 65536000 16 | 65536000 17 | 65536000 18 | 65536000 19 | 65536000 20 | 65536000 21 | 65536000 22 | 65536000 23 | 65536000 24 | 65536000 25 | 65536000 26 | 65536000 27 | 65536000 28 | 65536000 29 | 65536000 30 | 65536000 31 | 65536000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-16-64k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 65536000 3 | 65536000 4 | 65536000 5 | 65536000 6 | 65536000 7 | 65536000 8 | 65536000 9 | 65536000 10 | 65536000 11 | 65536000 12 | 65536000 13 | 65536000 14 | 65536000 15 | 65536000 16 | 65536000 17 | 65536000 18 | 65536000 19 | 65536000 20 | 65536000 21 | 65536000 22 | 65536000 23 | 65536000 24 | 65536000 25 | 65536000 26 | 65536000 27 | 65536000 28 | 65536000 29 | 65536000 30 | 65536000 31 | 65536000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-2-64k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 65536000 3 | 65536000 4 | 65536000 5 | 65536000 6 | 65536000 7 | 65536000 8 | 65536000 9 | 65536000 10 | 65536000 11 | 65536000 12 | 65536000 13 | 65536000 14 | 65536000 15 | 65536000 16 | 65536000 17 | 65536000 18 | 65536000 19 | 65536000 20 | 65536000 21 | 65536000 22 | 65536000 23 | 65536000 24 | 65536000 25 | 65536000 26 | 65536000 27 | 65536000 28 | 65536000 29 | 65536000 30 | 65536000 31 | 65536000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-32-64k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 65536000 3 | 65536000 4 | 65536000 5 | 65536000 6 | 65536000 7 | 65536000 8 | 65536000 9 | 65536000 10 | 65536000 11 | 65536000 12 | 65536000 13 | 65536000 14 | 65536000 15 | 32768000 16 | 65536000 17 | 65536000 18 | 65536000 19 | 65536000 20 | 65536000 21 | 65536000 22 | 65536000 23 | 65536000 24 | 65536000 25 | 65536000 26 | 65536000 27 | 65536000 28 | 65536000 29 | 65536000 30 | 65536000 31 | 65536000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-4-64k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 65536000 3 | 65536000 4 | 65536000 5 | 65536000 6 | 65536000 7 | 65536000 8 | 65536000 9 | 65536000 10 | 65536000 11 | 65536000 12 | 65536000 13 | 65536000 14 | 65536000 15 | 65536000 16 | 65536000 17 | 65536000 18 | 65536000 19 | 65536000 20 | 65536000 21 | 65536000 22 | 65536000 23 | 65536000 24 | 65536000 25 | 65536000 26 | 65536000 27 | 65536000 28 | 65536000 29 | 65536000 30 | 65536000 31 | 65536000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-8-64k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 65536000 3 | 65536000 4 | 65536000 5 | 65536000 6 | 65536000 7 | 65536000 8 | 65536000 9 | 65536000 10 | 65536000 11 | 65536000 12 | 65536000 13 | 65536000 14 | 65536000 15 | 65536000 16 | 65536000 17 | 65536000 18 | 65536000 19 | 65536000 20 | 65536000 21 | 65536000 22 | 65536000 23 | 65536000 24 | 65536000 25 | 65536000 26 | 65536000 27 | 65536000 28 | 65536000 29 | 65536000 30 | 65536000 31 | 65536000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-read-1-flufflefs-1024k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 80659692 3 | 80659692 4 | 80659692 5 | 87381333 6 | 74898285 7 | 58254222 8 | 80659692 9 | 95325090 10 | 61680941 11 | 74898285 12 | 74898285 13 | 58254222 14 | 87381333 15 | 87381333 16 | 87381333 17 | 69905066 18 | 69905066 19 | 80659692 20 | 80659692 21 | 80659692 22 | 87381333 23 | 87381333 24 | 80659692 25 | 87381333 26 | 87381333 27 | 74898285 28 | 69905066 29 | 80659692 30 | 74898285 31 | 65536000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-read-1-flufflefs-4096k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 73584280 3 | 71089898 4 | 65536000 5 | 64527753 6 | 72315586 7 | 68759081 8 | 68759081 9 | 72315586 10 | 69905066 11 | 62601552 12 | 69905066 13 | 68759081 14 | 65536000 15 | 69905066 16 | 68759081 17 | 65536000 18 | 65536000 19 | 67650064 20 | 76260072 21 | 79137811 22 | 66576253 23 | 72315586 24 | 71089898 25 | 66576253 26 | 64527753 27 | 66576253 28 | 69905066 29 | 67650064 30 | 82241254 31 | 71089898 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-read-2-flufflefs-1024k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 55188210 3 | 58254222 4 | 65536000 5 | 69905066 6 | 61680941 7 | 65536000 8 | 52428800 9 | 95325090 10 | 87381333 11 | 87381333 12 | 87381333 13 | 80659692 14 | 55188210 15 | 87381333 16 | 69905066 17 | 80659692 18 | 74898285 19 | 80659692 20 | 69905066 21 | 55188210 22 | 55188210 23 | 87381333 24 | 61680941 25 | 61680941 26 | 61680941 27 | 58254222 28 | 69905066 29 | 58254222 30 | 58254222 31 | 87381333 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-read-2-flufflefs-4096k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 66576253 3 | 69905066 4 | 66576253 5 | 63550060 6 | 66576253 7 | 68759081 8 | 64527753 9 | 67650064 10 | 64527753 11 | 65536000 12 | 68759081 13 | 67650064 14 | 65536000 15 | 64527753 16 | 66576253 17 | 64527753 18 | 67650064 19 | 67650064 20 | 68759081 21 | 77672296 22 | 65536000 23 | 74898285 24 | 74898285 25 | 72315586 26 | 64527753 27 | 71089898 28 | 68759081 29 | 69905066 30 | 65536000 31 | 67650064 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-read-3-flufflefs-1024k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 95325090 3 | 74898285 4 | 80659692 5 | 80659692 6 | 87381333 7 | 80659692 8 | 87381333 9 | 80659692 10 | 65536000 11 | 80659692 12 | 69905066 13 | 74898285 14 | 87381333 15 | 87381333 16 | 65536000 17 | 55188210 18 | 61680941 19 | 61680941 20 | 65536000 21 | 69905066 22 | 61680941 23 | 58254222 24 | 55188210 25 | 58254222 26 | 58254222 27 | 61680941 28 | 69905066 29 | 55188210 30 | 80659692 31 | 47662545 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-read-3-flufflefs-4096k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 68759081 3 | 61680941 4 | 72315586 5 | 65536000 6 | 69905066 7 | 65536000 8 | 67650064 9 | 67650064 10 | 59918628 11 | 59074704 12 | 67650064 13 | 69905066 14 | 66576253 15 | 71089898 16 | 73584280 17 | 77672296 18 | 71089898 19 | 66576253 20 | 71089898 21 | 65536000 22 | 76260072 23 | 71089898 24 | 64527753 25 | 64527753 26 | 77672296 27 | 68759081 28 | 67650064 29 | 65536000 30 | 69905066 31 | 77672296 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-read-4-flufflefs-1024k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 55188210 3 | 52428800 4 | 87381333 5 | 80659692 6 | 55188210 7 | 55188210 8 | 55188210 9 | 61680941 10 | 61680941 11 | 74898285 12 | 61680941 13 | 52428800 14 | 58254222 15 | 80659692 16 | 47662545 17 | 80659692 18 | 58254222 19 | 80659692 20 | 65536000 21 | 87381333 22 | 87381333 23 | 49932190 24 | 74898285 25 | 74898285 26 | 55188210 27 | 74898285 28 | 47662545 29 | 47662545 30 | 87381333 31 | 47662545 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-read-4-flufflefs-4096k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 65536000 3 | 73584280 4 | 73584280 5 | 71089898 6 | 67650064 7 | 68759081 8 | 64527753 9 | 74898285 10 | 69905066 11 | 62601552 12 | 68759081 13 | 72315586 14 | 65536000 15 | 62601552 16 | 59074704 17 | 65536000 18 | 61680941 19 | 57456219 20 | 69905066 21 | 68759081 22 | 71089898 23 | 62601552 24 | 63550060 25 | 59918628 26 | 65536000 27 | 71089898 28 | 67650064 29 | 66576253 30 | 59074704 31 | 56679783 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-f2fs-1-16384k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 838860800 3 | 798915047 4 | 762600727 5 | 762600727 6 | 729444173 7 | 883011368 8 | 798915047 9 | 883011368 10 | 838860800 11 | 883011368 12 | 838860800 13 | 798915047 14 | 838860800 15 | 838860800 16 | 838860800 17 | 838860800 18 | 838860800 19 | 883011368 20 | 838860800 21 | 838860800 22 | 838860800 23 | 838860800 24 | 838860800 25 | 838860800 26 | 838860800 27 | 838860800 28 | 798915047 29 | 838860800 30 | 838860800 31 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-read-1-flufflefs-1048576k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 71080486 3 | 67239139 4 | 65825271 5 | 69010979 6 | 65918216 7 | 67684179 8 | 69637578 9 | 67374149 10 | 65728564 11 | 65332633 12 | 70948977 13 | 67812417 14 | 71740617 15 | 68728273 16 | 67872428 17 | 69542864 18 | 71735824 19 | 68917960 20 | 69886866 21 | 72198885 22 | 67281272 23 | 69184395 24 | 69421466 25 | 66039844 26 | 67919654 27 | 69028725 28 | 67484245 29 | 64906112 30 | 67526685 31 | 69037602 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-read-1-flufflefs-16384k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 63072240 3 | 62601552 4 | 65793003 5 | 64776895 6 | 65793003 7 | 65027968 8 | 70492504 9 | 65793003 10 | 64527753 11 | 66313106 12 | 67378377 13 | 69905066 14 | 67378377 15 | 65793003 16 | 67378377 17 | 64776895 18 | 64035175 19 | 65027968 20 | 64280521 21 | 65280996 22 | 65793003 23 | 66313106 24 | 65280996 25 | 67108864 26 | 67108864 27 | 64527753 28 | 65793003 29 | 66841498 30 | 68478432 31 | 65027968 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-read-1-flufflefs-262144k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 67361469 3 | 67463044 4 | 62499524 5 | 64096336 6 | 64295917 7 | 63897990 8 | 64373011 9 | 64419355 10 | 67025082 11 | 65106829 12 | 66214962 13 | 65841416 14 | 65841416 15 | 65456097 16 | 66774989 17 | 65472062 18 | 65889900 19 | 69850495 20 | 66791603 21 | 65328658 22 | 66100826 23 | 65873731 24 | 68900271 25 | 65793003 26 | 69291547 27 | 65632140 28 | 69399032 29 | 66576253 30 | 65906078 31 | 64620957 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-read-1-flufflefs-65536k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 65600062 3 | 67108864 4 | 64965018 5 | 65793003 6 | 64527753 7 | 66378698 8 | 63731114 9 | 63191020 10 | 64342151 11 | 64280521 12 | 63852392 13 | 66841498 14 | 67923951 15 | 63550060 16 | 64902189 17 | 65857570 18 | 64714430 19 | 65154236 20 | 64902189 21 | 65027968 22 | 64465767 23 | 66117107 24 | 66444419 25 | 65154236 26 | 64527753 27 | 64652084 28 | 64465767 29 | 64714430 30 | 64342151 31 | 64652084 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-read-2-flufflefs-1048576k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 68417345 3 | 68334616 4 | 70561991 5 | 69529354 6 | 69705389 7 | 65380370 8 | 66243557 9 | 70284861 10 | 70575905 11 | 70165446 12 | 69987082 13 | 69927829 14 | 69126493 15 | 69714441 16 | 69130944 17 | 69714441 18 | 68391198 19 | 68552756 20 | 68391198 21 | 69466379 22 | 67954042 23 | 70179204 24 | 67526685 25 | 70220510 26 | 70215918 27 | 68382487 28 | 65983028 29 | 68644791 30 | 68295498 31 | 65656220 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-read-2-flufflefs-16384k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 65027968 3 | 64527753 4 | 64776895 5 | 66576253 6 | 64527753 7 | 64035175 8 | 63550060 9 | 63310249 10 | 61680941 11 | 64776895 12 | 65027968 13 | 66841498 14 | 67108864 15 | 67923951 16 | 64035175 17 | 66313106 18 | 64035175 19 | 66052031 20 | 63791695 21 | 63550060 22 | 64280521 23 | 64527753 24 | 63550060 25 | 63550060 26 | 63550060 27 | 64527753 28 | 64280521 29 | 62137837 30 | 63310249 31 | 61230715 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-read-2-flufflefs-262144k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 65954657 3 | 67906768 4 | 67769617 5 | 67209678 6 | 67395293 7 | 65424191 8 | 69506850 9 | 67889594 10 | 68373778 11 | 69113145 12 | 70014464 13 | 67752512 14 | 66149693 15 | 64295917 16 | 63220785 17 | 63989381 18 | 64388451 19 | 63791695 20 | 64234375 21 | 63655550 22 | 64403900 23 | 62953906 24 | 64403900 25 | 66808226 26 | 68061728 27 | 64295917 28 | 64295917 29 | 64357577 30 | 63325184 31 | 63897990 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-read-2-flufflefs-65536k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 65027968 3 | 63191020 4 | 64465767 5 | 64280521 6 | 64219008 7 | 63731114 8 | 64465767 9 | 67243350 10 | 67923951 11 | 66576253 12 | 65027968 13 | 64714430 14 | 64465767 15 | 69399032 16 | 63913203 17 | 64902189 18 | 66576253 19 | 66908139 20 | 66117107 21 | 67855271 22 | 68408627 23 | 67446094 24 | 67786731 25 | 68688704 26 | 68061728 27 | 67650064 28 | 66708612 29 | 68269444 30 | 62080355 31 | 66117107 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-read-3-flufflefs-1048576k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 69850495 3 | 70147110 4 | 68944511 5 | 70197556 6 | 69394546 7 | 70151693 8 | 69327338 9 | 70229696 10 | 69850495 11 | 70771277 12 | 64870820 13 | 69363166 14 | 64683242 15 | 65692372 16 | 66349986 17 | 65035846 18 | 64465767 19 | 69832324 20 | 69340770 21 | 70142528 22 | 70376995 23 | 66296729 24 | 69542864 25 | 69827783 26 | 69655648 27 | 69923275 28 | 66774989 29 | 69891415 30 | 70939602 31 | 69818702 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-read-3-flufflefs-16384k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 57456219 3 | 66576253 4 | 66576253 5 | 66841498 6 | 66576253 7 | 64527753 8 | 60567566 9 | 64776895 10 | 60787014 11 | 65280996 12 | 64527753 13 | 63072240 14 | 63310249 15 | 61008058 16 | 63550060 17 | 66841498 18 | 63791695 19 | 63072240 20 | 64280521 21 | 66576253 22 | 64776895 23 | 63550060 24 | 55924053 25 | 64280521 26 | 61908546 27 | 65536000 28 | 63791695 29 | 56488942 30 | 60133390 31 | 65536000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-read-3-flufflefs-262144k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 66427977 3 | 66642367 4 | 66658916 5 | 64667659 6 | 64902189 7 | 64203648 8 | 63867584 9 | 66609294 10 | 66427977 11 | 66068288 12 | 67041822 13 | 65954657 14 | 66924820 15 | 64730035 16 | 66427977 17 | 67159233 18 | 66592770 19 | 66247644 20 | 67041822 21 | 67159233 22 | 66427977 23 | 66444419 24 | 66791603 25 | 66084553 26 | 66296729 27 | 67108864 28 | 65744662 29 | 65600062 30 | 66642367 31 | 65809133 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-read-3-flufflefs-65536k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 60187321 3 | 62137837 4 | 64157613 5 | 61398777 6 | 61286633 7 | 65344560 8 | 66313106 9 | 60732003 10 | 62953906 11 | 66642367 12 | 63791695 13 | 65600062 14 | 64096336 15 | 65344560 16 | 65344560 17 | 64714430 18 | 65664250 19 | 62953906 20 | 62426850 21 | 64280521 22 | 64465767 23 | 63072240 24 | 63072240 25 | 63429928 26 | 62195425 27 | 61851487 28 | 64589859 29 | 62080355 30 | 63913203 31 | 65280996 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-read-4-flufflefs-1048576k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 70664154 3 | 69064245 4 | 68148122 5 | 70654854 6 | 65930358 7 | 69233465 8 | 70487876 9 | 70617679 10 | 67889594 11 | 65273059 12 | 65197754 13 | 69864130 14 | 69322862 15 | 67403755 16 | 68984376 17 | 69331815 18 | 69737080 19 | 65110777 20 | 65873731 21 | 64597631 22 | 69242395 23 | 70888085 24 | 69099802 25 | 68834016 26 | 71635320 27 | 66916479 28 | 70911492 29 | 69233465 30 | 70064719 31 | 66423867 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-read-4-flufflefs-16384k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 66313106 3 | 65027968 4 | 65280996 5 | 66841498 6 | 71392408 7 | 65280996 8 | 67108864 9 | 64280521 10 | 66313106 11 | 64527753 12 | 65027968 13 | 64527753 14 | 64035175 15 | 60567566 16 | 67108864 17 | 66052031 18 | 63072240 19 | 66576253 20 | 64035175 21 | 65793003 22 | 62601552 23 | 66052031 24 | 67108864 25 | 67108864 26 | 64280521 27 | 63310249 28 | 65536000 29 | 67650064 30 | 66576253 31 | 62601552 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-read-4-flufflefs-262144k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 66958208 3 | 67142435 4 | 67496971 5 | 67092090 6 | 67192855 7 | 67513947 8 | 68130826 9 | 66411542 10 | 67176040 11 | 67159233 12 | 68776698 13 | 63822029 14 | 64081035 15 | 63565109 16 | 64496745 17 | 64620957 18 | 63776539 19 | 64111644 20 | 65728564 21 | 65472062 22 | 67125645 23 | 66543246 24 | 66791603 25 | 67260199 26 | 67547925 27 | 69202231 28 | 66133396 29 | 66460870 30 | 66477329 31 | 67092090 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-read-4-flufflefs-65536k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 66313106 3 | 65664250 4 | 65600062 5 | 66052031 6 | 66974914 7 | 67310796 8 | 66313106 9 | 67041822 10 | 66444419 11 | 66117107 12 | 66576253 13 | 64589859 14 | 66313106 15 | 65027968 16 | 67581937 17 | 65857570 18 | 64965018 19 | 62022979 20 | 62310922 21 | 62253120 22 | 60677092 23 | 62080355 24 | 63131574 25 | 62543209 26 | 61680941 27 | 64776895 28 | 62601552 29 | 62080355 30 | 60187321 31 | 61965710 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-write-3-flufflefs-1048576k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 64562673 3 | 77431443 4 | 53158167 5 | 63787906 6 | 90237988 7 | 78005217 8 | 69868676 9 | 59326030 10 | 69900515 11 | 105031969 12 | 59061706 13 | 63407453 14 | 59858502 15 | 65652205 16 | 58121783 17 | 56862883 18 | 60725134 19 | 69322862 20 | 58770762 21 | 65584035 22 | 59263816 23 | 56953366 24 | 63697088 25 | 61101793 26 | 77756667 27 | 70266463 28 | 57068393 29 | 60732003 30 | 89070246 31 | 88548723 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-write-3-flufflefs-65536k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 54738061 3 | 58254222 4 | 139810133 5 | 86037005 6 | 54120051 7 | 60187321 8 | 75234152 9 | 92309303 10 | 98400093 11 | 65408249 12 | 68900271 13 | 77942931 14 | 55645824 15 | 89478485 16 | 56158045 17 | 56536532 18 | 73827133 19 | 69042041 20 | 60187321 21 | 57358003 22 | 103723128 23 | 81541754 24 | 86258179 25 | 58970882 26 | 59493673 27 | 55324702 28 | 53644175 29 | 56536532 30 | 137518163 31 | 61286633 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-write-4-flufflefs-1048576k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 48627409 3 | 48594398 4 | 45460935 5 | 49634439 6 | 48850856 7 | 55677564 8 | 60855918 9 | 53705888 10 | 44638805 11 | 41938125 12 | 45462859 13 | 42982339 14 | 50784743 15 | 45522610 16 | 57880536 17 | 46863731 18 | 49517700 19 | 45837431 20 | 48638422 21 | 54306181 22 | 51162234 23 | 54973470 24 | 46878053 25 | 45166441 26 | 52120859 27 | 44909524 28 | 43735156 29 | 46798370 30 | 58948219 31 | 52464664 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-write-4-flufflefs-16384k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 44739242 3 | 42366707 4 | 44858866 5 | 59283448 6 | 45100043 7 | 53261003 8 | 59918628 9 | 56679783 10 | 60787014 11 | 64035175 12 | 48629611 13 | 57456219 14 | 59074704 15 | 56111090 16 | 52265470 17 | 92691801 18 | 43129089 19 | 43240247 20 | 44384169 21 | 56111090 22 | 44384169 23 | 46218225 24 | 48489063 25 | 44979131 26 | 65793003 27 | 54471480 28 | 42259989 29 | 48349325 30 | 43351979 31 | 46995002 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-write-4-flufflefs-262144k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 48123961 3 | 53019051 4 | 59165848 5 | 47952028 6 | 45168341 7 | 57703236 8 | 57977420 9 | 42737693 10 | 58841616 11 | 59113731 12 | 54849909 13 | 49182018 14 | 57333501 15 | 59048714 16 | 63715987 17 | 64558791 18 | 47384899 19 | 45451313 20 | 44325537 21 | 50325357 22 | 52326599 23 | 44971595 24 | 46028027 25 | 44918918 26 | 45551579 27 | 77070185 28 | 48358035 29 | 54054662 30 | 50486262 31 | 46186417 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-write-4-flufflefs-65536k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 43046096 3 | 42963421 4 | 63072240 5 | 65280996 6 | 43747629 7 | 44354834 8 | 46571036 9 | 57309021 10 | 47160129 11 | 50955857 12 | 44092551 13 | 59546463 14 | 61624301 15 | 45683365 16 | 44798974 17 | 43747629 18 | 44354834 19 | 43184597 20 | 43073725 21 | 42393470 22 | 47193293 23 | 45130372 24 | 43351979 25 | 92309303 26 | 68900271 27 | 59022747 28 | 46506489 29 | 60567566 30 | 49490312 31 | 65857570 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-write-2-flufflefs-65536k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 148143187 3 | 73343020 4 | 74898285 5 | 88534121 6 | 73023791 7 | 80951585 8 | 81245598 9 | 78489899 10 | 87154368 11 | 144320137 12 | 72944417 13 | 135573462 14 | 70789940 15 | 84519979 16 | 121794671 17 | 109120104 18 | 73103337 19 | 73183057 20 | 146206675 21 | 97259223 22 | 73584280 23 | 89240510 24 | 84626562 25 | 80466263 26 | 71089898 27 | 77403534 28 | 82241254 29 | 80562861 30 | 75658245 31 | 85055594 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-write-3-flufflefs-262144k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 88592559 3 | 73103337 4 | 57591816 5 | 92659805 6 | 57641283 7 | 60855918 8 | 57653663 9 | 61188843 10 | 55831001 11 | 58317500 12 | 70234289 13 | 57272339 14 | 79114487 15 | 117169557 16 | 81122833 17 | 62718564 18 | 89837836 19 | 58867424 20 | 121244560 21 | 73827133 22 | 83520677 23 | 67480004 24 | 65776882 25 | 72727026 26 | 83886080 27 | 78928390 28 | 112788006 29 | 82697306 30 | 56370318 31 | 57077494 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-write-4-flufflefs-4096k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 60787014 3 | 43690666 4 | 46091252 5 | 116508444 6 | 68759081 7 | 42799020 8 | 45590260 9 | 91180521 10 | 50533783 11 | 72315586 12 | 64527753 13 | 47127011 14 | 67650064 15 | 44620255 16 | 55924053 17 | 119837257 18 | 52428800 19 | 49344752 20 | 48770976 21 | 80659692 22 | 65536000 23 | 61680941 24 | 52428800 25 | 59074704 26 | 43690666 27 | 48770976 28 | 174762666 29 | 68759081 30 | 110376421 31 | 102300097 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-1-4096k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 131072000 3 | 127100121 4 | 95325090 5 | 95325090 6 | 97541953 7 | 110376421 8 | 116508444 9 | 123361882 10 | 127100121 11 | 95325090 12 | 97541953 13 | 95325090 14 | 97541953 15 | 97541953 16 | 116508444 17 | 104857600 18 | 131072000 19 | 127100121 20 | 123361882 21 | 127100121 22 | 127100121 23 | 127100121 24 | 123361882 25 | 131072000 26 | 131072000 27 | 131072000 28 | 127100121 29 | 127100121 30 | 131072000 31 | 131072000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-16-4096k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 131072000 3 | 135300129 4 | 127100121 5 | 127100121 6 | 131072000 7 | 135300129 8 | 131072000 9 | 131072000 10 | 127100121 11 | 135300129 12 | 131072000 13 | 131072000 14 | 127100121 15 | 131072000 16 | 95325090 17 | 97541953 18 | 95325090 19 | 97541953 20 | 97541953 21 | 119837257 22 | 131072000 23 | 95325090 24 | 97541953 25 | 95325090 26 | 97541953 27 | 97541953 28 | 110376421 29 | 119837257 30 | 60787014 31 | 131072000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-32-4096k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 131072000 3 | 127100121 4 | 131072000 5 | 127100121 6 | 131072000 7 | 131072000 8 | 107546256 9 | 110376421 10 | 119837257 11 | 127100121 12 | 95325090 13 | 95325090 14 | 95325090 15 | 95325090 16 | 110376421 17 | 116508444 18 | 123361882 19 | 127100121 20 | 97541953 21 | 95325090 22 | 95325090 23 | 59918628 24 | 131072000 25 | 131072000 26 | 131072000 27 | 127100121 28 | 131072000 29 | 131072000 30 | 131072000 31 | 131072000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-4-4096k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 95325090 3 | 95325090 4 | 95325090 5 | 113359567 6 | 95325090 7 | 95325090 8 | 93206755 9 | 95325090 10 | 110376421 11 | 119837257 12 | 93206755 13 | 95325090 14 | 93206755 15 | 95325090 16 | 110376421 17 | 119837257 18 | 123361882 19 | 127100121 20 | 123361882 21 | 123361882 22 | 131072000 23 | 123361882 24 | 123361882 25 | 127100121 26 | 127100121 27 | 127100121 28 | 127100121 29 | 123361882 30 | 123361882 31 | 123361882 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-f2fs-4-256k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 262144000 3 | 262144000 4 | 262144000 5 | 262144000 6 | 262144000 7 | 262144000 8 | 262144000 9 | 262144000 10 | 262144000 11 | 262144000 12 | 262144000 13 | 262144000 14 | 262144000 15 | 262144000 16 | 262144000 17 | 3236345 18 | 2621440 19 | 262144000 20 | 262144000 21 | 262144000 22 | 262144000 23 | 262144000 24 | 262144000 25 | 262144000 26 | 262144000 27 | 262144000 28 | 262144000 29 | 262144000 30 | 262144000 31 | 262144000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-write-2-flufflefs-1048576k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 75791757 3 | 100330949 4 | 81344077 5 | 86858261 6 | 77543281 7 | 71430403 8 | 77824296 9 | 81871278 10 | 69233465 11 | 127311100 12 | 77264288 13 | 86424808 14 | 73969538 15 | 77425859 16 | 80028458 17 | 76706802 18 | 80908885 19 | 107837885 20 | 130087451 21 | 76254656 22 | 122002252 23 | 133966540 24 | 75065843 25 | 104643000 26 | 97692823 27 | 76921113 28 | 79465795 29 | 118279557 30 | 78484162 31 | 69412491 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-write-2-flufflefs-16384k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 99864380 3 | 72315586 4 | 169466828 5 | 93727463 6 | 137518163 7 | 94254022 8 | 159783009 9 | 72944417 10 | 73584280 11 | 67650064 12 | 72944417 13 | 81840078 14 | 76959706 15 | 121574028 16 | 73584280 17 | 118149408 18 | 164482509 19 | 90200086 20 | 69905066 21 | 66841498 22 | 71697504 23 | 68200065 24 | 95869805 25 | 72005218 26 | 75234152 27 | 89717732 28 | 100462371 29 | 119837257 30 | 138654677 31 | 131072000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-write-3-flufflefs-4096k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 113359567 3 | 68759081 4 | 55924053 5 | 53092455 6 | 116508444 7 | 116508444 8 | 97541953 9 | 82241254 10 | 53773128 11 | 65536000 12 | 53092455 13 | 190650181 14 | 55188210 15 | 64527753 16 | 93206755 17 | 97541953 18 | 71089898 19 | 91180521 20 | 83886080 21 | 135300129 22 | 190650181 23 | 135300129 24 | 89240510 25 | 89240510 26 | 182361043 27 | 190650181 28 | 53773128 29 | 66576253 30 | 135300129 31 | 80659692 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-f2fs-1-1024k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 349525333 3 | 349525333 4 | 349525333 5 | 349525333 6 | 349525333 7 | 349525333 8 | 349525333 9 | 349525333 10 | 349525333 11 | 349525333 12 | 349525333 13 | 349525333 14 | 349525333 15 | 349525333 16 | 349525333 17 | 349525333 18 | 349525333 19 | 349525333 20 | 349525333 21 | 349525333 22 | 349525333 23 | 349525333 24 | 349525333 25 | 349525333 26 | 349525333 27 | 349525333 28 | 349525333 29 | 349525333 30 | 349525333 31 | 349525333 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-f2fs-1-256k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 131072000 3 | 131072000 4 | 131072000 5 | 131072000 6 | 131072000 7 | 131072000 8 | 131072000 9 | 131072000 10 | 131072000 11 | 131072000 12 | 262144000 13 | 131072000 14 | 131072000 15 | 131072000 16 | 262144000 17 | 131072000 18 | 131072000 19 | 262144000 20 | 131072000 21 | 131072000 22 | 131072000 23 | 131072000 24 | 131072000 25 | 131072000 26 | 131072000 27 | 131072000 28 | 262144000 29 | 131072000 30 | 131072000 31 | 131072000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-f2fs-1-4096k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 419430400 3 | 524288000 4 | 524288000 5 | 524288000 6 | 524288000 7 | 524288000 8 | 524288000 9 | 524288000 10 | 524288000 11 | 524288000 12 | 524288000 13 | 524288000 14 | 524288000 15 | 524288000 16 | 524288000 17 | 524288000 18 | 524288000 19 | 524288000 20 | 524288000 21 | 524288000 22 | 524288000 23 | 524288000 24 | 524288000 25 | 524288000 26 | 524288000 27 | 524288000 28 | 524288000 29 | 524288000 30 | 524288000 31 | 524288000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-f2fs-16-1024k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 349525333 3 | 349525333 4 | 349525333 5 | 349525333 6 | 349525333 7 | 349525333 8 | 349525333 9 | 349525333 10 | 349525333 11 | 349525333 12 | 349525333 13 | 349525333 14 | 349525333 15 | 349525333 16 | 349525333 17 | 349525333 18 | 349525333 19 | 349525333 20 | 349525333 21 | 349525333 22 | 349525333 23 | 349525333 24 | 349525333 25 | 349525333 26 | 349525333 27 | 349525333 28 | 349525333 29 | 349525333 30 | 349525333 31 | 349525333 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-f2fs-16-256k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 262144000 3 | 131072000 4 | 262144000 5 | 262144000 6 | 262144000 7 | 262144000 8 | 262144000 9 | 262144000 10 | 262144000 11 | 262144000 12 | 262144000 13 | 262144000 14 | 262144000 15 | 262144000 16 | 262144000 17 | 262144000 18 | 262144000 19 | 262144000 20 | 262144000 21 | 262144000 22 | 262144000 23 | 131072000 24 | 262144000 25 | 262144000 26 | 262144000 27 | 262144000 28 | 262144000 29 | 262144000 30 | 262144000 31 | 262144000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-f2fs-16-4096k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 524288000 3 | 466033777 4 | 524288000 5 | 524288000 6 | 524288000 7 | 524288000 8 | 524288000 9 | 524288000 10 | 524288000 11 | 524288000 12 | 524288000 13 | 524288000 14 | 524288000 15 | 524288000 16 | 524288000 17 | 524288000 18 | 524288000 19 | 524288000 20 | 524288000 21 | 524288000 22 | 524288000 23 | 524288000 24 | 524288000 25 | 524288000 26 | 524288000 27 | 524288000 28 | 524288000 29 | 524288000 30 | 524288000 31 | 524288000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-f2fs-2-1024k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 349525333 3 | 349525333 4 | 349525333 5 | 349525333 6 | 349525333 7 | 349525333 8 | 349525333 9 | 349525333 10 | 349525333 11 | 349525333 12 | 349525333 13 | 349525333 14 | 349525333 15 | 349525333 16 | 349525333 17 | 349525333 18 | 349525333 19 | 349525333 20 | 349525333 21 | 349525333 22 | 349525333 23 | 349525333 24 | 349525333 25 | 349525333 26 | 349525333 27 | 349525333 28 | 349525333 29 | 349525333 30 | 349525333 31 | 349525333 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-f2fs-2-16384k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 762600727 3 | 838860800 4 | 838860800 5 | 838860800 6 | 838860800 7 | 838860800 8 | 838860800 9 | 838860800 10 | 838860800 11 | 838860800 12 | 838860800 13 | 838860800 14 | 838860800 15 | 838860800 16 | 838860800 17 | 838860800 18 | 838860800 19 | 838860800 20 | 838860800 21 | 838860800 22 | 838860800 23 | 838860800 24 | 838860800 25 | 838860800 26 | 838860800 27 | 838860800 28 | 838860800 29 | 838860800 30 | 838860800 31 | 883011368 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-f2fs-2-256k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 131072000 3 | 131072000 4 | 262144000 5 | 131072000 6 | 131072000 7 | 131072000 8 | 131072000 9 | 131072000 10 | 131072000 11 | 131072000 12 | 131072000 13 | 131072000 14 | 131072000 15 | 131072000 16 | 131072000 17 | 131072000 18 | 131072000 19 | 131072000 20 | 131072000 21 | 131072000 22 | 262144000 23 | 131072000 24 | 131072000 25 | 131072000 26 | 131072000 27 | 131072000 28 | 131072000 29 | 131072000 30 | 131072000 31 | 131072000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-f2fs-2-4096k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 524288000 3 | 524288000 4 | 524288000 5 | 524288000 6 | 524288000 7 | 524288000 8 | 524288000 9 | 524288000 10 | 466033777 11 | 524288000 12 | 524288000 13 | 524288000 14 | 524288000 15 | 524288000 16 | 524288000 17 | 524288000 18 | 524288000 19 | 524288000 20 | 524288000 21 | 524288000 22 | 524288000 23 | 524288000 24 | 524288000 25 | 524288000 26 | 524288000 27 | 524288000 28 | 524288000 29 | 524288000 30 | 524288000 31 | 524288000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-f2fs-32-1024k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 349525333 3 | 349525333 4 | 349525333 5 | 349525333 6 | 349525333 7 | 349525333 8 | 349525333 9 | 349525333 10 | 349525333 11 | 349525333 12 | 349525333 13 | 349525333 14 | 349525333 15 | 349525333 16 | 349525333 17 | 349525333 18 | 349525333 19 | 349525333 20 | 349525333 21 | 349525333 22 | 349525333 23 | 349525333 24 | 349525333 25 | 349525333 26 | 349525333 27 | 349525333 28 | 349525333 29 | 349525333 30 | 349525333 31 | 349525333 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-f2fs-32-256k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 262144000 3 | 262144000 4 | 262144000 5 | 262144000 6 | 262144000 7 | 262144000 8 | 262144000 9 | 262144000 10 | 262144000 11 | 262144000 12 | 262144000 13 | 262144000 14 | 262144000 15 | 262144000 16 | 262144000 17 | 262144000 18 | 262144000 19 | 262144000 20 | 262144000 21 | 262144000 22 | 262144000 23 | 262144000 24 | 262144000 25 | 262144000 26 | 262144000 27 | 262144000 28 | 262144000 29 | 262144000 30 | 262144000 31 | 262144000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-f2fs-32-4096k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 524288000 3 | 524288000 4 | 524288000 5 | 524288000 6 | 524288000 7 | 524288000 8 | 524288000 9 | 524288000 10 | 524288000 11 | 524288000 12 | 524288000 13 | 524288000 14 | 524288000 15 | 524288000 16 | 524288000 17 | 524288000 18 | 524288000 19 | 524288000 20 | 524288000 21 | 524288000 22 | 524288000 23 | 524288000 24 | 524288000 25 | 524288000 26 | 524288000 27 | 524288000 28 | 524288000 29 | 524288000 30 | 524288000 31 | 524288000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-f2fs-4-1024k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 349525333 3 | 349525333 4 | 349525333 5 | 349525333 6 | 349525333 7 | 349525333 8 | 349525333 9 | 349525333 10 | 349525333 11 | 349525333 12 | 349525333 13 | 349525333 14 | 349525333 15 | 349525333 16 | 349525333 17 | 349525333 18 | 349525333 19 | 349525333 20 | 349525333 21 | 349525333 22 | 349525333 23 | 349525333 24 | 349525333 25 | 349525333 26 | 349525333 27 | 349525333 28 | 349525333 29 | 349525333 30 | 349525333 31 | 349525333 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-f2fs-4-16384k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 762600727 3 | 798915047 4 | 838860800 5 | 798915047 6 | 883011368 7 | 883011368 8 | 798915047 9 | 699050666 10 | 883011368 11 | 883011368 12 | 838860800 13 | 838860800 14 | 838860800 15 | 838860800 16 | 838860800 17 | 798915047 18 | 838860800 19 | 838860800 20 | 838860800 21 | 838860800 22 | 838860800 23 | 883011368 24 | 838860800 25 | 838860800 26 | 838860800 27 | 798915047 28 | 838860800 29 | 798915047 30 | 883011368 31 | 798915047 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-f2fs-4-256k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 131072000 3 | 131072000 4 | 262144000 5 | 131072000 6 | 131072000 7 | 131072000 8 | 131072000 9 | 262144000 10 | 131072000 11 | 131072000 12 | 262144000 13 | 131072000 14 | 131072000 15 | 262144000 16 | 131072000 17 | 131072000 18 | 131072000 19 | 131072000 20 | 131072000 21 | 131072000 22 | 131072000 23 | 131072000 24 | 131072000 25 | 131072000 26 | 262144000 27 | 131072000 28 | 131072000 29 | 131072000 30 | 131072000 31 | 131072000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-f2fs-4-4096k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 466033777 3 | 524288000 4 | 524288000 5 | 466033777 6 | 524288000 7 | 524288000 8 | 524288000 9 | 524288000 10 | 524288000 11 | 524288000 12 | 524288000 13 | 524288000 14 | 524288000 15 | 524288000 16 | 524288000 17 | 524288000 18 | 466033777 19 | 524288000 20 | 524288000 21 | 466033777 22 | 524288000 23 | 524288000 24 | 524288000 25 | 524288000 26 | 466033777 27 | 524288000 28 | 524288000 29 | 466033777 30 | 524288000 31 | 524288000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-f2fs-8-1024k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 349525333 3 | 349525333 4 | 349525333 5 | 349525333 6 | 349525333 7 | 349525333 8 | 349525333 9 | 349525333 10 | 349525333 11 | 349525333 12 | 349525333 13 | 349525333 14 | 349525333 15 | 349525333 16 | 209715200 17 | 262144000 18 | 209715200 19 | 209715200 20 | 174762666 21 | 174762666 22 | 209715200 23 | 174762666 24 | 174762666 25 | 174762666 26 | 209715200 27 | 209715200 28 | 209715200 29 | 149796571 30 | 174762666 31 | 174762666 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-f2fs-8-16384k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 762600727 3 | 729444173 4 | 883011368 5 | 838860800 6 | 838860800 7 | 798915047 8 | 838860800 9 | 838860800 10 | 838860800 11 | 838860800 12 | 798915047 13 | 838860800 14 | 838860800 15 | 838860800 16 | 883011368 17 | 838860800 18 | 838860800 19 | 883011368 20 | 798915047 21 | 838860800 22 | 883011368 23 | 883011368 24 | 838860800 25 | 838860800 26 | 883011368 27 | 883011368 28 | 838860800 29 | 838860800 30 | 798915047 31 | 838860800 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-f2fs-8-256k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 131072000 3 | 262144000 4 | 131072000 5 | 131072000 6 | 131072000 7 | 131072000 8 | 131072000 9 | 262144000 10 | 131072000 11 | 262144000 12 | 131072000 13 | 131072000 14 | 131072000 15 | 131072000 16 | 131072000 17 | 262144000 18 | 131072000 19 | 131072000 20 | 262144000 21 | 131072000 22 | 131072000 23 | 262144000 24 | 262144000 25 | 131072000 26 | 262144000 27 | 131072000 28 | 131072000 29 | 262144000 30 | 131072000 31 | 131072000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-f2fs-8-4096k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 220752842 3 | 199728761 4 | 524288000 5 | 466033777 6 | 524288000 7 | 466033777 8 | 524288000 9 | 524288000 10 | 524288000 11 | 524288000 12 | 524288000 13 | 524288000 14 | 524288000 15 | 524288000 16 | 524288000 17 | 524288000 18 | 524288000 19 | 524288000 20 | 524288000 21 | 524288000 22 | 524288000 23 | 524288000 24 | 466033777 25 | 524288000 26 | 524288000 27 | 466033777 28 | 524288000 29 | 524288000 30 | 524288000 31 | 524288000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-2-4096k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 131072000 3 | 127100121 4 | 127100121 5 | 127100121 6 | 131072000 7 | 127100121 8 | 127100121 9 | 95325090 10 | 95325090 11 | 104857600 12 | 113359567 13 | 119837257 14 | 127100121 15 | 95325090 16 | 95325090 17 | 97541953 18 | 97541953 19 | 107546256 20 | 116508444 21 | 123361882 22 | 104857600 23 | 131072000 24 | 131072000 25 | 127100121 26 | 131072000 27 | 131072000 28 | 131072000 29 | 131072000 30 | 131072000 31 | 131072000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-8-4096k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 107546256 3 | 113359567 4 | 119837257 5 | 127100121 6 | 97541953 7 | 59074704 8 | 131072000 9 | 131072000 10 | 131072000 11 | 131072000 12 | 131072000 13 | 131072000 14 | 131072000 15 | 127100121 16 | 131072000 17 | 131072000 18 | 131072000 19 | 131072000 20 | 131072000 21 | 127100121 22 | 131072000 23 | 127100121 24 | 131072000 25 | 131072000 26 | 123361882 27 | 127100121 28 | 97541953 29 | 97541953 30 | 97541953 31 | 97541953 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-f2fs-1-1024k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 524288000 3 | 524288000 4 | 524288000 5 | 524288000 6 | 524288000 7 | 524288000 8 | 524288000 9 | 524288000 10 | 524288000 11 | 524288000 12 | 524288000 13 | 524288000 14 | 524288000 15 | 524288000 16 | 524288000 17 | 524288000 18 | 524288000 19 | 524288000 20 | 524288000 21 | 524288000 22 | 524288000 23 | 524288000 24 | 524288000 25 | 524288000 26 | 524288000 27 | 524288000 28 | 524288000 29 | 524288000 30 | 524288000 31 | 524288000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-f2fs-1-256k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 262144000 3 | 262144000 4 | 262144000 5 | 262144000 6 | 262144000 7 | 262144000 8 | 262144000 9 | 262144000 10 | 262144000 11 | 262144000 12 | 262144000 13 | 262144000 14 | 262144000 15 | 262144000 16 | 262144000 17 | 262144000 18 | 262144000 19 | 262144000 20 | 262144000 21 | 262144000 22 | 262144000 23 | 262144000 24 | 262144000 25 | 262144000 26 | 262144000 27 | 262144000 28 | 262144000 29 | 262144000 30 | 262144000 31 | 262144000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-f2fs-16-256k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 262144000 3 | 262144000 4 | 262144000 5 | 262144000 6 | 262144000 7 | 262144000 8 | 262144000 9 | 262144000 10 | 262144000 11 | 262144000 12 | 262144000 13 | 262144000 14 | 262144000 15 | 262144000 16 | 262144000 17 | 262144000 18 | 262144000 19 | 262144000 20 | 262144000 21 | 262144000 22 | 262144000 23 | 262144000 24 | 262144000 25 | 262144000 26 | 262144000 27 | 262144000 28 | 262144000 29 | 262144000 30 | 262144000 31 | 262144000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-f2fs-2-1024k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 524288000 3 | 524288000 4 | 524288000 5 | 524288000 6 | 524288000 7 | 524288000 8 | 524288000 9 | 524288000 10 | 524288000 11 | 524288000 12 | 524288000 13 | 524288000 14 | 524288000 15 | 349525333 16 | 524288000 17 | 524288000 18 | 524288000 19 | 524288000 20 | 524288000 21 | 524288000 22 | 524288000 23 | 524288000 24 | 524288000 25 | 524288000 26 | 524288000 27 | 349525333 28 | 524288000 29 | 524288000 30 | 524288000 31 | 524288000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-f2fs-2-256k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 262144000 3 | 262144000 4 | 262144000 5 | 262144000 6 | 262144000 7 | 262144000 8 | 262144000 9 | 262144000 10 | 262144000 11 | 262144000 12 | 262144000 13 | 262144000 14 | 262144000 15 | 262144000 16 | 262144000 17 | 262144000 18 | 262144000 19 | 262144000 20 | 262144000 21 | 262144000 22 | 262144000 23 | 262144000 24 | 262144000 25 | 262144000 26 | 262144000 27 | 262144000 28 | 262144000 29 | 262144000 30 | 262144000 31 | 262144000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-f2fs-2-4096k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 838860800 3 | 599186285 4 | 599186285 5 | 524288000 6 | 524288000 7 | 699050666 8 | 699050666 9 | 524288000 10 | 599186285 11 | 599186285 12 | 524288000 13 | 699050666 14 | 838860800 15 | 599186285 16 | 699050666 17 | 699050666 18 | 599186285 19 | 699050666 20 | 524288000 21 | 127100121 22 | 149796571 23 | 838860800 24 | 524288000 25 | 599186285 26 | 699050666 27 | 524288000 28 | 524288000 29 | 699050666 30 | 599186285 31 | 699050666 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-f2fs-32-256k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 262144000 3 | 262144000 4 | 262144000 5 | 262144000 6 | 262144000 7 | 262144000 8 | 262144000 9 | 262144000 10 | 262144000 11 | 262144000 12 | 262144000 13 | 262144000 14 | 262144000 15 | 262144000 16 | 262144000 17 | 262144000 18 | 262144000 19 | 262144000 20 | 262144000 21 | 262144000 22 | 262144000 23 | 262144000 24 | 262144000 25 | 262144000 26 | 262144000 27 | 262144000 28 | 262144000 29 | 262144000 30 | 262144000 31 | 262144000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-f2fs-4-1024k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 524288000 3 | 524288000 4 | 524288000 5 | 524288000 6 | 524288000 7 | 524288000 8 | 524288000 9 | 524288000 10 | 524288000 11 | 524288000 12 | 524288000 13 | 524288000 14 | 524288000 15 | 524288000 16 | 524288000 17 | 524288000 18 | 524288000 19 | 524288000 20 | 524288000 21 | 524288000 22 | 524288000 23 | 524288000 24 | 524288000 25 | 524288000 26 | 524288000 27 | 524288000 28 | 524288000 29 | 524288000 30 | 524288000 31 | 524288000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-f2fs-4-4096k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 838860800 3 | 599186285 4 | 466033777 5 | 524288000 6 | 524288000 7 | 524288000 8 | 524288000 9 | 524288000 10 | 599186285 11 | 599186285 12 | 599186285 13 | 599186285 14 | 599186285 15 | 599186285 16 | 599186285 17 | 699050666 18 | 599186285 19 | 599186285 20 | 599186285 21 | 599186285 22 | 599186285 23 | 599186285 24 | 699050666 25 | 599186285 26 | 599186285 27 | 599186285 28 | 599186285 29 | 599186285 30 | 599186285 31 | 599186285 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-f2fs-8-1024k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 524288000 3 | 524288000 4 | 524288000 5 | 524288000 6 | 524288000 7 | 349525333 8 | 349525333 9 | 524288000 10 | 524288000 11 | 524288000 12 | 524288000 13 | 524288000 14 | 524288000 15 | 524288000 16 | 524288000 17 | 524288000 18 | 524288000 19 | 524288000 20 | 524288000 21 | 524288000 22 | 524288000 23 | 524288000 24 | 524288000 25 | 524288000 26 | 524288000 27 | 349525333 28 | 524288000 29 | 524288000 30 | 524288000 31 | 524288000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-f2fs-8-256k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 262144000 3 | 262144000 4 | 262144000 5 | 262144000 6 | 262144000 7 | 262144000 8 | 262144000 9 | 262144000 10 | 262144000 11 | 262144000 12 | 262144000 13 | 262144000 14 | 262144000 15 | 262144000 16 | 262144000 17 | 262144000 18 | 262144000 19 | 262144000 20 | 262144000 21 | 262144000 22 | 262144000 23 | 262144000 24 | 262144000 25 | 262144000 26 | 262144000 27 | 262144000 28 | 262144000 29 | 262144000 30 | 262144000 31 | 262144000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-f2fs-8-4096k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 838860800 3 | 524288000 4 | 599186285 5 | 524288000 6 | 466033777 7 | 524288000 8 | 466033777 9 | 524288000 10 | 524288000 11 | 524288000 12 | 466033777 13 | 466033777 14 | 524288000 15 | 466033777 16 | 466033777 17 | 599186285 18 | 524288000 19 | 466033777 20 | 466033777 21 | 524288000 22 | 466033777 23 | 524288000 24 | 524288000 25 | 524288000 26 | 599186285 27 | 599186285 28 | 524288000 29 | 524288000 30 | 524288000 31 | 524288000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-16-256k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 131072000 3 | 131072000 4 | 131072000 5 | 131072000 6 | 131072000 7 | 131072000 8 | 131072000 9 | 131072000 10 | 131072000 11 | 131072000 12 | 131072000 13 | 131072000 14 | 87381333 15 | 131072000 16 | 87381333 17 | 131072000 18 | 131072000 19 | 87381333 20 | 131072000 21 | 131072000 22 | 87381333 23 | 131072000 24 | 131072000 25 | 131072000 26 | 131072000 27 | 87381333 28 | 131072000 29 | 131072000 30 | 131072000 31 | 131072000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-256k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 131072000 3 | 131072000 4 | 131072000 5 | 131072000 6 | 131072000 7 | 131072000 8 | 131072000 9 | 131072000 10 | 131072000 11 | 131072000 12 | 131072000 13 | 131072000 14 | 131072000 15 | 131072000 16 | 131072000 17 | 131072000 18 | 131072000 19 | 131072000 20 | 131072000 21 | 131072000 22 | 131072000 23 | 131072000 24 | 131072000 25 | 131072000 26 | 131072000 27 | 131072000 28 | 131072000 29 | 131072000 30 | 131072000 31 | 131072000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-32-256k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 131072000 3 | 131072000 4 | 131072000 5 | 87381333 6 | 87381333 7 | 87381333 8 | 131072000 9 | 131072000 10 | 131072000 11 | 131072000 12 | 131072000 13 | 131072000 14 | 131072000 15 | 87381333 16 | 87381333 17 | 131072000 18 | 131072000 19 | 131072000 20 | 131072000 21 | 131072000 22 | 131072000 23 | 131072000 24 | 131072000 25 | 131072000 26 | 87381333 27 | 131072000 28 | 87381333 29 | 131072000 30 | 131072000 31 | 131072000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-8-256k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 131072000 3 | 131072000 4 | 131072000 5 | 87381333 6 | 131072000 7 | 131072000 8 | 131072000 9 | 131072000 10 | 131072000 11 | 131072000 12 | 131072000 13 | 131072000 14 | 131072000 15 | 131072000 16 | 131072000 17 | 131072000 18 | 131072000 19 | 131072000 20 | 131072000 21 | 131072000 22 | 131072000 23 | 131072000 24 | 131072000 25 | 131072000 26 | 131072000 27 | 131072000 28 | 131072000 29 | 87381333 30 | 131072000 31 | 87381333 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-write-2-flufflefs-262144k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 147735528 3 | 154361964 4 | 149963941 5 | 151061033 6 | 80976004 7 | 142179796 8 | 73063542 9 | 151744180 10 | 77114465 11 | 100424787 12 | 129804379 13 | 100537623 14 | 131392783 15 | 128438017 16 | 78743166 17 | 77515291 18 | 98689505 19 | 100877661 20 | 75594327 21 | 134486701 22 | 70548083 23 | 73443353 24 | 75915004 25 | 74752285 26 | 73665053 27 | 77942931 28 | 74071593 29 | 73222983 30 | 73725750 31 | 98076527 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-write-2-flufflefs-4096k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 80659692 3 | 89240510 4 | 149796571 5 | 73584280 6 | 104857600 7 | 131072000 8 | 69905066 9 | 76260072 10 | 119837257 11 | 131072000 12 | 80659692 13 | 67650064 14 | 174762666 15 | 190650181 16 | 190650181 17 | 167772160 18 | 161319384 19 | 71089898 20 | 69905066 21 | 71089898 22 | 135300129 23 | 99864380 24 | 82241254 25 | 76260072 26 | 119837257 27 | 149796571 28 | 161319384 29 | 79137811 30 | 155344592 31 | 104857600 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-write-3-flufflefs-1024k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 104857600 3 | 58254222 4 | 80659692 5 | 149796571 6 | 116508444 7 | 174762666 8 | 65536000 9 | 149796571 10 | 174762666 11 | 43690666 12 | 174762666 13 | 174762666 14 | 131072000 15 | 80659692 16 | 149796571 17 | 69905066 18 | 80659692 19 | 47662545 20 | 131072000 21 | 174762666 22 | 149796571 23 | 131072000 24 | 104857600 25 | 149796571 26 | 95325090 27 | 58254222 28 | 61680941 29 | 104857600 30 | 116508444 31 | 74898285 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-write-3-flufflefs-16384k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 56111090 3 | 119837257 4 | 139810133 5 | 86480494 6 | 142179796 7 | 132104062 8 | 51941845 9 | 54471480 10 | 55924053 11 | 54648912 12 | 57653663 13 | 61008058 14 | 61455003 15 | 52265470 16 | 129055507 17 | 117323188 18 | 52593153 19 | 108942961 20 | 52593153 21 | 136400130 22 | 122461430 23 | 140985008 24 | 53092455 25 | 142179796 26 | 56111090 27 | 56871918 28 | 133152507 29 | 126144481 30 | 137518163 31 | 52103155 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-write-4-flufflefs-1024k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 87381333 3 | 95325090 4 | 58254222 5 | 61680941 6 | 61680941 7 | 149796571 8 | 49932190 9 | 80659692 10 | 131072000 11 | 131072000 12 | 131072000 13 | 149796571 14 | 131072000 15 | 149796571 16 | 149796571 17 | 149796571 18 | 149796571 19 | 49932190 20 | 149796571 21 | 74898285 22 | 52428800 23 | 149796571 24 | 43690666 25 | 52428800 26 | 149796571 27 | 131072000 28 | 41943040 29 | 131072000 30 | 149796571 31 | 49932190 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-f2fs-16-16384k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 729444173 3 | 798915047 4 | 838860800 5 | 838860800 6 | 838860800 7 | 798915047 8 | 838860800 9 | 798915047 10 | 798915047 11 | 883011368 12 | 798915047 13 | 798915047 14 | 838860800 15 | 798915047 16 | 883011368 17 | 883011368 18 | 798915047 19 | 798915047 20 | 798915047 21 | 798915047 22 | 838860800 23 | 838860800 24 | 838860800 25 | 838860800 26 | 883011368 27 | 798915047 28 | 798915047 29 | 838860800 30 | 838860800 31 | 838860800 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-f2fs-32-16384k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 838860800 3 | 699050666 4 | 729444173 5 | 838860800 6 | 798915047 7 | 798915047 8 | 798915047 9 | 762600727 10 | 798915047 11 | 671088640 12 | 762600727 13 | 838860800 14 | 838860800 15 | 798915047 16 | 671088640 17 | 798915047 18 | 838860800 19 | 798915047 20 | 699050666 21 | 798915047 22 | 699050666 23 | 838860800 24 | 762600727 25 | 838860800 26 | 798915047 27 | 762600727 28 | 838860800 29 | 699050666 30 | 762600727 31 | 798915047 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-1-1048576k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 460438174 3 | 460635703 4 | 461031268 5 | 460833400 6 | 466236137 7 | 460635703 8 | 461031268 9 | 466438672 10 | 461031268 11 | 460635703 12 | 460438174 13 | 460635703 14 | 463419000 15 | 467657588 16 | 467657588 17 | 466033777 18 | 464421204 19 | 467250576 20 | 471146039 21 | 467047335 22 | 467861361 23 | 466641383 24 | 471767057 25 | 468678229 26 | 469497955 27 | 467453993 28 | 466641383 29 | 467250576 30 | 468269439 31 | 469497955 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-1-16384k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 284359593 3 | 284359593 4 | 284359593 5 | 289262344 6 | 289262344 7 | 279620266 8 | 284359593 9 | 279620266 10 | 289262344 11 | 284359593 12 | 289262344 13 | 289262344 14 | 284359593 15 | 289262344 16 | 284359593 17 | 284359593 18 | 289262344 19 | 284359593 20 | 284359593 21 | 284359593 22 | 284359593 23 | 284359593 24 | 284359593 25 | 284359593 26 | 279620266 27 | 279620266 28 | 284359593 29 | 284359593 30 | 279620266 31 | 279620266 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-1-262144k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 400649934 3 | 400052840 4 | 394178349 5 | 400052840 6 | 394758023 7 | 396507320 8 | 398863976 9 | 398272189 10 | 400649934 11 | 398272189 12 | 399457523 13 | 398863976 14 | 395339405 15 | 406105077 16 | 407337566 17 | 401849485 18 | 406105077 19 | 411710822 20 | 398863976 21 | 412343250 22 | 451911542 23 | 445906073 24 | 445906073 25 | 446648013 26 | 446648013 27 | 444429562 28 | 445166593 29 | 443694968 30 | 446648013 31 | 444429562 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-1-65536k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 401849485 3 | 404270265 4 | 404270265 5 | 401849485 6 | 404270265 7 | 404270265 8 | 404270265 9 | 401849485 10 | 401849485 11 | 401849485 12 | 404270265 13 | 404270265 14 | 401849485 15 | 404270265 16 | 401849485 17 | 404270265 18 | 404270265 19 | 404270265 20 | 401849485 21 | 404270265 22 | 404270265 23 | 401849485 24 | 406720387 25 | 401849485 26 | 404270265 27 | 404270265 28 | 406720387 29 | 404270265 30 | 401849485 31 | 404270265 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-16-16384k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 289262344 3 | 289262344 4 | 284359593 5 | 289262344 6 | 289262344 7 | 284359593 8 | 284359593 9 | 284359593 10 | 284359593 11 | 289262344 12 | 289262344 13 | 289262344 14 | 284359593 15 | 289262344 16 | 279620266 17 | 289262344 18 | 284359593 19 | 289262344 20 | 289262344 21 | 289262344 22 | 279620266 23 | 294337122 24 | 289262344 25 | 289262344 26 | 279620266 27 | 284359593 28 | 284359593 29 | 284359593 30 | 284359593 31 | 284359593 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-16-262144k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 448888722 3 | 450395060 4 | 449640629 5 | 449640629 6 | 445906073 7 | 450395060 8 | 448888722 9 | 449640629 10 | 449640629 11 | 449640629 12 | 448888722 13 | 448888722 14 | 453438270 15 | 451152026 16 | 453438270 17 | 444429562 18 | 453438270 19 | 448888722 20 | 448139325 21 | 451911542 22 | 448888722 23 | 454205509 24 | 449640629 25 | 454205509 26 | 451911542 27 | 451152026 28 | 451911542 29 | 449640629 30 | 454205509 31 | 451911542 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-16-65536k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 406720387 3 | 404270265 4 | 404270265 5 | 406720387 6 | 411710822 7 | 406720387 8 | 404270265 9 | 404270265 10 | 406720387 11 | 404270265 12 | 404270265 13 | 406720387 14 | 404270265 15 | 406720387 16 | 406720387 17 | 404270265 18 | 411710822 19 | 411710822 20 | 404270265 21 | 411710822 22 | 406720387 23 | 406720387 24 | 404270265 25 | 406720387 26 | 404270265 27 | 404270265 28 | 404270265 29 | 404270265 30 | 397093869 31 | 401849485 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-2-1048576k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 430357444 3 | 429496729 4 | 426595877 5 | 432089265 6 | 432089265 7 | 430530001 8 | 431568257 9 | 426257175 10 | 428468405 11 | 427956087 12 | 430702697 13 | 426257175 14 | 427444993 15 | 433309856 16 | 425750128 17 | 432263214 18 | 431394867 19 | 428639450 20 | 433835080 21 | 430185025 22 | 428468405 23 | 430875531 24 | 429153406 25 | 433484789 26 | 433835080 27 | 431568257 28 | 434010438 29 | 429496729 30 | 430012744 31 | 432611532 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-2-16384k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 284359593 3 | 289262344 4 | 289262344 5 | 289262344 6 | 284359593 7 | 284359593 8 | 284359593 9 | 289262344 10 | 289262344 11 | 289262344 12 | 279620266 13 | 284359593 14 | 284359593 15 | 284359593 16 | 284359593 17 | 284359593 18 | 289262344 19 | 284359593 20 | 289262344 21 | 284359593 22 | 289262344 23 | 284359593 24 | 284359593 25 | 289262344 26 | 284359593 27 | 284359593 28 | 289262344 29 | 289262344 30 | 284359593 31 | 289262344 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-2-262144k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 404270265 3 | 407956620 4 | 405491625 5 | 403056240 6 | 403662339 7 | 405491625 8 | 404880024 9 | 403662339 10 | 406720387 11 | 403662339 12 | 403056240 13 | 409825123 14 | 404270265 15 | 401248813 16 | 414892513 17 | 402451958 18 | 401849485 19 | 404270265 20 | 403056240 21 | 404880024 22 | 398272189 23 | 401248813 24 | 405491625 25 | 401849485 26 | 404270265 27 | 404270265 28 | 398272189 29 | 407337566 30 | 417473493 31 | 416825242 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-2-65536k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 409200390 3 | 409200390 4 | 409200390 5 | 409200390 6 | 360800344 7 | 362750616 8 | 362750616 9 | 364722086 10 | 362750616 11 | 362750616 12 | 360800344 13 | 360800344 14 | 364722086 15 | 364722086 16 | 360800344 17 | 364722086 18 | 364722086 19 | 360800344 20 | 360800344 21 | 360800344 22 | 362750616 23 | 364722086 24 | 362750616 25 | 362750616 26 | 360800344 27 | 358870930 28 | 364722086 29 | 360800344 30 | 362750616 31 | 355073354 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-32-16384k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 279620266 3 | 284359593 4 | 289262344 5 | 289262344 6 | 275036327 7 | 284359593 8 | 284359593 9 | 294337122 10 | 284359593 11 | 275036327 12 | 289262344 13 | 279620266 14 | 284359593 15 | 289262344 16 | 284359593 17 | 289262344 18 | 284359593 19 | 289262344 20 | 289262344 21 | 284359593 22 | 289262344 23 | 289262344 24 | 289262344 25 | 289262344 26 | 284359593 27 | 289262344 28 | 289262344 29 | 289262344 30 | 289262344 31 | 289262344 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-32-262144k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 456522884 3 | 454205509 4 | 454975349 5 | 454975349 6 | 452673618 7 | 453438270 8 | 454205509 9 | 451911542 10 | 453438270 11 | 453438270 12 | 448139325 13 | 446648013 14 | 451152026 15 | 454205509 16 | 453438270 17 | 452673618 18 | 454205509 19 | 452673618 20 | 454205509 21 | 452673618 22 | 453438270 23 | 452673618 24 | 453438270 25 | 451152026 26 | 451911542 27 | 453438270 28 | 451152026 29 | 449640629 30 | 448888722 31 | 452673618 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-32-65536k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 411710822 3 | 411710822 4 | 414252246 5 | 411710822 6 | 411710822 7 | 411710822 8 | 411710822 9 | 411710822 10 | 411710822 11 | 411710822 12 | 411710822 13 | 411710822 14 | 411710822 15 | 411710822 16 | 414252246 17 | 414252246 18 | 411710822 19 | 411710822 20 | 411710822 21 | 411710822 22 | 411710822 23 | 411710822 24 | 411710822 25 | 411710822 26 | 409200390 27 | 409200390 28 | 409200390 29 | 409200390 30 | 411710822 31 | 411710822 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-4-1048576k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 466844271 3 | 468678229 4 | 469703335 5 | 469292755 6 | 470732934 7 | 468473745 8 | 468269439 9 | 470939396 10 | 468678229 11 | 468269439 12 | 468678229 13 | 468269439 14 | 469497955 15 | 466844271 16 | 459649753 17 | 459846605 18 | 461031268 19 | 460043626 20 | 460043626 21 | 459453069 22 | 466844271 23 | 463019329 24 | 461824440 25 | 461031268 26 | 463619094 27 | 462421112 28 | 462222050 29 | 461625891 30 | 461427513 31 | 462222050 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-4-16384k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 262144000 3 | 266305015 4 | 262144000 5 | 262144000 6 | 262144000 7 | 262144000 8 | 270600258 9 | 262144000 10 | 262144000 11 | 262144000 12 | 262144000 13 | 266305015 14 | 270600258 15 | 266305015 16 | 258111015 17 | 262144000 18 | 266305015 19 | 262144000 20 | 262144000 21 | 258111015 22 | 262144000 23 | 258111015 24 | 262144000 25 | 258111015 26 | 262144000 27 | 266305015 28 | 266305015 29 | 266305015 30 | 262144000 31 | 262144000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-4-262144k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 416825242 3 | 417473493 4 | 416825242 5 | 414892513 6 | 414252246 7 | 415534761 8 | 420086785 9 | 416179001 10 | 418123763 11 | 412977624 12 | 418123763 13 | 415534761 14 | 453438270 15 | 454975349 16 | 453438270 17 | 454205509 18 | 454975349 19 | 455747803 20 | 455747803 21 | 454975349 22 | 455747803 23 | 454975349 24 | 454975349 25 | 455747803 26 | 454975349 27 | 454205509 28 | 454205509 29 | 454975349 30 | 454975349 31 | 454205509 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-4-65536k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 368730021 3 | 372827022 4 | 374909854 5 | 368730021 6 | 372827022 7 | 370767204 8 | 370767204 9 | 370767204 10 | 370767204 11 | 370767204 12 | 368730021 13 | 370767204 14 | 368730021 15 | 366715103 16 | 370767204 17 | 353204547 18 | 370767204 19 | 368730021 20 | 372827022 21 | 368730021 22 | 368730021 23 | 370767204 24 | 370767204 25 | 370767204 26 | 370767204 27 | 370767204 28 | 372827022 29 | 372827022 30 | 372827022 31 | 370767204 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-8-1048576k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 468473745 3 | 461824440 4 | 469292755 5 | 457300606 6 | 467657588 7 | 462023160 8 | 456911414 9 | 457495451 10 | 468269439 11 | 450206215 12 | 456717066 13 | 459256554 14 | 460833400 15 | 455361248 16 | 459256554 17 | 465024609 18 | 460635703 19 | 450773225 20 | 453821565 21 | 451721423 22 | 469497955 23 | 457690462 24 | 464622165 25 | 459846605 26 | 468065311 27 | 462620346 28 | 459453069 29 | 458080982 30 | 462421112 31 | 459060206 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-8-16384k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 266305015 3 | 174762666 4 | 161319384 5 | 161319384 6 | 159783009 7 | 161319384 8 | 270600258 9 | 209715200 10 | 166111049 11 | 161319384 12 | 161319384 13 | 159783009 14 | 161319384 15 | 262144000 16 | 199728761 17 | 171196081 18 | 161319384 19 | 161319384 20 | 161319384 21 | 161319384 22 | 270600258 23 | 204600195 24 | 174762666 25 | 162885592 26 | 161319384 27 | 161319384 28 | 161319384 29 | 270600258 30 | 204600195 31 | 171196081 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-8-262144k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 437191296 3 | 448139325 4 | 454205509 5 | 416825242 6 | 445166593 7 | 454205509 8 | 414892513 9 | 439337898 10 | 444429562 11 | 410451767 12 | 438620026 13 | 445166593 14 | 411710822 15 | 442962798 16 | 453438270 17 | 454975349 18 | 456522884 19 | 455747803 20 | 419430400 21 | 442962798 22 | 451152026 23 | 452673618 24 | 446648013 25 | 420745228 26 | 442233041 27 | 452673618 28 | 454205509 29 | 422068327 30 | 435771844 31 | 439337898 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-8-65536k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 310689185 3 | 401849485 4 | 319566019 5 | 397093869 6 | 321095043 7 | 399457523 8 | 319566019 9 | 404270265 10 | 333874945 11 | 404270265 12 | 325771184 13 | 404270265 14 | 324197410 15 | 335544320 16 | 337230472 17 | 406720387 18 | 330585536 19 | 404270265 20 | 328965019 21 | 406720387 22 | 332222099 23 | 404270265 24 | 330585536 25 | 340654131 26 | 309257437 27 | 328965019 28 | 342392163 29 | 344148020 30 | 344148020 31 | 347714321 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-f2fs-1-16384k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 1198372571 3 | 986895058 4 | 986895058 5 | 932067555 6 | 932067555 7 | 932067555 8 | 932067555 9 | 883011368 10 | 932067555 11 | 883011368 12 | 986895058 13 | 932067555 14 | 932067555 15 | 883011368 16 | 932067555 17 | 932067555 18 | 883011368 19 | 883011368 20 | 932067555 21 | 932067555 22 | 883011368 23 | 883011368 24 | 932067555 25 | 932067555 26 | 838860800 27 | 883011368 28 | 932067555 29 | 883011368 30 | 932067555 31 | 932067555 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-f2fs-1-4096k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 1398101333 3 | 699050666 4 | 699050666 5 | 599186285 6 | 699050666 7 | 599186285 8 | 699050666 9 | 838860800 10 | 599186285 11 | 599186285 12 | 599186285 13 | 699050666 14 | 838860800 15 | 838860800 16 | 699050666 17 | 599186285 18 | 599186285 19 | 699050666 20 | 699050666 21 | 699050666 22 | 599186285 23 | 699050666 24 | 699050666 25 | 699050666 26 | 699050666 27 | 838860800 28 | 699050666 29 | 699050666 30 | 599186285 31 | 599186285 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-f2fs-16-1024k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 524288000 3 | 524288000 4 | 524288000 5 | 1048576000 6 | 1048576000 7 | 524288000 8 | 524288000 9 | 524288000 10 | 524288000 11 | 524288000 12 | 1048576000 13 | 524288000 14 | 524288000 15 | 524288000 16 | 524288000 17 | 524288000 18 | 524288000 19 | 524288000 20 | 524288000 21 | 524288000 22 | 524288000 23 | 524288000 24 | 524288000 25 | 1048576000 26 | 524288000 27 | 524288000 28 | 524288000 29 | 58254222 30 | 45590260 31 | 28339891 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-f2fs-4-16384k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 1198372571 3 | 798915047 4 | 838860800 5 | 932067555 6 | 883011368 7 | 932067555 8 | 932067555 9 | 883011368 10 | 762600727 11 | 838860800 12 | 1048576000 13 | 798915047 14 | 883011368 15 | 838860800 16 | 883011368 17 | 798915047 18 | 883011368 19 | 883011368 20 | 798915047 21 | 932067555 22 | 798915047 23 | 932067555 24 | 932067555 25 | 932067555 26 | 838860800 27 | 1048576000 28 | 883011368 29 | 838860800 30 | 883011368 31 | 762600727 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-f2fs-8-16384k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 1398101333 3 | 262144000 4 | 246723764 5 | 1048576000 6 | 932067555 7 | 986895058 8 | 986895058 9 | 986895058 10 | 883011368 11 | 883011368 12 | 986895058 13 | 883011368 14 | 1048576000 15 | 986895058 16 | 883011368 17 | 838860800 18 | 838860800 19 | 883011368 20 | 883011368 21 | 932067555 22 | 883011368 23 | 838860800 24 | 932067555 25 | 1048576000 26 | 883011368 27 | 883011368 28 | 986895058 29 | 986895058 30 | 932067555 31 | 883011368 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-1-1024k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 174762666 3 | 174762666 4 | 149796571 5 | 174762666 6 | 174762666 7 | 174762666 8 | 174762666 9 | 174762666 10 | 174762666 11 | 174762666 12 | 174762666 13 | 174762666 14 | 149796571 15 | 149796571 16 | 174762666 17 | 174762666 18 | 174762666 19 | 174762666 20 | 174762666 21 | 174762666 22 | 174762666 23 | 174762666 24 | 174762666 25 | 174762666 26 | 174762666 27 | 174762666 28 | 149796571 29 | 149796571 30 | 149796571 31 | 174762666 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-1-16384k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 223696213 3 | 223696213 4 | 223696213 5 | 220752842 6 | 223696213 7 | 223696213 8 | 220752842 9 | 220752842 10 | 220752842 11 | 220752842 12 | 220752842 13 | 220752842 14 | 223696213 15 | 223696213 16 | 223696213 17 | 223696213 18 | 220752842 19 | 220752842 20 | 223696213 21 | 223696213 22 | 220752842 23 | 220752842 24 | 223696213 25 | 223696213 26 | 223696213 27 | 223696213 28 | 223696213 29 | 223696213 30 | 223696213 31 | 223696213 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-1-256k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 131072000 3 | 131072000 4 | 131072000 5 | 131072000 6 | 131072000 7 | 131072000 8 | 131072000 9 | 131072000 10 | 131072000 11 | 131072000 12 | 131072000 13 | 131072000 14 | 131072000 15 | 131072000 16 | 131072000 17 | 131072000 18 | 131072000 19 | 131072000 20 | 131072000 21 | 131072000 22 | 131072000 23 | 131072000 24 | 131072000 25 | 131072000 26 | 131072000 27 | 131072000 28 | 131072000 29 | 131072000 30 | 131072000 31 | 131072000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-1-262144k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 217005219 3 | 234646377 4 | 234646377 5 | 234441446 6 | 215437765 7 | 233828794 8 | 235263326 9 | 234441446 10 | 234851667 11 | 234236872 12 | 233828794 13 | 235676431 14 | 235263326 15 | 234032655 16 | 215437765 17 | 235469698 18 | 235263326 19 | 234441446 20 | 235263326 21 | 235469698 22 | 235057316 23 | 231210556 24 | 213722496 25 | 234236872 26 | 234236872 27 | 215610808 28 | 216305766 29 | 234236872 30 | 233625288 31 | 215957728 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-1-4096k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 199728761 3 | 199728761 4 | 199728761 5 | 190650181 6 | 199728761 7 | 199728761 8 | 190650181 9 | 199728761 10 | 199728761 11 | 190650181 12 | 190650181 13 | 190650181 14 | 199728761 15 | 190650181 16 | 199728761 17 | 199728761 18 | 190650181 19 | 190650181 20 | 190650181 21 | 199728761 22 | 199728761 23 | 199728761 24 | 199728761 25 | 199728761 26 | 199728761 27 | 199728761 28 | 190650181 29 | 199728761 30 | 209715200 31 | 190650181 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-1-65536k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 232210602 3 | 233828794 4 | 233016888 5 | 232210602 6 | 231409875 7 | 233828794 8 | 231409875 9 | 232210602 10 | 231409875 11 | 232210602 12 | 233016888 13 | 232210602 14 | 232210602 15 | 232210602 16 | 233016888 17 | 233016888 18 | 233016888 19 | 232210602 20 | 212369822 21 | 231409875 22 | 211699886 23 | 232210602 24 | 212369822 25 | 232210602 26 | 231409875 27 | 233016888 28 | 232210602 29 | 211699886 30 | 213044012 31 | 212369822 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-1024k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 174762666 3 | 174762666 4 | 149796571 5 | 174762666 6 | 174762666 7 | 174762666 8 | 174762666 9 | 174762666 10 | 174762666 11 | 174762666 12 | 174762666 13 | 174762666 14 | 149796571 15 | 149796571 16 | 174762666 17 | 174762666 18 | 174762666 19 | 174762666 20 | 174762666 21 | 174762666 22 | 174762666 23 | 174762666 24 | 174762666 25 | 174762666 26 | 174762666 27 | 174762666 28 | 149796571 29 | 149796571 30 | 149796571 31 | 174762666 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-1048576k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 234134719 3 | 226767016 4 | 215308166 5 | 215567521 6 | 215351348 7 | 224397455 8 | 235935360 9 | 215740772 10 | 215481000 11 | 215654112 12 | 216001171 13 | 215870893 14 | 215006372 15 | 215049434 16 | 215914302 17 | 215524252 18 | 215437765 19 | 215610808 20 | 215049434 21 | 215827502 22 | 215870893 23 | 215914302 24 | 214705423 25 | 233016888 26 | 213679964 27 | 219175714 28 | 213637450 29 | 213382715 30 | 213637450 31 | 214276955 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-16-1024k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 149796571 3 | 149796571 4 | 149796571 5 | 149796571 6 | 149796571 7 | 149796571 8 | 149796571 9 | 174762666 10 | 149796571 11 | 149796571 12 | 149796571 13 | 149796571 14 | 149796571 15 | 149796571 16 | 149796571 17 | 174762666 18 | 174762666 19 | 174762666 20 | 174762666 21 | 174762666 22 | 149796571 23 | 174762666 24 | 174762666 25 | 174762666 26 | 174762666 27 | 174762666 28 | 174762666 29 | 174762666 30 | 174762666 31 | 174762666 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-16-16384k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 220752842 3 | 223696213 4 | 223696213 5 | 220752842 6 | 223696213 7 | 220752842 8 | 220752842 9 | 226719135 10 | 223696213 11 | 226719135 12 | 226719135 13 | 223696213 14 | 223696213 15 | 204600195 16 | 223696213 17 | 226719135 18 | 207126123 19 | 226719135 20 | 223696213 21 | 223696213 22 | 223696213 23 | 223696213 24 | 226719135 25 | 226719135 26 | 226719135 27 | 226719135 28 | 223696213 29 | 223696213 30 | 223696213 31 | 226719135 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-16-4096k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 199728761 3 | 199728761 4 | 209715200 5 | 199728761 6 | 199728761 7 | 199728761 8 | 199728761 9 | 199728761 10 | 209715200 11 | 199728761 12 | 199728761 13 | 199728761 14 | 199728761 15 | 199728761 16 | 199728761 17 | 199728761 18 | 182361043 19 | 199728761 20 | 199728761 21 | 199728761 22 | 199728761 23 | 199728761 24 | 182361043 25 | 190650181 26 | 209715200 27 | 199728761 28 | 199728761 29 | 199728761 30 | 199728761 31 | 199728761 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-16-65536k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 232210602 3 | 233016888 4 | 232210602 5 | 233828794 6 | 233016888 7 | 212369822 8 | 225197530 9 | 213722496 10 | 213722496 11 | 213044012 12 | 233016888 13 | 216480206 14 | 213044012 15 | 212369822 16 | 214405316 17 | 213722496 18 | 213044012 19 | 213044012 20 | 231409875 21 | 215092512 22 | 214405316 23 | 213722496 24 | 213722496 25 | 213722496 26 | 213722496 27 | 214405316 28 | 214405316 29 | 233016888 30 | 214405316 31 | 233016888 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-16384k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 223696213 3 | 223696213 4 | 223696213 5 | 220752842 6 | 223696213 7 | 223696213 8 | 220752842 9 | 220752842 10 | 220752842 11 | 220752842 12 | 220752842 13 | 220752842 14 | 223696213 15 | 223696213 16 | 223696213 17 | 223696213 18 | 220752842 19 | 220752842 20 | 223696213 21 | 223696213 22 | 220752842 23 | 220752842 24 | 223696213 25 | 223696213 26 | 223696213 27 | 223696213 28 | 223696213 29 | 223696213 30 | 223696213 31 | 223696213 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-2-1024k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 174762666 3 | 174762666 4 | 174762666 5 | 174762666 6 | 174762666 7 | 174762666 8 | 174762666 9 | 174762666 10 | 174762666 11 | 174762666 12 | 174762666 13 | 174762666 14 | 174762666 15 | 174762666 16 | 174762666 17 | 174762666 18 | 174762666 19 | 174762666 20 | 174762666 21 | 174762666 22 | 149796571 23 | 174762666 24 | 174762666 25 | 149796571 26 | 174762666 27 | 174762666 28 | 174762666 29 | 174762666 30 | 174762666 31 | 174762666 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-2-16384k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 223696213 3 | 223696213 4 | 226719135 5 | 226719135 6 | 223696213 7 | 229824876 8 | 223696213 9 | 223696213 10 | 223696213 11 | 226719135 12 | 223696213 13 | 226719135 14 | 226719135 15 | 223696213 16 | 223696213 17 | 226719135 18 | 226719135 19 | 226719135 20 | 223696213 21 | 226719135 22 | 226719135 23 | 229824876 24 | 223696213 25 | 226719135 26 | 226719135 27 | 223696213 28 | 226719135 29 | 223696213 30 | 223696213 31 | 226719135 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-2-256k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 131072000 3 | 131072000 4 | 131072000 5 | 131072000 6 | 131072000 7 | 131072000 8 | 131072000 9 | 131072000 10 | 131072000 11 | 131072000 12 | 131072000 13 | 131072000 14 | 131072000 15 | 131072000 16 | 131072000 17 | 131072000 18 | 131072000 19 | 131072000 20 | 131072000 21 | 131072000 22 | 131072000 23 | 131072000 24 | 131072000 25 | 131072000 26 | 131072000 27 | 131072000 28 | 131072000 29 | 131072000 30 | 131072000 31 | 131072000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-2-262144k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 235263326 3 | 235883528 4 | 235883528 5 | 235883528 6 | 236507009 7 | 236090990 8 | 236298816 9 | 235883528 10 | 236507009 11 | 235883528 12 | 235883528 13 | 236298816 14 | 235883528 15 | 236298816 16 | 235676431 17 | 237133795 18 | 236715569 19 | 236715569 20 | 236298816 21 | 236298816 22 | 237343462 23 | 235883528 24 | 236298816 25 | 236090990 26 | 236090990 27 | 236298816 28 | 236715569 29 | 236715569 30 | 235883528 31 | 235676431 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-2-4096k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 209715200 3 | 190650181 4 | 199728761 5 | 209715200 6 | 199728761 7 | 199728761 8 | 199728761 9 | 199728761 10 | 199728761 11 | 199728761 12 | 199728761 13 | 199728761 14 | 190650181 15 | 199728761 16 | 199728761 17 | 199728761 18 | 199728761 19 | 199728761 20 | 199728761 21 | 199728761 22 | 209715200 23 | 199728761 24 | 199728761 25 | 199728761 26 | 209715200 27 | 209715200 28 | 209715200 29 | 199728761 30 | 199728761 31 | 199728761 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-2-65536k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 233828794 3 | 233016888 4 | 233828794 5 | 233828794 6 | 232210602 7 | 233016888 8 | 233016888 9 | 234646377 10 | 232210602 11 | 233828794 12 | 233016888 13 | 233016888 14 | 233828794 15 | 233828794 16 | 234646377 17 | 232210602 18 | 233828794 19 | 233016888 20 | 233016888 21 | 233016888 22 | 233016888 23 | 233016888 24 | 233828794 25 | 234646377 26 | 233828794 27 | 233016888 28 | 233828794 29 | 235469698 30 | 233016888 31 | 233828794 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-262144k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 217005219 3 | 234646377 4 | 234646377 5 | 234441446 6 | 215437765 7 | 233828794 8 | 235263326 9 | 234441446 10 | 234851667 11 | 234236872 12 | 233828794 13 | 235676431 14 | 235263326 15 | 234032655 16 | 215437765 17 | 235469698 18 | 235263326 19 | 234441446 20 | 235263326 21 | 235469698 22 | 235057316 23 | 231210556 24 | 213722496 25 | 234236872 26 | 234236872 27 | 215610808 28 | 216305766 29 | 234236872 30 | 233625288 31 | 215957728 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-32-1024k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 174762666 3 | 149796571 4 | 149796571 5 | 174762666 6 | 174762666 7 | 149796571 8 | 174762666 9 | 149796571 10 | 149796571 11 | 149796571 12 | 149796571 13 | 149796571 14 | 149796571 15 | 149796571 16 | 149796571 17 | 149796571 18 | 149796571 19 | 149796571 20 | 174762666 21 | 174762666 22 | 174762666 23 | 174762666 24 | 149796571 25 | 174762666 26 | 174762666 27 | 174762666 28 | 174762666 29 | 174762666 30 | 149796571 31 | 174762666 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-32-16384k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 207126123 3 | 204600195 4 | 220752842 5 | 204600195 6 | 223696213 7 | 204600195 8 | 204600195 9 | 220752842 10 | 223696213 11 | 223696213 12 | 204600195 13 | 207126123 14 | 223696213 15 | 207126123 16 | 223696213 17 | 209715200 18 | 209715200 19 | 220752842 20 | 220752842 21 | 223696213 22 | 220752842 23 | 223696213 24 | 223696213 25 | 223696213 26 | 220752842 27 | 220752842 28 | 223696213 29 | 223696213 30 | 207126123 31 | 220752842 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-32-4096k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 199728761 3 | 199728761 4 | 209715200 5 | 199728761 6 | 199728761 7 | 199728761 8 | 209715200 9 | 199728761 10 | 199728761 11 | 199728761 12 | 209715200 13 | 199728761 14 | 199728761 15 | 209715200 16 | 199728761 17 | 199728761 18 | 209715200 19 | 199728761 20 | 199728761 21 | 199728761 22 | 190650181 23 | 199728761 24 | 199728761 25 | 199728761 26 | 199728761 27 | 199728761 28 | 199728761 29 | 182361043 30 | 199728761 31 | 199728761 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-32-65536k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 232210602 3 | 232210602 4 | 232210602 5 | 232210602 6 | 232210602 7 | 231409875 8 | 231409875 9 | 231409875 10 | 231409875 11 | 230614652 12 | 231409875 13 | 233016888 14 | 232210602 15 | 232210602 16 | 213044012 17 | 213044012 18 | 232210602 19 | 230614652 20 | 231409875 21 | 232210602 22 | 231409875 23 | 231409875 24 | 230614652 25 | 231409875 26 | 230614652 27 | 230614652 28 | 230614652 29 | 232210602 30 | 231409875 31 | 232210602 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-4-1024k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 149796571 3 | 174762666 4 | 174762666 5 | 149796571 6 | 149796571 7 | 174762666 8 | 174762666 9 | 149796571 10 | 174762666 11 | 174762666 12 | 174762666 13 | 174762666 14 | 174762666 15 | 174762666 16 | 149796571 17 | 174762666 18 | 174762666 19 | 174762666 20 | 174762666 21 | 174762666 22 | 149796571 23 | 149796571 24 | 174762666 25 | 174762666 26 | 149796571 27 | 149796571 28 | 174762666 29 | 149796571 30 | 174762666 31 | 174762666 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-4-16384k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 223696213 3 | 223696213 4 | 223696213 5 | 223696213 6 | 223696213 7 | 226719135 8 | 223696213 9 | 220752842 10 | 226719135 11 | 223696213 12 | 223696213 13 | 223696213 14 | 226719135 15 | 207126123 16 | 226719135 17 | 223696213 18 | 223696213 19 | 226719135 20 | 223696213 21 | 223696213 22 | 220752842 23 | 223696213 24 | 226719135 25 | 226719135 26 | 223696213 27 | 223696213 28 | 223696213 29 | 209715200 30 | 223696213 31 | 223696213 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-4-256k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 131072000 3 | 131072000 4 | 131072000 5 | 131072000 6 | 131072000 7 | 131072000 8 | 131072000 9 | 131072000 10 | 131072000 11 | 131072000 12 | 131072000 13 | 131072000 14 | 131072000 15 | 131072000 16 | 131072000 17 | 131072000 18 | 131072000 19 | 131072000 20 | 131072000 21 | 131072000 22 | 131072000 23 | 131072000 24 | 131072000 25 | 131072000 26 | 131072000 27 | 131072000 28 | 131072000 29 | 131072000 30 | 131072000 31 | 131072000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-4-262144k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 236090990 3 | 235263326 4 | 235057316 5 | 235263326 6 | 235676431 7 | 235263326 8 | 233016888 9 | 234236872 10 | 235469698 11 | 229236085 12 | 222214781 13 | 234646377 14 | 225197530 15 | 217005219 16 | 216131607 17 | 215437765 18 | 215265000 19 | 215610808 20 | 216131607 21 | 215092512 22 | 216829932 23 | 216829932 24 | 220390357 25 | 215265000 26 | 215610808 27 | 217532784 28 | 214920301 29 | 234851667 30 | 215092512 31 | 214920301 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-4-4096k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 199728761 3 | 209715200 4 | 190650181 5 | 190650181 6 | 190650181 7 | 199728761 8 | 190650181 9 | 199728761 10 | 190650181 11 | 199728761 12 | 199728761 13 | 199728761 14 | 199728761 15 | 199728761 16 | 199728761 17 | 190650181 18 | 199728761 19 | 199728761 20 | 199728761 21 | 190650181 22 | 199728761 23 | 190650181 24 | 190650181 25 | 199728761 26 | 190650181 27 | 199728761 28 | 199728761 29 | 209715200 30 | 199728761 31 | 190650181 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-4-65536k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 233016888 3 | 213722496 4 | 233016888 5 | 214405316 6 | 213722496 7 | 232210602 8 | 232210602 9 | 233016888 10 | 233828794 11 | 233016888 12 | 233016888 13 | 233016888 14 | 232210602 15 | 232210602 16 | 233828794 17 | 233016888 18 | 233016888 19 | 233016888 20 | 231409875 21 | 232210602 22 | 233828794 23 | 233016888 24 | 233828794 25 | 233016888 26 | 234646377 27 | 232210602 28 | 231409875 29 | 233016888 30 | 233016888 31 | 232210602 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-4096k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 199728761 3 | 199728761 4 | 199728761 5 | 190650181 6 | 199728761 7 | 199728761 8 | 190650181 9 | 199728761 10 | 199728761 11 | 190650181 12 | 190650181 13 | 190650181 14 | 199728761 15 | 190650181 16 | 199728761 17 | 199728761 18 | 190650181 19 | 190650181 20 | 190650181 21 | 199728761 22 | 199728761 23 | 199728761 24 | 199728761 25 | 199728761 26 | 199728761 27 | 199728761 28 | 190650181 29 | 199728761 30 | 209715200 31 | 190650181 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-65536k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 232210602 3 | 233828794 4 | 233016888 5 | 232210602 6 | 231409875 7 | 233828794 8 | 231409875 9 | 232210602 10 | 231409875 11 | 232210602 12 | 233016888 13 | 232210602 14 | 232210602 15 | 232210602 16 | 233016888 17 | 233016888 18 | 233016888 19 | 232210602 20 | 212369822 21 | 231409875 22 | 211699886 23 | 232210602 24 | 212369822 25 | 232210602 26 | 231409875 27 | 233016888 28 | 232210602 29 | 211699886 30 | 213044012 31 | 212369822 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-8-1024k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 149796571 3 | 149796571 4 | 149796571 5 | 149796571 6 | 149796571 7 | 149796571 8 | 149796571 9 | 149796571 10 | 174762666 11 | 149796571 12 | 149796571 13 | 174762666 14 | 149796571 15 | 174762666 16 | 174762666 17 | 149796571 18 | 149796571 19 | 174762666 20 | 174762666 21 | 149796571 22 | 174762666 23 | 174762666 24 | 149796571 25 | 149796571 26 | 174762666 27 | 174762666 28 | 174762666 29 | 149796571 30 | 174762666 31 | 149796571 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-8-16384k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 220752842 3 | 220752842 4 | 204600195 5 | 220752842 6 | 220752842 7 | 223696213 8 | 220752842 9 | 202135132 10 | 220752842 11 | 207126123 12 | 220752842 13 | 220752842 14 | 204600195 15 | 220752842 16 | 223696213 17 | 223696213 18 | 220752842 19 | 220752842 20 | 220752842 21 | 207126123 22 | 220752842 23 | 223696213 24 | 204600195 25 | 220752842 26 | 204600195 27 | 204600195 28 | 202135132 29 | 223696213 30 | 204600195 31 | 220752842 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-8-262144k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 213382715 3 | 233625288 4 | 233625288 5 | 223509955 6 | 232814792 7 | 233422135 8 | 233828794 9 | 234646377 10 | 235469698 11 | 234851667 12 | 235263326 13 | 232613046 14 | 236507009 15 | 234032655 16 | 234441446 17 | 233422135 18 | 215092512 19 | 226527810 20 | 232210602 21 | 216480206 22 | 234851667 23 | 234851667 24 | 235057316 25 | 234646377 26 | 235057316 27 | 216131607 28 | 231609539 29 | 215437765 30 | 234851667 31 | 234851667 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-8-4096k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 199728761 3 | 199728761 4 | 190650181 5 | 182361043 6 | 190650181 7 | 199728761 8 | 199728761 9 | 199728761 10 | 199728761 11 | 199728761 12 | 190650181 13 | 199728761 14 | 199728761 15 | 190650181 16 | 199728761 17 | 199728761 18 | 199728761 19 | 199728761 20 | 199728761 21 | 199728761 22 | 199728761 23 | 199728761 24 | 190650181 25 | 199728761 26 | 190650181 27 | 199728761 28 | 182361043 29 | 199728761 30 | 199728761 31 | 199728761 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-8-65536k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 230614652 3 | 229824876 4 | 232210602 5 | 231409875 6 | 230614652 7 | 231409875 8 | 229824876 9 | 213722496 10 | 229824876 11 | 230614652 12 | 211699886 13 | 210372614 14 | 212369822 15 | 229824876 16 | 211034163 17 | 211699886 18 | 232210602 19 | 230614652 20 | 211034163 21 | 231409875 22 | 211034163 23 | 230614652 24 | 229824876 25 | 225197530 26 | 231409875 27 | 211699886 28 | 210372614 29 | 231409875 30 | 229824876 31 | 229824876 32 | -------------------------------------------------------------------------------- /playground/libbpf-bpf-load/hello_world.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | #define SEC(NAME) __attribute__((section(NAME), used)) 4 | 5 | static int (*bpf_trace_printk)(const char *fmt, int fmt_size, 6 | ...) = (void *)BPF_FUNC_trace_printk; 7 | 8 | SEC("tracepoint/syscalls/sys_enter_execve") 9 | int bpf_prog(void *ctx) { 10 | char msg[] = "Hello, BPF World!"; 11 | bpf_trace_printk(msg, sizeof(msg)); 12 | return 0; 13 | } 14 | 15 | char _license[] SEC("license") = "GPL"; -------------------------------------------------------------------------------- /measurements/fio/fio-rand-write-fluffle-1-256.csv: -------------------------------------------------------------------------------- 1 | bandwidth,iops 2 | 2587547,10107.609075 3 | 2355538,9201.324158 4 | 2639029,10308.707941 5 | 2424852,9472.081516 6 | 2326689,9088.632665 7 | 2440411,9532.85574 8 | 2313560,9037.344756 9 | 2332132,9109.892879 10 | 2336959,9128.748686 11 | 2368826,9253.229792 12 | 2349878,9179.213674 13 | 2378734,9291.932511 14 | 2337615,9131.312428 15 | 2347417,9169.60128 16 | 2332532,9111.456272 17 | 2369145,9254.47521 18 | 2335470,9122.930959 19 | 2324906,9081.666281 20 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-write-1-flufflefs-1024k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 174762666 3 | 149796571 4 | 174762666 5 | 116508444 6 | 116508444 7 | 95325090 8 | 95325090 9 | 174762666 10 | 149796571 11 | 174762666 12 | 149796571 13 | 116508444 14 | 87381333 15 | 95325090 16 | 174762666 17 | 174762666 18 | 131072000 19 | 209715200 20 | 95325090 21 | 174762666 22 | 116508444 23 | 95325090 24 | 174762666 25 | 95325090 26 | 131072000 27 | 174762666 28 | 149796571 29 | 116508444 30 | 149796571 31 | 131072000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-16-1048576k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 467657588 3 | 465831593 4 | 465024609 5 | 466033777 6 | 464421204 7 | 463419000 8 | 463619094 9 | 463619094 10 | 463219078 11 | 464220416 12 | 463819362 13 | 464622165 14 | 460635703 15 | 466236137 16 | 462023160 17 | 468065311 18 | 468269439 19 | 469497955 20 | 463819362 21 | 467047335 22 | 466844271 23 | 469497955 24 | 466844271 25 | 459649753 26 | 468269439 27 | 468065311 28 | 469087734 29 | 471352863 30 | 469087734 31 | 466438672 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-read-fluffle-32-1048576k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 466438672 3 | 464421204 4 | 465226093 5 | 465831593 6 | 465024609 7 | 464622165 8 | 465226093 9 | 469497955 10 | 469292755 11 | 468678229 12 | 467657588 13 | 469497955 14 | 469703335 15 | 468065311 16 | 461427513 17 | 461427513 18 | 461031268 19 | 460043626 20 | 461625891 21 | 466438672 22 | 460833400 23 | 458864027 24 | 467861361 25 | 457690462 26 | 459453069 27 | 466844271 28 | 458080982 29 | 459453069 30 | 459649753 31 | 458864027 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-f2fs-1-1048576k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 2550455638 3 | 835596750 4 | 804300991 5 | 797727952 6 | 794187739 7 | 863136514 8 | 833650484 9 | 866619712 10 | 889595545 11 | 911495606 12 | 886657162 13 | 867319728 14 | 893296026 15 | 846132249 16 | 955286320 17 | 882285804 18 | 1025541379 19 | 876523937 20 | 850825534 21 | 920087252 22 | 980586140 23 | 893296026 24 | 683476654 25 | 2294320136 26 | 1082401032 27 | 906876540 28 | 925639503 29 | 1026521820 30 | 1021638272 31 | 766411009 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-f2fs-2-1048576k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 2191309844 3 | 1053721122 4 | 874382592 5 | 847467895 6 | 830426778 7 | 828504493 8 | 825955249 9 | 854889987 10 | 735439605 11 | 923251783 12 | 728948964 13 | 844800805 14 | 883738126 15 | 916944341 16 | 925639503 17 | 925639503 18 | 760440385 19 | 1096774079 20 | 863136514 21 | 855571174 22 | 887389937 23 | 863830912 24 | 858993459 25 | 954437176 26 | 749296457 27 | 837552124 28 | 846132249 29 | 746172219 30 | 859681204 31 | 883738126 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-f2fs-2-16384k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 1198372571 3 | 838860800 4 | 932067555 5 | 932067555 6 | 986895058 7 | 932067555 8 | 932067555 9 | 986895058 10 | 986895058 11 | 932067555 12 | 986895058 13 | 932067555 14 | 1048576000 15 | 986895058 16 | 883011368 17 | 883011368 18 | 932067555 19 | 932067555 20 | 932067555 21 | 1048576000 22 | 986895058 23 | 986895058 24 | 986895058 25 | 932067555 26 | 986895058 27 | 986895058 28 | 986895058 29 | 932067555 30 | 1048576000 31 | 1048576000 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-f2fs-4-1048576k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 2173566445 3 | 831713264 4 | 941878792 5 | 1083493263 6 | 900035057 7 | 831069523 8 | 758828144 9 | 918513108 10 | 836247526 11 | 1080223162 12 | 784898994 13 | 783181490 14 | 914601212 15 | 888859125 16 | 1087884320 17 | 788356698 18 | 1049601000 19 | 902304053 20 | 970833475 21 | 891072053 22 | 996974766 23 | 746172219 24 | 795364314 25 | 857621265 26 | 930452187 27 | 844800805 28 | 838860800 29 | 869426578 30 | 900035057 31 | 850825534 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-f2fs-8-1048576k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 1586029282 3 | 886657162 4 | 993285683 5 | 868723158 6 | 804300991 7 | 834946986 8 | 979691445 9 | 776947774 10 | 936947490 11 | 1083493263 12 | 831713264 13 | 913045768 14 | 908411018 15 | 1015839000 16 | 1018730383 17 | 956989147 18 | 1052688062 19 | 882285804 20 | 985084242 21 | 945195267 22 | 1030462403 23 | 890333187 24 | 865223065 25 | 806112480 26 | 951898780 27 | 903062930 28 | 888123923 29 | 850825534 30 | 997901323 31 | 781471487 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-1-1048576k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 234134719 3 | 226767016 4 | 215308166 5 | 215567521 6 | 215351348 7 | 224397455 8 | 235935360 9 | 215740772 10 | 215481000 11 | 215654112 12 | 216001171 13 | 215870893 14 | 215006372 15 | 215049434 16 | 215914302 17 | 215524252 18 | 215437765 19 | 215610808 20 | 215049434 21 | 215827502 22 | 215870893 23 | 215914302 24 | 214705423 25 | 233016888 26 | 213679964 27 | 219175714 28 | 213637450 29 | 213382715 30 | 213637450 31 | 214276955 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-16-1048576k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 216567532 3 | 216829932 4 | 215870893 5 | 222583296 6 | 216436570 7 | 224914500 8 | 216088111 9 | 216786154 10 | 216436570 11 | 229677395 12 | 217268681 13 | 216742394 14 | 219130984 15 | 216523860 16 | 234339114 17 | 217532784 18 | 233118068 19 | 217488722 20 | 217620961 21 | 217797530 22 | 217312654 23 | 230466156 24 | 217709210 25 | 217930144 26 | 226814918 27 | 217400652 28 | 219938923 29 | 221618539 30 | 214877291 31 | 215006372 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-16-262144k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 215957728 3 | 216480206 4 | 224256855 5 | 215957728 6 | 215957728 7 | 232411650 8 | 217180789 9 | 217005219 10 | 216305766 11 | 215957728 12 | 235057316 13 | 217005219 14 | 215957728 15 | 216305766 16 | 216654928 17 | 216480206 18 | 235676431 19 | 216305766 20 | 213722496 21 | 218062921 22 | 216480206 23 | 215957728 24 | 215784128 25 | 217005219 26 | 215610808 27 | 234851667 28 | 217005219 29 | 216480206 30 | 216654928 31 | 215957728 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-2-1048576k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 229579179 3 | 224773251 4 | 222537165 5 | 221572807 6 | 223463438 7 | 225670833 8 | 217841717 9 | 228942819 10 | 223277567 11 | 231709500 12 | 220480867 13 | 232562664 14 | 222721805 15 | 216786154 16 | 236039090 17 | 236924497 18 | 224914500 19 | 226384529 20 | 222491053 21 | 218151528 22 | 217136870 23 | 219938923 24 | 218062921 25 | 217797530 26 | 217797530 27 | 220074159 28 | 216218651 29 | 236246825 30 | 236454927 31 | 224773251 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-32-1048576k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 216175120 3 | 213637450 4 | 232361355 5 | 234903046 6 | 234441446 7 | 234800311 8 | 233118068 9 | 233981657 10 | 234954447 11 | 225008764 12 | 217576864 13 | 215524252 14 | 214834298 15 | 224397455 16 | 232160394 17 | 216567532 18 | 217974385 19 | 232915796 20 | 228699004 21 | 227873901 22 | 219489334 23 | 233270003 24 | 230367265 25 | 228019074 26 | 234851667 27 | 233523667 28 | 233625288 29 | 227873901 30 | 216436570 31 | 217136870 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-32-262144k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 234236872 3 | 233625288 4 | 234236872 5 | 232814792 6 | 234032655 7 | 233219336 8 | 233828794 9 | 232411650 10 | 233828794 11 | 214748364 12 | 233625288 13 | 232814792 14 | 234032655 15 | 233219336 16 | 214234202 17 | 233219336 18 | 233828794 19 | 233219336 20 | 227487674 21 | 225576013 22 | 234032655 23 | 233219336 24 | 232814792 25 | 225008764 26 | 232411650 27 | 213552470 28 | 213722496 29 | 234032655 30 | 213382715 31 | 233219336 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-4-1048576k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 217400652 3 | 217930144 4 | 236246825 5 | 220254733 6 | 220435603 7 | 216088111 8 | 217356644 9 | 217841717 10 | 218417783 11 | 217488722 12 | 216611221 13 | 215914302 14 | 233777884 15 | 216873727 16 | 221390066 17 | 216175120 18 | 224585196 19 | 232461966 20 | 214963328 21 | 231759513 22 | 220390357 23 | 219444476 24 | 232865283 25 | 226146129 26 | 235883528 27 | 223324006 28 | 234543867 29 | 220798236 30 | 220074159 31 | 224538231 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-fluffle-8-1048576k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 216523860 3 | 235469698 4 | 234441446 5 | 216961370 6 | 216218651 7 | 217400652 8 | 217488722 9 | 218195859 10 | 221664290 11 | 221801657 12 | 222168802 13 | 226862840 14 | 220299922 15 | 216917540 16 | 216305766 17 | 216611221 18 | 216523860 19 | 216218651 20 | 235263326 21 | 226480030 22 | 220798236 23 | 214791323 24 | 216786154 25 | 215049434 26 | 216611221 27 | 216088111 28 | 216742394 29 | 216044632 30 | 215006372 31 | 216523860 32 | -------------------------------------------------------------------------------- /thesis/resources/bash/vfio.sh: -------------------------------------------------------------------------------- 1 | # Identify the ZNS device for passthrough 2 | sudo nvme list 3 | # Find the pci address of the target device 4 | ls -l /sys/block/nvme5n1/device/device 5 | # Unbind the nvme driver 6 | echo "0000:61:00.0" | sudo tee /sys/bus/pci/drivers/nvme/unbind 7 | # Enable vfio-pci 8 | sudo modprobe vfio-pci 9 | # Get the vendor and device id 10 | lspci -n -s 0000:61:00.0 11 | # Enable the vendor and device id for vfio-pci 12 | echo 1b96 2600 | sudo tee /sys/bus/pci/drivers/vfio-pci/new_id -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-write-2-flufflefs-1024k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 80659692 3 | 116508444 4 | 149796571 5 | 149796571 6 | 174762666 7 | 174762666 8 | 87381333 9 | 174762666 10 | 104857600 11 | 149796571 12 | 104857600 13 | 131072000 14 | 174762666 15 | 116508444 16 | 87381333 17 | 104857600 18 | 149796571 19 | 174762666 20 | 131072000 21 | 104857600 22 | 209715200 23 | 149796571 24 | 104857600 25 | 174762666 26 | 104857600 27 | 87381333 28 | 209715200 29 | 174762666 30 | 116508444 31 | 87381333 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-f2fs-16-1048576k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 2160446325 3 | 906111243 4 | 1106950334 5 | 1008208285 6 | 1093423446 7 | 953589541 8 | 936947490 9 | 942705727 10 | 1117317194 11 | 959554802 12 | 952743410 13 | 1078054040 14 | 917728054 15 | 885925597 16 | 1071598626 17 | 931259170 18 | 913822828 19 | 931259170 20 | 897027421 21 | 900790120 22 | 903062930 23 | 2204808673 24 | 915380924 25 | 908411018 26 | 903823084 27 | 881561431 28 | 954437176 29 | 893296026 30 | 987802965 31 | 920087252 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-f2fs-32-1048576k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 1558406130 3 | 800105681 4 | 887389937 5 | 906876540 6 | 1003497031 7 | 967334976 8 | 953589541 9 | 1129066060 10 | 915380924 11 | 985988819 12 | 800105681 13 | 984181323 14 | 846799545 15 | 963861601 16 | 2182402081 17 | 948535180 18 | 935315177 19 | 947697991 20 | 899281259 21 | 979691445 22 | 960413080 23 | 998829603 24 | 1039440294 25 | 1025541379 26 | 872960832 27 | 729940057 28 | 1449044296 29 | 907643131 30 | 941878792 31 | 936130622 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-write-1-flufflefs-1048576k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 109453804 3 | 108480685 4 | 107935446 5 | 104297408 6 | 121601565 7 | 115642630 8 | 115655086 9 | 163930049 10 | 115418878 11 | 126545883 12 | 114325151 13 | 116559034 14 | 116256152 15 | 114728264 16 | 115704937 17 | 117361659 18 | 115220712 19 | 124405262 20 | 121107807 21 | 116774532 22 | 104929329 23 | 115680006 24 | 124520680 25 | 196117228 26 | 202554579 27 | 116319122 28 | 104408967 29 | 114520245 30 | 196908458 31 | 178481021 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-write-1-flufflefs-16384k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 111107390 3 | 156796411 4 | 118149408 5 | 111848106 6 | 137518163 7 | 130055937 8 | 132104062 9 | 111848106 10 | 111107390 11 | 195083906 12 | 124275674 13 | 114130721 14 | 111107390 15 | 114130721 16 | 138654677 17 | 111848106 18 | 151146090 19 | 148470938 20 | 114130721 21 | 104206310 22 | 103563061 23 | 111848106 24 | 144631172 25 | 116508444 26 | 131072000 27 | 117323188 28 | 131072000 29 | 113359567 30 | 151146090 31 | 113359567 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-write-1-flufflefs-262144k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 193536738 3 | 112222180 4 | 199431988 5 | 196656011 6 | 151316491 7 | 106311071 8 | 108766392 9 | 115356878 10 | 116457898 11 | 113647525 12 | 116407396 13 | 107460150 14 | 142179796 15 | 112598765 16 | 111153397 17 | 111754977 18 | 200026420 19 | 113311716 20 | 111061421 21 | 108022316 22 | 189039053 23 | 198841078 24 | 106268984 25 | 108065803 26 | 119198692 27 | 104085093 28 | 107245487 29 | 104612414 30 | 113025455 31 | 104044750 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-write-1-flufflefs-4096k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 190650181 3 | 119837257 4 | 139810133 5 | 123361882 6 | 104857600 7 | 161319384 8 | 135300129 9 | 131072000 10 | 119837257 11 | 174762666 12 | 182361043 13 | 102300097 14 | 161319384 15 | 107546256 16 | 144631172 17 | 113359567 18 | 149796571 19 | 174762666 20 | 110376421 21 | 123361882 22 | 174762666 23 | 161319384 24 | 182361043 25 | 123361882 26 | 116508444 27 | 102300097 28 | 110376421 29 | 131072000 30 | 144631172 31 | 113359567 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-concurrent-write-1-flufflefs-65536k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 113359567 3 | 192841563 4 | 126620498 5 | 128807800 6 | 140689442 7 | 113743837 8 | 103244406 9 | 106861248 10 | 103244406 11 | 117528658 12 | 107202658 13 | 115904773 14 | 103883690 15 | 107892064 16 | 104206310 17 | 106017162 18 | 109297824 19 | 118149408 20 | 109834474 21 | 108240103 22 | 110376421 23 | 112788006 24 | 113936950 25 | 112788006 26 | 187980011 27 | 191193344 28 | 110558260 29 | 112222180 30 | 111662003 31 | 202135132 32 | -------------------------------------------------------------------------------- /measurements/fio/fio-seq-write-f2fs-32-1024k.csv: -------------------------------------------------------------------------------- 1 | bandwidth 2 | 1048576000 3 | 1048576000 4 | 1048576000 5 | 1048576000 6 | 1048576000 7 | 524288000 8 | 1048576000 9 | 1048576000 10 | 1048576000 11 | 1048576000 12 | 524288000 13 | 1048576000 14 | 80659692 15 | 1048576000 16 | 32768000 17 | 1048576000 18 | 1048576000 19 | 1048576000 20 | 524288000 21 | 1048576000 22 | 524288000 23 | 524288000 24 | 524288000 25 | 524288000 26 | 1048576000 27 | 1048576000 28 | 524288000 29 | 524288000 30 | 524288000 31 | 524288000 32 | --------------------------------------------------------------------------------