Minimal capacity of F2FS filesystems is 30MiB.

This commit is contained in:
Andrius Štikonas 2016-04-27 16:09:14 +01:00
parent 83787cbdfc
commit e5641bf7f5
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ FileSystem::SupportTool f2fs::supportToolName() const
qint64 f2fs::minCapacity() const
{
return 128 * Capacity::unitFactor(Capacity::Byte, Capacity::MiB); // FIXME
return 30 * Capacity::unitFactor(Capacity::Byte, Capacity::MiB);
}
qint64 f2fs::maxCapacity() const