Set miinimal capacity for btrfs filesystems back to 256 MiB.

mkfs.btrfs can make smaller filesystems but other tools, e.g.
btrfs filesystem resize do not work well on small partitions.
This commit is contained in:
Andrius Štikonas 2016-05-17 22:02:21 +01:00
parent a610e24686
commit e5d72b7d11
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ FileSystem::SupportTool btrfs::supportToolName() const
qint64 btrfs::minCapacity() const
{
return 100 * Capacity::unitFactor(Capacity::Byte, Capacity::MiB);
return 256 * Capacity::unitFactor(Capacity::Byte, Capacity::MiB);
}
qint64 btrfs::maxCapacity() const