From 06ebfde3dee8e5028c7e65f19dac3bfbf8fbbbc4 Mon Sep 17 00:00:00 2001 From: JohnMcPMS Date: Tue, 12 May 2026 16:22:36 -0700 Subject: [PATCH] Change to 32GB default storage space in WSLC SDK (#40516) * Change to 32GB default storage space --- src/windows/WslcSDK/Defaults.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/windows/WslcSDK/Defaults.h b/src/windows/WslcSDK/Defaults.h index 8e61e597f..a6dd425f4 100644 --- a/src/windows/WslcSDK/Defaults.h +++ b/src/windows/WslcSDK/Defaults.h @@ -18,5 +18,5 @@ constexpr uint32_t s_DefaultCPUCount = 2; constexpr uint32_t s_DefaultMemoryMB = 2000; // Maximum value per use with HVSOCKET_CONNECT_TIMEOUT_MAX constexpr ULONG s_DefaultBootTimeout = 300000; -// Default to 1 GB -constexpr UINT64 s_DefaultStorageSize = 1000 * 1000 * 1000; +// Default to 32 GB +constexpr UINT64 s_DefaultStorageSize = 32ULL * 1024 * 1024 * 1024;