From: Jens Axboe Date: Tue, 18 Oct 2005 13:50:27 +0000 (+0200) Subject: [PATCH] drivescan: default to 64k block size X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=f61c31f715b59396e21f2a57aaa38cacee95de2d;p=disktools.git [PATCH] drivescan: default to 64k block size --- diff --git a/drivescan.c b/drivescan.c index 2b55da7..3d10df7 100644 --- a/drivescan.c +++ b/drivescan.c @@ -87,7 +87,7 @@ typedef unsigned int u32; #define BLKGETSIZE64 _IOR(0x12,114,size_t) #endif -#define BS (4096) +#define BS (65536) #define MASK (4095) #define ALIGN(buf) (((unsigned long) (buf) + MASK) & ~(MASK))