svn commit: r328760 - user/jeff/numa/sys/vm

Jeff Roberson jeff at FreeBSD.org
Thu Feb 1 23:48:48 UTC 2018


Author: jeff
Date: Thu Feb  1 23:48:47 2018
New Revision: 328760
URL: https://svnweb.freebsd.org/changeset/base/328760

Log:
  Add missing bit of page cache

Modified:
  user/jeff/numa/sys/vm/vm_pagequeue.h

Modified: user/jeff/numa/sys/vm/vm_pagequeue.h
==============================================================================
--- user/jeff/numa/sys/vm/vm_pagequeue.h	Thu Feb  1 23:47:51 2018	(r328759)
+++ user/jeff/numa/sys/vm/vm_pagequeue.h	Thu Feb  1 23:48:47 2018	(r328760)
@@ -73,10 +73,12 @@ struct vm_pagequeue {
 	const char	* const pq_name;
 } __aligned(CACHE_LINE_SIZE);
 
+#include <vm/uma.h>
 
 struct vm_domain {
 	struct vm_pagequeue vmd_pagequeues[PQ_COUNT];
 	struct mtx_padalign vmd_free_mtx;
+	uma_zone_t vmd_pgcache;
 	struct vmem *vmd_kernel_arena;
 	u_int vmd_domain;		/* Domain number. */
 	u_int vmd_page_count;


More information about the svn-src-user mailing list