Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 3 Jul 2020 05:21:06 +0000 (UTC)
From:      Rick Macklem <rmacklem@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r362906 - head/sys/fs/nfs
Message-ID:  <202007030521.0635L67u090311@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rmacklem
Date: Fri Jul  3 05:21:05 2020
New Revision: 362906
URL: https://svnweb.freebsd.org/changeset/base/362906

Log:
  Fix build breakage caused by r362903. Only pmap.h is needed now, but
  vm_page.h and vm_pageout.h is needed later, so put them in now.
  
  Pointy hat goes on me.

Modified:
  head/sys/fs/nfs/nfsport.h

Modified: head/sys/fs/nfs/nfsport.h
==============================================================================
--- head/sys/fs/nfs/nfsport.h	Fri Jul  3 04:44:23 2020	(r362905)
+++ head/sys/fs/nfs/nfsport.h	Fri Jul  3 05:21:05 2020	(r362906)
@@ -109,8 +109,11 @@
 #include <ufs/ufs/ufsmount.h>
 #include <vm/uma.h>
 #include <vm/vm.h>
+#include <vm/pmap.h>
 #include <vm/vm_extern.h>
 #include <vm/vm_object.h>
+#include <vm/vm_page.h>
+#include <vm/vm_pageout.h>
 #include <vm/vm_param.h>
 #include <nfs/nfssvc.h>
 #include "opt_nfs.h"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202007030521.0635L67u090311>