Don't panic when invalidating a fictitious page.
[dragonfly.git] / test / stress / fsstress / xfscompat.h
blobef5710a711e54e29d683519d0bcac7987c50aa98
1 /*
2 * $DragonFly: src/test/stress/fsstress/xfscompat.h,v 1.2 2007/05/12 21:46:49 swildner Exp $
3 */
4 #define MAXNAMELEN 1024
5 struct dioattr {
6 int d_miniosz, d_maxiosz, d_mem;
7 };
9 #ifndef __DragonFly__
10 #define MIN(a,b) ((a)<(b) ? (a):(b))
11 #define MAX(a,b) ((a)>(b) ? (a):(b))
12 #endif