custom message for vm_update
[minix3.git] / test / testcache.h
blobb423a5e78382aad57ef2a03932f6253cbd0cd990
2 /* Common definitions and declarations for the testcache code
3 * and the testcache clients.
4 */
6 #include <sys/types.h>
7 #include <machine/param.h>
8 #include <machine/vmparam.h>
10 #define MAXBLOCKS 1500000
12 #define MAXBLOCKSIZE (4*PAGE_SIZE)
14 int dowriteblock(int b, int blocksize, u32_t seed, char *block);
15 int readblock(int b, int blocksize, u32_t seed, char *block);
16 void testend(void);
17 int dotest(int blocksize, int nblocks, int iterations);
18 void cachequiet(int quiet);
19 void get_fd_offset(int b, int blocksize, u64_t *file_offset, int *fd);
20 void makefiles(int n);
22 #define OK_BLOCK_GONE -999
24 /* for file-oriented tests:
26 * we want to flexibly split tests over multiple files
27 * - for big working sets we might run over the 2GB MFS file limit
28 * - we might want to test the FS being able to handle lots of
29 * files / unusual metadata situations
31 #define MBPERFILE 2000
32 #define MB (1024*1024)
33 #define MAXFILES ((u64_t) MAXBLOCKS * MAXBLOCKSIZE / MB / MBPERFILE + 1)
35 extern int fds[MAXFILES], bigflag;