Module Name: src Committed By: jym Date: Sun Jul 31 18:00:54 UTC 2011
Modified Files: src/sys/arch/xen/x86: xen_shm_machdep.c Log Message: Fix typo in comment. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/sys/arch/xen/x86/xen_shm_machdep.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/arch/xen/x86/xen_shm_machdep.c diff -u src/sys/arch/xen/x86/xen_shm_machdep.c:1.8 src/sys/arch/xen/x86/xen_shm_machdep.c:1.9 --- src/sys/arch/xen/x86/xen_shm_machdep.c:1.8 Sun Mar 28 20:46:18 2010 +++ src/sys/arch/xen/x86/xen_shm_machdep.c Sun Jul 31 18:00:54 2011 @@ -1,4 +1,4 @@ -/* $NetBSD: xen_shm_machdep.c,v 1.8 2010/03/28 20:46:18 snj Exp $ */ +/* $NetBSD: xen_shm_machdep.c,v 1.9 2011/07/31 18:00:54 jym Exp $ */ /* * Copyright (c) 2006 Manuel Bouyer. @@ -26,7 +26,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: xen_shm_machdep.c,v 1.8 2010/03/28 20:46:18 snj Exp $"); +__KERNEL_RCSID(0, "$NetBSD: xen_shm_machdep.c,v 1.9 2011/07/31 18:00:54 jym Exp $"); #include <sys/types.h> @@ -48,7 +48,7 @@ * functions to map a bunch of pages from foreign domains in our kernel VM * space, do I/O to it, and unmap it. * - * At boot time, we grap some kernel VM space that we'll use to map the foreign + * At boot time, we grab some kernel VM space that we'll use to map the foreign * pages. We also maintain a virtual to machine mapping table to give back * the appropriate address to bus_dma if requested. * If no more VM space is available, we return an error. The caller can then