Kernel: Don't limit /tmp max size

This commit is contained in:
Bananymous 2025-08-26 15:37:51 +03:00
parent 9854691265
commit d9c91589f0
1 changed files with 1 additions and 1 deletions

View File

@ -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));
}