We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e87eaf5 commit a1904b6Copy full SHA for a1904b6
Kernel/FileSystem/ProcFS.cpp
@@ -348,7 +348,7 @@ static OwnPtr<KBuffer> procfs$pid_vm(InodeIdentifier identifier)
348
auto* page = region.physical_page(i);
349
if (!page)
350
pagemap_builder.append('N');
351
- else if (page->is_shared_zero_page())
+ else if (page->is_shared_zero_page() || page->is_lazy_committed_page())
352
pagemap_builder.append('Z');
353
else
354
pagemap_builder.append('P');
0 commit comments