From 7f22f0249052e08b8fd2f66c86f51f6dbebf64d1 Mon Sep 17 00:00:00 2001 From: Vladimir Menshakov Date: Fri, 24 Apr 2015 15:47:48 +0300 Subject: [PATCH] increased fragment/blocksize to 1Mb --- mtp/fuse.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mtp/fuse.cpp b/mtp/fuse.cpp index bd5570e0..f7044534 100644 --- a/mtp/fuse.cpp +++ b/mtp/fuse.cpp @@ -414,7 +414,7 @@ namespace capacity += si.MaxCapacity; } } - stat->f_frsize = stat->f_bsize = 1024; + stat->f_frsize = stat->f_bsize = 1024 * 1024; stat->f_blocks = capacity / stat->f_frsize; stat->f_bfree = stat->f_bavail = freeSpace / stat->f_frsize; if (!_editObjectSupported)