The branch main has been updated by markj:

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

commit da05ca9ab655272569f4af99c86d2aff97a0d2ab
Author:     Mark Johnston <ma...@freebsd.org>
AuthorDate: 2025-04-06 22:51:24 +0000
Commit:     Mark Johnston <ma...@freebsd.org>
CommitDate: 2025-04-07 11:59:57 +0000

    vm_object: Make a comment more clear
    
    Reviewed by:    alc, kib
    MFC after:      2 weeks
    Differential Revision:  https://reviews.freebsd.org/D49675
---
 sys/vm/vm_object.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/vm/vm_object.c b/sys/vm/vm_object.c
index c69fd0d1c161..1bf5bbe5abb2 100644
--- a/sys/vm/vm_object.c
+++ b/sys/vm/vm_object.c
@@ -1603,7 +1603,7 @@ retry:
                 * One other possibility is that the map entry is wired, in
                 * which case we must hang on to the page to avoid leaking it,
                 * as the map entry owns the wiring.  This case can arise if the
-                * backing pager is truncated.
+                * backing object is truncated by the pager.
                 */
                if (vm_page_none_valid(m) && entry->wired_count == 0) {
                        if (vm_page_iter_remove(&pages, m))

Reply via email to