From d9c91589f06d5c8c4999a0c5e1cb6322696dbe8b Mon Sep 17 00:00:00 2001 From: Bananymous Date: Tue, 26 Aug 2025 15:37:51 +0300 Subject: [PATCH] Kernel: Don't limit /tmp max size --- kernel/kernel/FS/VirtualFileSystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/kernel/FS/VirtualFileSystem.cpp b/kernel/kernel/FS/VirtualFileSystem.cpp index e4e8be9d..4a757147 100644 --- a/kernel/kernel/FS/VirtualFileSystem.cpp +++ b/kernel/kernel/FS/VirtualFileSystem.cpp @@ -174,7 +174,7 @@ namespace Kernel MUST(s_instance->mount(root_creds, &ProcFileSystem::get(), "/proc"_sv)); - auto tmpfs = MUST(TmpFileSystem::create(1024, 0777, 0, 0)); + auto tmpfs = MUST(TmpFileSystem::create(-1, 0777, 0, 0)); MUST(s_instance->mount(root_creds, tmpfs, "/tmp"_sv)); }