From owner-svn-src-head@FreeBSD.ORG Fri Jun 26 16:22:24 2009 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 82C571065740; Fri, 26 Jun 2009 16:22:24 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 6F60F8FC08; Fri, 26 Jun 2009 16:22:24 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n5QGMOJJ091572; Fri, 26 Jun 2009 16:22:24 GMT (envelope-from alc@svn.freebsd.org) Received: (from alc@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n5QGMOtT091563; Fri, 26 Jun 2009 16:22:24 GMT (envelope-from alc@svn.freebsd.org) Message-Id: <200906261622.n5QGMOtT091563@svn.freebsd.org> From: Alan Cox Date: Fri, 26 Jun 2009 16:22:24 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r195060 - in head/sys: amd64/include arm/include i386/include ia64/include mips/include powerpc/include sparc64/include sun4v/include X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Jun 2009 16:22:25 -0000 Author: alc Date: Fri Jun 26 16:22:24 2009 New Revision: 195060 URL: http://svn.freebsd.org/changeset/base/195060 Log: Correct the #endif comment. Noticed by: jmallett Approved by: re (kib) Modified: head/sys/amd64/include/vm.h head/sys/arm/include/vm.h head/sys/i386/include/vm.h head/sys/ia64/include/vm.h head/sys/mips/include/vm.h head/sys/powerpc/include/vm.h head/sys/sparc64/include/vm.h head/sys/sun4v/include/vm.h Modified: head/sys/amd64/include/vm.h ============================================================================== --- head/sys/amd64/include/vm.h Fri Jun 26 16:22:07 2009 (r195059) +++ head/sys/amd64/include/vm.h Fri Jun 26 16:22:24 2009 (r195060) @@ -42,4 +42,4 @@ #define VM_CACHE_DEFAULT VM_CACHE_WRITE_BACK -#endif /* !_MACHINE_PMAP_H_ */ +#endif /* !_MACHINE_VM_H_ */ Modified: head/sys/arm/include/vm.h ============================================================================== --- head/sys/arm/include/vm.h Fri Jun 26 16:22:07 2009 (r195059) +++ head/sys/arm/include/vm.h Fri Jun 26 16:22:24 2009 (r195060) @@ -32,4 +32,4 @@ /* Cache control is not (yet) implemented. */ #define VM_CACHE_DEFAULT 0 -#endif /* !_MACHINE_PMAP_H_ */ +#endif /* !_MACHINE_VM_H_ */ Modified: head/sys/i386/include/vm.h ============================================================================== --- head/sys/i386/include/vm.h Fri Jun 26 16:22:07 2009 (r195059) +++ head/sys/i386/include/vm.h Fri Jun 26 16:22:24 2009 (r195060) @@ -42,4 +42,4 @@ #define VM_CACHE_DEFAULT VM_CACHE_WRITE_BACK -#endif /* !_MACHINE_PMAP_H_ */ +#endif /* !_MACHINE_VM_H_ */ Modified: head/sys/ia64/include/vm.h ============================================================================== --- head/sys/ia64/include/vm.h Fri Jun 26 16:22:07 2009 (r195059) +++ head/sys/ia64/include/vm.h Fri Jun 26 16:22:24 2009 (r195060) @@ -41,4 +41,4 @@ #define VM_CACHE_DEFAULT VM_CACHE_WRITE_BACK -#endif /* !_MACHINE_PMAP_H_ */ +#endif /* !_MACHINE_VM_H_ */ Modified: head/sys/mips/include/vm.h ============================================================================== --- head/sys/mips/include/vm.h Fri Jun 26 16:22:07 2009 (r195059) +++ head/sys/mips/include/vm.h Fri Jun 26 16:22:24 2009 (r195060) @@ -37,4 +37,4 @@ #define VM_CACHE_DEFAULT VM_CACHE_CACHEABLE_NONCOHERENT -#endif /* !_MACHINE_PMAP_H_ */ +#endif /* !_MACHINE_VM_H_ */ Modified: head/sys/powerpc/include/vm.h ============================================================================== --- head/sys/powerpc/include/vm.h Fri Jun 26 16:22:07 2009 (r195059) +++ head/sys/powerpc/include/vm.h Fri Jun 26 16:22:24 2009 (r195060) @@ -37,4 +37,4 @@ #define VM_CACHE_DEFAULT 0 -#endif /* !_MACHINE_PMAP_H_ */ +#endif /* !_MACHINE_VM_H_ */ Modified: head/sys/sparc64/include/vm.h ============================================================================== --- head/sys/sparc64/include/vm.h Fri Jun 26 16:22:07 2009 (r195059) +++ head/sys/sparc64/include/vm.h Fri Jun 26 16:22:24 2009 (r195060) @@ -32,4 +32,4 @@ /* Cache control is not (yet) implemented. */ #define VM_CACHE_DEFAULT 0 -#endif /* !_MACHINE_PMAP_H_ */ +#endif /* !_MACHINE_VM_H_ */ Modified: head/sys/sun4v/include/vm.h ============================================================================== --- head/sys/sun4v/include/vm.h Fri Jun 26 16:22:07 2009 (r195059) +++ head/sys/sun4v/include/vm.h Fri Jun 26 16:22:24 2009 (r195060) @@ -32,4 +32,4 @@ /* Cache control is not (yet) implemented. */ #define VM_CACHE_DEFAULT 0 -#endif /* !_MACHINE_PMAP_H_ */ +#endif /* !_MACHINE_VM_H_ */