From: Jens Axboe Date: Fri, 15 Dec 2006 12:11:24 +0000 (+0100) Subject: [PATCH] Make unlink and overwrite the default X-Git-Tag: fio-1.10~12 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=178d11f29ffc50c46d907129ee81c3b41f48c926;p=fio.git [PATCH] Make unlink and overwrite the default Signed-off-by: Jens Axboe --- diff --git a/init.c b/init.c index 346c465a..ae960302 100644 --- a/init.c +++ b/init.c @@ -29,7 +29,7 @@ #define DEF_IO_ENGINE_NAME "sync" #define DEF_SEQUENTIAL (1) #define DEF_RAND_REPEAT (1) -#define DEF_OVERWRITE (1) +#define DEF_OVERWRITE (0) #define DEF_INVALIDATE (1) #define DEF_SYNCIO (0) #define DEF_RANDSEED (0xb1899bedUL) @@ -48,7 +48,7 @@ #define DEF_RWMIX_READ (50) #define DEF_NICE (0) #define DEF_NR_FILES (1) -#define DEF_UNLINK (0) +#define DEF_UNLINK (1) #define DEF_WRITE_BW_LOG (0) #define DEF_WRITE_LAT_LOG (0) #define DEF_NO_RAND_MAP (0)