Module Name:    src
Committed By:   pgoyette
Date:           Thu Nov  5 00:12:28 UTC 2015

Modified Files:
        src/sys/uvm/pmap: pmap.c

Log Message:
Remove unnecessary #include for sys/shm.h - there's nothing here that needs
anything from there.


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/sys/uvm/pmap/pmap.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/uvm/pmap/pmap.c
diff -u src/sys/uvm/pmap/pmap.c:1.12 src/sys/uvm/pmap/pmap.c:1.13
--- src/sys/uvm/pmap/pmap.c:1.12	Thu Jun 11 05:27:07 2015
+++ src/sys/uvm/pmap/pmap.c	Thu Nov  5 00:12:28 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: pmap.c,v 1.12 2015/06/11 05:27:07 matt Exp $	*/
+/*	$NetBSD: pmap.c,v 1.13 2015/11/05 00:12:28 pgoyette Exp $	*/
 
 /*-
  * Copyright (c) 1998, 2001 The NetBSD Foundation, Inc.
@@ -67,7 +67,7 @@
 
 #include <sys/cdefs.h>
 
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.12 2015/06/11 05:27:07 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.13 2015/11/05 00:12:28 pgoyette Exp $");
 
 /*
  *	Manages physical address maps.
@@ -109,9 +109,6 @@ __KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.1
 #include <sys/atomic.h>
 #include <sys/mutex.h>
 #include <sys/atomic.h>
-#ifdef SYSVSHM
-#include <sys/shm.h>
-#endif
 #include <sys/socketvar.h>	/* XXX: for sock_loan_thresh */
 
 #include <uvm/uvm.h>

Reply via email to