Home | History | Annotate | only in /external/ltp/testcases/kernel/fs/fs-bench
Up to higher level directory
NameDateSize
.gitignore05-Oct-201755
boxmuler.c05-Oct-2017510
create-files.c05-Oct-20172.2K
fs-bench-test.sh05-Oct-2017857
fs-bench-test2.sh05-Oct-20171K
Makefile05-Oct-20171.3K
modaltr.sh05-Oct-20173.3K
random-access-del-create.c05-Oct-20172.6K
random-access.c05-Oct-20171.7K
random-del-create.c05-Oct-20172.6K
README05-Oct-2017844

README

      1 Programs for File system stress test.
      2 
      3 All of programs are distributed under GPL 2 license
      4 by Hironobu SUZUKI <hironobu (a] h2np.net>
      5 
      6 HOW TO TEST
      7 ------------
      8 
      9 1: Type "make"
     10 
     11 	# cd
     12 	# tar zxvf fs-bench.tar.gz
     13 	# cd fs-bench
     14 	# make
     15 
     16 2: 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 
     24 NOTE
     25 -----
     26 
     27 The size of files that are created for stress test is not fixed.  The
     28 file size are determined by probabilistic algorithm, box-muler
     29 algorithm.
     30 
     31 number
     32 of 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