• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

.gitignoreD23-Nov-202355 43

MakefileD23-Nov-20231.3 KiB4211

READMED23-Nov-2023844 4633

boxmuler.cD23-Nov-2023510 2926

create-files.cD23-Nov-20232.2 KiB120106

fs-bench-test.shD23-Nov-2023857 5140

fs-bench-test2.shD23-Nov-20231 KiB6447

modaltr.shD23-Nov-20233.3 KiB12583

random-access-del-create.cD23-Nov-20232.6 KiB139115

random-access.cD23-Nov-20231.7 KiB9378

random-del-create.cD23-Nov-20232.6 KiB135114

README

1Programs for File system stress test.
2
3All of programs are distributed under GPL 2 license
4by Hironobu SUZUKI <hironobu@h2np.net>
5
6HOW TO TEST
7------------
8
91: Type "make"
10
11	# cd
12	# tar zxvf fs-bench.tar.gz
13	# cd fs-bench
14	# make
15
162: Change directory to terget file system and do-it!
17	(I always use one-HDD/one-partition for fs stress test.)
18
19	# mount -t jfs /dev/hdc1 /jfs
20	# cd /jfs
21	# ~/fs-bench/test.sh 2>&1 | tee ~/fs-bench/jfs-test
22
23
24NOTE
25-----
26
27The size of files that are created for stress test is not fixed.  The
28file size are determined by probabilistic algorithm, box-muler
29algorithm.
30
31number
32of files
33  ^
34  |       ****
35  |      *    *
36  |     *      *
37  |    *        *
38  |  **          **
39  |**              **
40  +-------------------> file size
41  min               max
42
43
44------
45$Id: README,v 1.1 2004/11/18 20:23:05 robbiew Exp $
46