Introduce globals: KvaStart, KvaEnd, and KvaSize. Used by the kernel
[dfdiff.git] / test / stress / fsstress / xfscompat.h
blobc52309084ef7adfd4f8f5c9eb7a8badc5aacfffb
1 /*
2 * $DragonFly: src/test/stress/fsstress/xfscompat.h,v 1.1 2004/05/07 17:51:02 dillon Exp $
3 */
4 #define MAXNAMELEN 1024
5 struct dioattr {
6 int d_miniosz, d_maxiosz, d_mem;
7 };
9 #ifndef __FreeBSD__
10 #define MIN(a,b) ((a)<(b) ? (a):(b))
11 #define MAX(a,b) ((a)>(b) ? (a):(b))
12 #endif