Date: Wed, 30 Apr 2025 16:24:03 GMT From: Doug Moore <dougm@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: b8b94f5ab1bf - main - vm_object: drop unnecessary vm_object.h header Message-ID: <202504301624.53UGO3Dx083640@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by dougm: URL: https://cgit.FreeBSD.org/src/commit/?id=b8b94f5ab1bffdb23ae8146ba2bf1f1f2952fae5 commit b8b94f5ab1bffdb23ae8146ba2bf1f1f2952fae5 Author: Doug Moore <dougm@FreeBSD.org> AuthorDate: 2025-04-30 16:22:49 +0000 Commit: Doug Moore <dougm@FreeBSD.org> CommitDate: 2025-04-30 16:22:49 +0000 vm_object: drop unnecessary vm_object.h header The header vm_object.h is included in vm_phys.h and uma_core.h, where it is not necessary. Remove it. Reviewed by: kib, markj Differential Revision: https://reviews.freebsd.org/D50081 --- sys/vm/uma_core.c | 1 - sys/vm/vm_phys.c | 1 - 2 files changed, 2 deletions(-) diff --git a/sys/vm/uma_core.c b/sys/vm/uma_core.c index 35eede04171f..61b03ef24925 100644 --- a/sys/vm/uma_core.c +++ b/sys/vm/uma_core.c @@ -84,7 +84,6 @@ #include <vm/vm.h> #include <vm/vm_param.h> #include <vm/vm_domainset.h> -#include <vm/vm_object.h> #include <vm/vm_page.h> #include <vm/vm_pageout.h> #include <vm/vm_phys.h> diff --git a/sys/vm/vm_phys.c b/sys/vm/vm_phys.c index ca6bec8b8b9f..95bf6b61fe19 100644 --- a/sys/vm/vm_phys.c +++ b/sys/vm/vm_phys.c @@ -67,7 +67,6 @@ #include <vm/vm_extern.h> #include <vm/vm_param.h> #include <vm/vm_kern.h> -#include <vm/vm_object.h> #include <vm/vm_page.h> #include <vm/vm_phys.h> #include <vm/vm_pagequeue.h>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202504301624.53UGO3Dx083640>