diff --git a/doc/perf-tests.asciidoc b/doc/Performance-Testing.asciidoc similarity index 76% rename from doc/perf-tests.asciidoc rename to doc/Performance-Testing.asciidoc index ff018a23..a9748f5a 100644 --- a/doc/perf-tests.asciidoc +++ b/doc/Performance-Testing.asciidoc @@ -8,12 +8,12 @@ This document discusses performance testing for WinFsp. The goal of this perform This performance testing shows that WinFsp has excellent performance in all tested scenarios. It outperforms NTFS in most scenarios (an unfair comparison as NTFS is a disk file system and WinFsp is tested with an in-memory file system). It also outperforms Dokany in all scenarios, often by an order of magnitude. .File Tests -ifdef::env-browser[chart::bar[data-uri="perf-tests/file_tests.csv",file="perf-tests/file_tests.png",opt="y-label=time"]] -ifndef::env-browser[image::perf-tests/file_tests.png[]] +ifdef::env-browser[chart::bar[data-uri="Performance-Testing/file_tests.csv",file="Performance-Testing/file_tests.png",opt="y-label=time"]] +ifndef::env-browser[image::Performance-Testing/file_tests.png[]] .Read/Write Tests -ifdef::env-browser[chart::bar[data-uri="perf-tests/rdwr_tests.csv",file="perf-tests/rdwr_tests.png",opt="y-label=time"]] -ifndef::env-browser[image::perf-tests/rdwr_tests.png[]] +ifdef::env-browser[chart::bar[data-uri="Performance-Testing/rdwr_tests.csv",file="Performance-Testing/rdwr_tests.png",opt="y-label=time"]] +ifndef::env-browser[image::Performance-Testing/rdwr_tests.png[]] == Fsbench @@ -104,8 +104,8 @@ These tests measure the performance of creating, opening, overwriting and listin This test measures the performance of CreateFileW(CREATE_NEW) / CloseHandle. WinFsp has the best performance here. Dokany follows and NTFS is last as it has to actually update its data structures on disk. -ifdef::env-browser[chart::line[data-uri="perf-tests/file_create_test.csv",file="perf-tests/file_create_test.png",opt="x-label=file count,y-label=time"]] -ifndef::env-browser[image::perf-tests/file_create_test.png[]] +ifdef::env-browser[chart::line[data-uri="Performance-Testing/file_create_test.csv",file="Performance-Testing/file_create_test.png",opt="x-label=file count,y-label=time"]] +ifndef::env-browser[image::Performance-Testing/file_create_test.png[]] ==== file_open_test @@ -113,29 +113,29 @@ This test measures the performance of CreateFileW(OPEN_EXISTING) / CloseHandle. WinFsp appears to have very uneven performance here. In particular notice that opening 1000 files is slower than opening 2000 files, which makes no sense! I suspect that the test observes an initial acquisition of resouces when the test first starts, which is not necessary when the test runs for 2000 files at a later time. This uneven performance should probably be investigated in the future. -ifdef::env-browser[chart::line[data-uri="perf-tests/file_open_test.csv",file="perf-tests/file_open_test.png",opt="x-label=file count,y-label=time"]] -ifndef::env-browser[image::perf-tests/file_open_test.png[]] +ifdef::env-browser[chart::line[data-uri="Performance-Testing/file_open_test.csv",file="Performance-Testing/file_open_test.png",opt="x-label=file count,y-label=time"]] +ifndef::env-browser[image::Performance-Testing/file_open_test.png[]] ==== file_overwrite_test This test measures the performance of CreateFileW(CREATE_ALWAYS) / CloseHandle. WinFsp is fastest, followed by NTFS and then Dokany. -ifdef::env-browser[chart::line[data-uri="perf-tests/file_overwrite_test.csv",file="perf-tests/file_overwrite_test.png",opt="x-label=file count,y-label=time"]] -ifndef::env-browser[image::perf-tests/file_overwrite_test.png[]] +ifdef::env-browser[chart::line[data-uri="Performance-Testing/file_overwrite_test.csv",file="Performance-Testing/file_overwrite_test.png",opt="x-label=file count,y-label=time"]] +ifndef::env-browser[image::Performance-Testing/file_overwrite_test.png[]] ==== file_list_test This test measures the performance of FindFirstFileW / FindNextFile / FindClose. NTFS wins this scenario, likely because it can satisfy the list operation from cache. WinFsp has overall good performance. Dokany appears to show slightly quadratic performance in this scenario. -ifdef::env-browser[chart::line[data-uri="perf-tests/file_list_test.csv",file="perf-tests/file_list_test.png",opt="x-label=file count,y-label=time"]] -ifndef::env-browser[image::perf-tests/file_list_test.png[]] +ifdef::env-browser[chart::line[data-uri="Performance-Testing/file_list_test.csv",file="Performance-Testing/file_list_test.png",opt="x-label=file count,y-label=time"]] +ifndef::env-browser[image::Performance-Testing/file_list_test.png[]] ==== file_delete_test This test measures the performance of DeleteFileW. WinFsp has the best performance, followed by Dokany and NTFS with very similar performance. -ifdef::env-browser[chart::line[data-uri="perf-tests/file_delete_test.csv",file="perf-tests/file_delete_test.png",opt="x-label=file count,y-label=time"]] -ifndef::env-browser[image::perf-tests/file_delete_test.png[]] +ifdef::env-browser[chart::line[data-uri="Performance-Testing/file_delete_test.csv",file="Performance-Testing/file_delete_test.png",opt="x-label=file count,y-label=time"]] +ifndef::env-browser[image::Performance-Testing/file_delete_test.png[]] === Read/Write Tests @@ -145,29 +145,29 @@ These tests measure the performance of cached, non-cached and memory-mapped I/O. This test measures the performance of cached WriteFile with 1 page writes. NTFS and WinFsp with an infinite FileInfoTimeout have the best performance, with a clear edge to NTFS (likely because of its use of FastIO, which WinFsp does not currently support). WinFsp with a FileInfoTimeout of 0 or 1 performance is next, because WinFsp does not use the NTOS Cache Manager in this scenario. Dokany performance is last. -ifdef::env-browser[chart::line[data-uri="perf-tests/rdwr_cc_write_page_test.csv",file="perf-tests/rdwr_cc_write_page_test.png",opt="x-label=iterations,y-label=time"]] -ifndef::env-browser[image::perf-tests/rdwr_cc_write_page_test.png[]] +ifdef::env-browser[chart::line[data-uri="Performance-Testing/rdwr_cc_write_page_test.csv",file="Performance-Testing/rdwr_cc_write_page_test.png",opt="x-label=iterations,y-label=time"]] +ifndef::env-browser[image::Performance-Testing/rdwr_cc_write_page_test.png[]] ==== rdwr_cc_read_page_test This test measures the performance of cached ReadFile with 1 page reads. The results here are very similar to the rdwr_cc_write_page_test case and similar comments apply. -ifdef::env-browser[chart::line[data-uri="perf-tests/rdwr_cc_read_page_test.csv",file="perf-tests/rdwr_cc_read_page_test.png",opt="x-label=iterations,y-label=time"]] -ifndef::env-browser[image::perf-tests/rdwr_cc_read_page_test.png[]] +ifdef::env-browser[chart::line[data-uri="Performance-Testing/rdwr_cc_read_page_test.csv",file="Performance-Testing/rdwr_cc_read_page_test.png",opt="x-label=iterations,y-label=time"]] +ifndef::env-browser[image::Performance-Testing/rdwr_cc_read_page_test.png[]] ==== rdwr_nc_write_test This test measures the performance of non-cached WriteFile with 1 page writes. WinFsp has the best performance, followed by Dokany. NTFS shows bad performance, which of course make sense as we are asking it to write all data to the disk. -ifdef::env-browser[chart::line[data-uri="perf-tests/rdwr_nc_write_page_test.csv",file="perf-tests/rdwr_nc_write_page_test.png",opt="x-label=iterations,y-label=time"]] -ifndef::env-browser[image::perf-tests/rdwr_nc_write_page_test.png[]] +ifdef::env-browser[chart::line[data-uri="Performance-Testing/rdwr_nc_write_page_test.csv",file="Performance-Testing/rdwr_nc_write_page_test.png",opt="x-label=iterations,y-label=time"]] +ifndef::env-browser[image::Performance-Testing/rdwr_nc_write_page_test.png[]] ==== rdwr_nc_read_page_test This test measures the performance of non-cached ReadFile with 1 page reads. The results here are very similar to the rdwr_nc_write_page_test case and similar comments apply. -ifdef::env-browser[chart::line[data-uri="perf-tests/rdwr_nc_read_page_test.csv",file="perf-tests/rdwr_nc_read_page_test.png",opt="x-label=iterations,y-label=time"]] -ifndef::env-browser[image::perf-tests/rdwr_nc_read_page_test.png[]] +ifdef::env-browser[chart::line[data-uri="Performance-Testing/rdwr_nc_read_page_test.csv",file="Performance-Testing/rdwr_nc_read_page_test.png",opt="x-label=iterations,y-label=time"]] +ifndef::env-browser[image::Performance-Testing/rdwr_nc_read_page_test.png[]] ==== mmap_write_test @@ -181,8 +181,8 @@ mmap_write_test........................ KO ASSERT(0 != Mapping) failed at fsbench.c:226:mmap_dotest ---- -ifdef::env-browser[chart::line[data-uri="perf-tests/mmap_write_test.csv",file="perf-tests/mmap_write_test.png",opt="x-label=iterations,y-label=time"]] -ifndef::env-browser[image::perf-tests/mmap_write_test.png[]] +ifdef::env-browser[chart::line[data-uri="Performance-Testing/mmap_write_test.csv",file="Performance-Testing/mmap_write_test.png",opt="x-label=iterations,y-label=time"]] +ifndef::env-browser[image::Performance-Testing/mmap_write_test.png[]] ==== mmap_read_test @@ -190,5 +190,5 @@ This test measures the performance of memory mapped reads. Again NTFS and WinFsp There are no results for Dokany as it faces the same issue as with mmap_write_test. -ifdef::env-browser[chart::line[data-uri="perf-tests/mmap_read_test.csv",file="perf-tests/mmap_read_test.png",opt="x-label=iterations,y-label=time"]] -ifndef::env-browser[image::perf-tests/mmap_read_test.png[]] +ifdef::env-browser[chart::line[data-uri="Performance-Testing/mmap_read_test.csv",file="Performance-Testing/mmap_read_test.png",opt="x-label=iterations,y-label=time"]] +ifndef::env-browser[image::Performance-Testing/mmap_read_test.png[]] diff --git a/doc/perf-tests/ORIG/dokany-1.csv b/doc/Performance-Testing/ORIG/dokany-1.csv similarity index 100% rename from doc/perf-tests/ORIG/dokany-1.csv rename to doc/Performance-Testing/ORIG/dokany-1.csv diff --git a/doc/perf-tests/ORIG/dokany-2.csv b/doc/Performance-Testing/ORIG/dokany-2.csv similarity index 100% rename from doc/perf-tests/ORIG/dokany-2.csv rename to doc/Performance-Testing/ORIG/dokany-2.csv diff --git a/doc/perf-tests/ORIG/ntfs-1.csv b/doc/Performance-Testing/ORIG/ntfs-1.csv similarity index 100% rename from doc/perf-tests/ORIG/ntfs-1.csv rename to doc/Performance-Testing/ORIG/ntfs-1.csv diff --git a/doc/perf-tests/ORIG/ntfs-2.csv b/doc/Performance-Testing/ORIG/ntfs-2.csv similarity index 100% rename from doc/perf-tests/ORIG/ntfs-2.csv rename to doc/Performance-Testing/ORIG/ntfs-2.csv diff --git a/doc/perf-tests/ORIG/winfsp-t0-1.csv b/doc/Performance-Testing/ORIG/winfsp-t0-1.csv similarity index 100% rename from doc/perf-tests/ORIG/winfsp-t0-1.csv rename to doc/Performance-Testing/ORIG/winfsp-t0-1.csv diff --git a/doc/perf-tests/ORIG/winfsp-t0-2.csv b/doc/Performance-Testing/ORIG/winfsp-t0-2.csv similarity index 100% rename from doc/perf-tests/ORIG/winfsp-t0-2.csv rename to doc/Performance-Testing/ORIG/winfsp-t0-2.csv diff --git a/doc/perf-tests/ORIG/winfsp-t1-1.csv b/doc/Performance-Testing/ORIG/winfsp-t1-1.csv similarity index 100% rename from doc/perf-tests/ORIG/winfsp-t1-1.csv rename to doc/Performance-Testing/ORIG/winfsp-t1-1.csv diff --git a/doc/perf-tests/ORIG/winfsp-t1-2.csv b/doc/Performance-Testing/ORIG/winfsp-t1-2.csv similarity index 100% rename from doc/perf-tests/ORIG/winfsp-t1-2.csv rename to doc/Performance-Testing/ORIG/winfsp-t1-2.csv diff --git a/doc/perf-tests/ORIG/winfsp-tinf-1.csv b/doc/Performance-Testing/ORIG/winfsp-tinf-1.csv similarity index 100% rename from doc/perf-tests/ORIG/winfsp-tinf-1.csv rename to doc/Performance-Testing/ORIG/winfsp-tinf-1.csv diff --git a/doc/perf-tests/ORIG/winfsp-tinf-2.csv b/doc/Performance-Testing/ORIG/winfsp-tinf-2.csv similarity index 100% rename from doc/perf-tests/ORIG/winfsp-tinf-2.csv rename to doc/Performance-Testing/ORIG/winfsp-tinf-2.csv diff --git a/doc/perf-tests/file_create_test.csv b/doc/Performance-Testing/file_create_test.csv similarity index 100% rename from doc/perf-tests/file_create_test.csv rename to doc/Performance-Testing/file_create_test.csv diff --git a/doc/Performance-Testing/file_create_test.png b/doc/Performance-Testing/file_create_test.png new file mode 100644 index 00000000..061e50f5 Binary files /dev/null and b/doc/Performance-Testing/file_create_test.png differ diff --git a/doc/perf-tests/file_delete_test.csv b/doc/Performance-Testing/file_delete_test.csv similarity index 100% rename from doc/perf-tests/file_delete_test.csv rename to doc/Performance-Testing/file_delete_test.csv diff --git a/doc/Performance-Testing/file_delete_test.png b/doc/Performance-Testing/file_delete_test.png new file mode 100644 index 00000000..ea4704ae Binary files /dev/null and b/doc/Performance-Testing/file_delete_test.png differ diff --git a/doc/perf-tests/file_list_test.csv b/doc/Performance-Testing/file_list_test.csv similarity index 100% rename from doc/perf-tests/file_list_test.csv rename to doc/Performance-Testing/file_list_test.csv diff --git a/doc/Performance-Testing/file_list_test.png b/doc/Performance-Testing/file_list_test.png new file mode 100644 index 00000000..6ebd9e5b Binary files /dev/null and b/doc/Performance-Testing/file_list_test.png differ diff --git a/doc/perf-tests/file_open_test.csv b/doc/Performance-Testing/file_open_test.csv similarity index 100% rename from doc/perf-tests/file_open_test.csv rename to doc/Performance-Testing/file_open_test.csv diff --git a/doc/Performance-Testing/file_open_test.png b/doc/Performance-Testing/file_open_test.png new file mode 100644 index 00000000..c4508093 Binary files /dev/null and b/doc/Performance-Testing/file_open_test.png differ diff --git a/doc/perf-tests/file_overwrite_test.csv b/doc/Performance-Testing/file_overwrite_test.csv similarity index 100% rename from doc/perf-tests/file_overwrite_test.csv rename to doc/Performance-Testing/file_overwrite_test.csv diff --git a/doc/Performance-Testing/file_overwrite_test.png b/doc/Performance-Testing/file_overwrite_test.png new file mode 100644 index 00000000..714c0307 Binary files /dev/null and b/doc/Performance-Testing/file_overwrite_test.png differ diff --git a/doc/perf-tests/file_tests.csv b/doc/Performance-Testing/file_tests.csv similarity index 100% rename from doc/perf-tests/file_tests.csv rename to doc/Performance-Testing/file_tests.csv diff --git a/doc/Performance-Testing/file_tests.png b/doc/Performance-Testing/file_tests.png new file mode 100644 index 00000000..5157855f Binary files /dev/null and b/doc/Performance-Testing/file_tests.png differ diff --git a/doc/perf-tests/mmap_read_test.csv b/doc/Performance-Testing/mmap_read_test.csv similarity index 100% rename from doc/perf-tests/mmap_read_test.csv rename to doc/Performance-Testing/mmap_read_test.csv diff --git a/doc/Performance-Testing/mmap_read_test.png b/doc/Performance-Testing/mmap_read_test.png new file mode 100644 index 00000000..f3d87626 Binary files /dev/null and b/doc/Performance-Testing/mmap_read_test.png differ diff --git a/doc/perf-tests/mmap_write_test.csv b/doc/Performance-Testing/mmap_write_test.csv similarity index 100% rename from doc/perf-tests/mmap_write_test.csv rename to doc/Performance-Testing/mmap_write_test.csv diff --git a/doc/Performance-Testing/mmap_write_test.png b/doc/Performance-Testing/mmap_write_test.png new file mode 100644 index 00000000..2a71e7f6 Binary files /dev/null and b/doc/Performance-Testing/mmap_write_test.png differ diff --git a/doc/perf-tests/munge.py b/doc/Performance-Testing/munge.py similarity index 100% rename from doc/perf-tests/munge.py rename to doc/Performance-Testing/munge.py diff --git a/doc/perf-tests/rdwr_cc_read_page_test.csv b/doc/Performance-Testing/rdwr_cc_read_page_test.csv similarity index 100% rename from doc/perf-tests/rdwr_cc_read_page_test.csv rename to doc/Performance-Testing/rdwr_cc_read_page_test.csv diff --git a/doc/Performance-Testing/rdwr_cc_read_page_test.png b/doc/Performance-Testing/rdwr_cc_read_page_test.png new file mode 100644 index 00000000..01191375 Binary files /dev/null and b/doc/Performance-Testing/rdwr_cc_read_page_test.png differ diff --git a/doc/perf-tests/rdwr_cc_write_page_test.csv b/doc/Performance-Testing/rdwr_cc_write_page_test.csv similarity index 100% rename from doc/perf-tests/rdwr_cc_write_page_test.csv rename to doc/Performance-Testing/rdwr_cc_write_page_test.csv diff --git a/doc/Performance-Testing/rdwr_cc_write_page_test.png b/doc/Performance-Testing/rdwr_cc_write_page_test.png new file mode 100644 index 00000000..abcde705 Binary files /dev/null and b/doc/Performance-Testing/rdwr_cc_write_page_test.png differ diff --git a/doc/perf-tests/rdwr_nc_read_page_test.csv b/doc/Performance-Testing/rdwr_nc_read_page_test.csv similarity index 100% rename from doc/perf-tests/rdwr_nc_read_page_test.csv rename to doc/Performance-Testing/rdwr_nc_read_page_test.csv diff --git a/doc/Performance-Testing/rdwr_nc_read_page_test.png b/doc/Performance-Testing/rdwr_nc_read_page_test.png new file mode 100644 index 00000000..58b50132 Binary files /dev/null and b/doc/Performance-Testing/rdwr_nc_read_page_test.png differ diff --git a/doc/perf-tests/rdwr_nc_write_page_test.csv b/doc/Performance-Testing/rdwr_nc_write_page_test.csv similarity index 100% rename from doc/perf-tests/rdwr_nc_write_page_test.csv rename to doc/Performance-Testing/rdwr_nc_write_page_test.csv diff --git a/doc/Performance-Testing/rdwr_nc_write_page_test.png b/doc/Performance-Testing/rdwr_nc_write_page_test.png new file mode 100644 index 00000000..f539345b Binary files /dev/null and b/doc/Performance-Testing/rdwr_nc_write_page_test.png differ diff --git a/doc/perf-tests/rdwr_tests.csv b/doc/Performance-Testing/rdwr_tests.csv similarity index 100% rename from doc/perf-tests/rdwr_tests.csv rename to doc/Performance-Testing/rdwr_tests.csv diff --git a/doc/Performance-Testing/rdwr_tests.png b/doc/Performance-Testing/rdwr_tests.png new file mode 100644 index 00000000..9c972441 Binary files /dev/null and b/doc/Performance-Testing/rdwr_tests.png differ diff --git a/doc/service-architecture.asciidoc b/doc/WinFsp-Service-Architecture.asciidoc similarity index 100% rename from doc/service-architecture.asciidoc rename to doc/WinFsp-Service-Architecture.asciidoc diff --git a/doc/winfsp-ipc.asciidoc b/doc/WinFsp-as-an-IPC-Mechanism.asciidoc similarity index 94% rename from doc/winfsp-ipc.asciidoc rename to doc/WinFsp-as-an-IPC-Mechanism.asciidoc index fe86ea4c..8883ac0d 100644 --- a/doc/winfsp-ipc.asciidoc +++ b/doc/WinFsp-as-an-IPC-Mechanism.asciidoc @@ -13,7 +13,7 @@ In the following we will also use the notation [U] to denote user mode processin Consider then what happens when an OP issues a synchronous (non-overlapped), non-cached (non-buffered) WriteFile call. ifdef::env-browser[] -[uml,file="winfsp-ipc/synchronous.png"] +[uml,file="WinFsp-as-an-IPC-Mechanism/synchronous.png"] -- hide footbox @@ -46,12 +46,12 @@ note over FSK, FSU #Salmon end note -- endif::env-browser[] -ifndef::env-browser[image::winfsp-ipc/synchronous.png[]] +ifndef::env-browser[image::WinFsp-as-an-IPC-Mechanism/synchronous.png[]] Let us now consider what happens when an OP issues an asynchronous (overlapped), non-cached (non-buffered) WriteFile call. This scenario does not show how the OP receives the WriteFile result. ifdef::env-browser[] -[uml,file="winfsp-ipc/asynchronous.png"] +[uml,file="WinFsp-as-an-IPC-Mechanism/asynchronous.png"] -- hide footbox @@ -90,7 +90,7 @@ note over FSK, FSU #Salmon end note -- endif::env-browser[] -ifndef::env-browser[image::winfsp-ipc/asynchronous.png[]] +ifndef::env-browser[image::WinFsp-as-an-IPC-Mechanism/asynchronous.png[]] It should be noted that from the WinFsp perspective both cases look similar. WinFsp processing occurs: @@ -106,7 +106,7 @@ The TRANSACT calls are DeviceIoControl requests that the FS issues to WinFsp. A Let us now consider what may happen with two simultaneous API Requests from two different processes. For example, two WriteFile requests for different files. ifdef::env-browser[] -[uml,file="winfsp-ipc/multiple.png"] +[uml,file="WinFsp-as-an-IPC-Mechanism/multiple.png"] -- hide footbox @@ -162,7 +162,7 @@ note over FSK, FSU #Salmon end note -- endif::env-browser[] -ifndef::env-browser[image::winfsp-ipc/multiple.png[]] +ifndef::env-browser[image::WinFsp-as-an-IPC-Mechanism/multiple.png[]] Notice that it is possible for the FS to process multiple file system requests without context switching. diff --git a/doc/winfsp-ipc/asynchronous.png b/doc/WinFsp-as-an-IPC-Mechanism/asynchronous.png similarity index 100% rename from doc/winfsp-ipc/asynchronous.png rename to doc/WinFsp-as-an-IPC-Mechanism/asynchronous.png diff --git a/doc/winfsp-ipc/multiple.png b/doc/WinFsp-as-an-IPC-Mechanism/multiple.png similarity index 100% rename from doc/winfsp-ipc/multiple.png rename to doc/WinFsp-as-an-IPC-Mechanism/multiple.png diff --git a/doc/winfsp-ipc/synchronous.png b/doc/WinFsp-as-an-IPC-Mechanism/synchronous.png similarity index 100% rename from doc/winfsp-ipc/synchronous.png rename to doc/WinFsp-as-an-IPC-Mechanism/synchronous.png diff --git a/doc/perf-tests/file_create_test.png b/doc/perf-tests/file_create_test.png deleted file mode 100644 index e5a10c03..00000000 Binary files a/doc/perf-tests/file_create_test.png and /dev/null differ diff --git a/doc/perf-tests/file_delete_test.png b/doc/perf-tests/file_delete_test.png deleted file mode 100644 index fd7fd22a..00000000 Binary files a/doc/perf-tests/file_delete_test.png and /dev/null differ diff --git a/doc/perf-tests/file_list_test.png b/doc/perf-tests/file_list_test.png deleted file mode 100644 index 41dde628..00000000 Binary files a/doc/perf-tests/file_list_test.png and /dev/null differ diff --git a/doc/perf-tests/file_open_test.png b/doc/perf-tests/file_open_test.png deleted file mode 100644 index 3093ccbb..00000000 Binary files a/doc/perf-tests/file_open_test.png and /dev/null differ diff --git a/doc/perf-tests/file_overwrite_test.png b/doc/perf-tests/file_overwrite_test.png deleted file mode 100644 index fc64f048..00000000 Binary files a/doc/perf-tests/file_overwrite_test.png and /dev/null differ diff --git a/doc/perf-tests/file_tests.png b/doc/perf-tests/file_tests.png deleted file mode 100644 index 0a49d3a3..00000000 Binary files a/doc/perf-tests/file_tests.png and /dev/null differ diff --git a/doc/perf-tests/mmap_read_test.png b/doc/perf-tests/mmap_read_test.png deleted file mode 100644 index d43a18bd..00000000 Binary files a/doc/perf-tests/mmap_read_test.png and /dev/null differ diff --git a/doc/perf-tests/mmap_write_test.png b/doc/perf-tests/mmap_write_test.png deleted file mode 100644 index 8b310c21..00000000 Binary files a/doc/perf-tests/mmap_write_test.png and /dev/null differ diff --git a/doc/perf-tests/rdwr_cc_read_page_test.png b/doc/perf-tests/rdwr_cc_read_page_test.png deleted file mode 100644 index af256c7b..00000000 Binary files a/doc/perf-tests/rdwr_cc_read_page_test.png and /dev/null differ diff --git a/doc/perf-tests/rdwr_cc_write_page_test.png b/doc/perf-tests/rdwr_cc_write_page_test.png deleted file mode 100644 index 9e27d6c8..00000000 Binary files a/doc/perf-tests/rdwr_cc_write_page_test.png and /dev/null differ diff --git a/doc/perf-tests/rdwr_nc_read_page_test.png b/doc/perf-tests/rdwr_nc_read_page_test.png deleted file mode 100644 index 52709eed..00000000 Binary files a/doc/perf-tests/rdwr_nc_read_page_test.png and /dev/null differ diff --git a/doc/perf-tests/rdwr_nc_write_page_test.png b/doc/perf-tests/rdwr_nc_write_page_test.png deleted file mode 100644 index 5726dfe0..00000000 Binary files a/doc/perf-tests/rdwr_nc_write_page_test.png and /dev/null differ diff --git a/doc/perf-tests/rdwr_tests.png b/doc/perf-tests/rdwr_tests.png deleted file mode 100644 index 417e630b..00000000 Binary files a/doc/perf-tests/rdwr_tests.png and /dev/null differ