Skip to content

Commit

Permalink
increased fragment/blocksize to 1Mb
Browse files Browse the repository at this point in the history
  • Loading branch information
whoozle committed Apr 24, 2015
1 parent d4aa44e commit 7f22f02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mtp/fuse.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 7f22f02

Please sign in to comment.