/* * Copyright (c) 2018-2020, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #include #include #include #include #include #include namespace Kernel { KResultOr Process::sys$purge(int mode) { VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this) REQUIRE_NO_PROMISES; if (!is_superuser()) return EPERM; int purged_page_count = 0; if (mode & PURGE_ALL_VOLATILE) { NonnullRefPtrVector vmobjects; { KResult result(KSuccess); MM.for_each_vmobject([&](auto& vmobject) { if (vmobject.is_anonymous()) { // In the event that the append fails, only attempt to continue // the purge if we have already appended something successfully. if (!vmobjects.try_append(vmobject) && vmobjects.is_empty()) { result = ENOMEM; return IterationDecision::Break; } } return IterationDecision::Continue; }); if (result.is_error()) return result.error(); } for (auto& vmobject : vmobjects) { purged_page_count += vmobject.purge(); } } if (mode & PURGE_ALL_CLEAN_INODE) { NonnullRefPtrVector vmobjects; { KResult result(KSuccess); MM.for_each_vmobject([&](auto& vmobject) { if (vmobject.is_inode()) { // In the event that the append fails, only attempt to continue // the purge if we have already appended something successfully. if (!vmobjects.try_append(static_cast(vmobject)) && vmobjects.is_empty()) { result = ENOMEM; return IterationDecision::Break; } } return IterationDecision::Continue; }); if (result.is_error()) return result.error(); } for (auto& vmobject : vmobjects) { purged_page_count += vmobject.release_all_clean_pages(); } } return purged_page_count; } }