VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Core
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2020-08-26 08:28:37 +0200
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2020-08-26 08:31:10 +0200
commit1fb59b58ee9ec9215880dfa218d709fae02f6a53 (patch)
tree4c36c513909f7e1d306fd28a21f7e8cadd47b065 /src/Core
parent0ab412a8de6a1557bd0f22d91a638e30b4f20ba8 (diff)
downloadVeraCrypt-1fb59b58ee9ec9215880dfa218d709fae02f6a53.tar.gz
VeraCrypt-1fb59b58ee9ec9215880dfa218d709fae02f6a53.zip
Linux: Reduce minimal size requirement for BTRFS support to 16 MiB by using mixed mode for volumes whose size is less than 109 MiB
Diffstat (limited to 'src/Core')
-rw-r--r--src/Core/VolumeCreator.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Core/VolumeCreator.h b/src/Core/VolumeCreator.h
index fc40f34d..3e051bc7 100644
--- a/src/Core/VolumeCreator.h
+++ b/src/Core/VolumeCreator.h
@@ -21,7 +21,8 @@
#include <errno.h>
#endif
-#define VC_MIN_BTRFS_VOLUME_SIZE 114294784ULL
+#define VC_MIN_LARGE_BTRFS_VOLUME_SIZE 114294784ULL
+#define VC_MIN_SMALL_BTRFS_VOLUME_SIZE 16777216ULL
namespace VeraCrypt
{