The branch main has been updated by kib:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=0b8643eaf6e787bac9c33c2ff03d5524cdfd7239

commit 0b8643eaf6e787bac9c33c2ff03d5524cdfd7239
Author:     Konstantin Belousov <k...@freebsd.org>
AuthorDate: 2022-01-25 21:03:23 +0000
Commit:     Konstantin Belousov <k...@freebsd.org>
CommitDate: 2022-02-02 09:39:58 +0000

    vmmeter(): Fix detection of the named swap objects
    
    Noted and reviewed by:  markj
    Tested by:      pho
    Sponsored by:   The FreeBSD Foundation
    MFC after:      1 week
    Differential revision:  https://reviews.freebsd.org/D33549
---
 sys/vm/vm_meter.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/vm/vm_meter.c b/sys/vm/vm_meter.c
index d6d2fe72df89..8f3245b1511f 100644
--- a/sys/vm/vm_meter.c
+++ b/sys/vm/vm_meter.c
@@ -243,7 +243,7 @@ vmtotal(SYSCTL_HANDLER_ARGS)
                        continue;
                }
                if (object->ref_count == 1 &&
-                   (object->flags & OBJ_ANON) == 0) {
+                   (object->flags & (OBJ_ANON | OBJ_SWAP)) == OBJ_SWAP) {
                        /*
                         * Also skip otherwise unreferenced swap
                         * objects backing tmpfs vnodes, and POSIX or

Reply via email to