Home | History | Annotate | only in /external/ltp/testcases/kernel/fs/fs-bench
Up to higher level directory
NameDateSize
boxmuler.c21-Aug-2018510
create-files.c21-Aug-20182.2K
fs-bench-test.sh21-Aug-2018857
fs-bench-test2.sh21-Aug-20181K
Makefile21-Aug-20181.3K
modaltr.sh21-Aug-20183.3K
random-access-del-create.c21-Aug-20182.6K
random-access.c21-Aug-20181.7K
random-del-create.c21-Aug-20182.6K
README21-Aug-2018844

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