@samitouri / QOSAMI-WSL / commits / 06ebfde3

Change to 32GB default storage space in WSLC SDK (#40516)

* Change to 32GB default storage space

JohnMcPMS committed May 12, 2026 at 16:22 UTC 06ebfde3dee8e5028c7e65f19dac3bfbf8fbbbc4
1 file changed +2 -2
src/windows/WslcSDK/Defaults.h
+2 -2
@@ -18,5 +18,5 @@ constexpr uint32_t s_DefaultCPUCount = 2;
18 constexpr uint32_t s_DefaultMemoryMB = 2000;
19 // Maximum value per use with HVSOCKET_CONNECT_TIMEOUT_MAX
20 constexpr ULONG s_DefaultBootTimeout = 300000;
21 -// Default to 1 GB
22 -constexpr UINT64 s_DefaultStorageSize = 1000 * 1000 * 1000;
21 +// Default to 32 GB
22 +constexpr UINT64 s_DefaultStorageSize = 32ULL * 1024 * 1024 * 1024;