Module Name: src Committed By: andvar Date: Sat May 28 22:08:47 UTC 2022
Modified Files: src/sys/arch/hppa/spmath: dbl_float.h quad_float.h sgl_float.h src/sys/kern: kern_turnstile.c uipc_usrreq.c src/sys/ufs/lfs: ulfs_quota2.c src/sys/ufs/ufs: ufs_quota2.c Log Message: s/grabing/grabbing/ in comments. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/sys/arch/hppa/spmath/dbl_float.h \ src/sys/arch/hppa/spmath/sgl_float.h cvs rdiff -u -r1.2 -r1.3 src/sys/arch/hppa/spmath/quad_float.h cvs rdiff -u -r1.42 -r1.43 src/sys/kern/kern_turnstile.c cvs rdiff -u -r1.202 -r1.203 src/sys/kern/uipc_usrreq.c cvs rdiff -u -r1.34 -r1.35 src/sys/ufs/lfs/ulfs_quota2.c cvs rdiff -u -r1.44 -r1.45 src/sys/ufs/ufs/ufs_quota2.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/hppa/spmath/dbl_float.h diff -u src/sys/arch/hppa/spmath/dbl_float.h:1.3 src/sys/arch/hppa/spmath/dbl_float.h:1.4 --- src/sys/arch/hppa/spmath/dbl_float.h:1.3 Tue Jan 27 11:49:54 2009 +++ src/sys/arch/hppa/spmath/dbl_float.h Sat May 28 22:08:47 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: dbl_float.h,v 1.3 2009/01/27 11:49:54 skrll Exp $ */ +/* $NetBSD: dbl_float.h,v 1.4 2022/05/28 22:08:47 andvar Exp $ */ /* $OpenBSD: dbl_float.h,v 1.10 2004/01/02 14:39:01 mickey Exp $ */ @@ -46,7 +46,7 @@ * Declare double precision functions * **************************************/ -/* 32-bit word grabing functions */ +/* 32-bit word grabbing functions */ #define Dbl_firstword(value) Dallp1(value) #define Dbl_secondword(value) Dallp2(value) #define Dbl_thirdword(value) dummy_location Index: src/sys/arch/hppa/spmath/sgl_float.h diff -u src/sys/arch/hppa/spmath/sgl_float.h:1.3 src/sys/arch/hppa/spmath/sgl_float.h:1.4 --- src/sys/arch/hppa/spmath/sgl_float.h:1.3 Tue Jan 27 11:49:54 2009 +++ src/sys/arch/hppa/spmath/sgl_float.h Sat May 28 22:08:47 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: sgl_float.h,v 1.3 2009/01/27 11:49:54 skrll Exp $ */ +/* $NetBSD: sgl_float.h,v 1.4 2022/05/28 22:08:47 andvar Exp $ */ /* $OpenBSD: sgl_float.h,v 1.10 2004/01/02 14:39:01 mickey Exp $ */ @@ -46,7 +46,7 @@ * Single precision functions * ******************************/ -/* 32-bit word grabing functions */ +/* 32-bit word grabbing functions */ #define Sgl_firstword(value) Sall(value) #define Sgl_secondword(value) dummy_location #define Sgl_thirdword(value) dummy_location Index: src/sys/arch/hppa/spmath/quad_float.h diff -u src/sys/arch/hppa/spmath/quad_float.h:1.2 src/sys/arch/hppa/spmath/quad_float.h:1.3 --- src/sys/arch/hppa/spmath/quad_float.h:1.2 Sun Apr 6 08:03:36 2008 +++ src/sys/arch/hppa/spmath/quad_float.h Sat May 28 22:08:47 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: quad_float.h,v 1.2 2008/04/06 08:03:36 skrll Exp $ */ +/* $NetBSD: quad_float.h,v 1.3 2022/05/28 22:08:47 andvar Exp $ */ /* $OpenBSD: quad_float.h,v 1.5 2001/03/29 03:58:19 mickey Exp $ */ @@ -45,7 +45,7 @@ * Quad precision functions * ******************************/ -/* 32-bit word grabing functions */ +/* 32-bit word grabbing functions */ #define Quad_firstword(value) Qallp1(value) #define Quad_secondword(value) Qallp2(value) #define Quad_thirdword(value) Qallp3(value) Index: src/sys/kern/kern_turnstile.c diff -u src/sys/kern/kern_turnstile.c:1.42 src/sys/kern/kern_turnstile.c:1.43 --- src/sys/kern/kern_turnstile.c:1.42 Sat Apr 9 23:45:36 2022 +++ src/sys/kern/kern_turnstile.c Sat May 28 22:08:46 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: kern_turnstile.c,v 1.42 2022/04/09 23:45:36 riastradh Exp $ */ +/* $NetBSD: kern_turnstile.c,v 1.43 2022/05/28 22:08:46 andvar Exp $ */ /*- * Copyright (c) 2002, 2006, 2007, 2009, 2019, 2020 @@ -61,7 +61,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: kern_turnstile.c,v 1.42 2022/04/09 23:45:36 riastradh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: kern_turnstile.c,v 1.43 2022/05/28 22:08:46 andvar Exp $"); #include <sys/param.h> #include <sys/lockdebug.h> @@ -259,7 +259,7 @@ turnstile_lendpri(lwp_t *cur) * Restart from curlwp. * * Note that there may be a livelock here: - * the owner may try grabing cur's lock (which is the + * the owner may try grabbing cur's lock (which is the * tc lock) while we're trying to grab the owner's lock. */ lwp_unlock(l); Index: src/sys/kern/uipc_usrreq.c diff -u src/sys/kern/uipc_usrreq.c:1.202 src/sys/kern/uipc_usrreq.c:1.203 --- src/sys/kern/uipc_usrreq.c:1.202 Sat Apr 9 23:52:23 2022 +++ src/sys/kern/uipc_usrreq.c Sat May 28 22:08:46 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: uipc_usrreq.c,v 1.202 2022/04/09 23:52:23 riastradh Exp $ */ +/* $NetBSD: uipc_usrreq.c,v 1.203 2022/05/28 22:08:46 andvar Exp $ */ /*- * Copyright (c) 1998, 2000, 2004, 2008, 2009, 2020 The NetBSD Foundation, Inc. @@ -96,7 +96,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: uipc_usrreq.c,v 1.202 2022/04/09 23:52:23 riastradh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: uipc_usrreq.c,v 1.203 2022/05/28 22:08:46 andvar Exp $"); #ifdef _KERNEL_OPT #include "opt_compat_netbsd.h" @@ -851,7 +851,7 @@ unp_accept(struct socket *so, struct soc * this should be harmless, except that this makes * solocked2() and solocked() unreliable. * Another problem is that unp_setaddr() expects the - * the socket locked. Grabing sotounpcb(so2)->unp_streamlock + * the socket locked. Grabbing sotounpcb(so2)->unp_streamlock * fixes both issues. */ mutex_enter(sotounpcb(so2)->unp_streamlock); Index: src/sys/ufs/lfs/ulfs_quota2.c diff -u src/sys/ufs/lfs/ulfs_quota2.c:1.34 src/sys/ufs/lfs/ulfs_quota2.c:1.35 --- src/sys/ufs/lfs/ulfs_quota2.c:1.34 Fri Oct 15 22:32:29 2021 +++ src/sys/ufs/lfs/ulfs_quota2.c Sat May 28 22:08:46 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: ulfs_quota2.c,v 1.34 2021/10/15 22:32:29 andvar Exp $ */ +/* $NetBSD: ulfs_quota2.c,v 1.35 2022/05/28 22:08:46 andvar Exp $ */ /* from NetBSD: ufs_quota2.c,v 1.40 2015/03/28 19:24:05 maxv Exp Exp */ /* from NetBSD: ffs_quota2.c,v 1.5 2015/02/22 14:12:48 maxv Exp */ @@ -29,7 +29,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: ulfs_quota2.c,v 1.34 2021/10/15 22:32:29 andvar Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ulfs_quota2.c,v 1.35 2022/05/28 22:08:46 andvar Exp $"); #include <sys/buf.h> #include <sys/param.h> @@ -59,7 +59,7 @@ __KERNEL_RCSID(0, "$NetBSD: ulfs_quota2. * LOCKING: * Data in the entries are protected by the associated struct dquot's * dq_interlock (this means we can't read or change a quota entry without - * grabing a dquot for it). + * grabbing a dquot for it). * The header and lists (including pointers in the data entries, and q2e_uid) * are protected by the global dqlock. * the locking order is dq_interlock -> dqlock Index: src/sys/ufs/ufs/ufs_quota2.c diff -u src/sys/ufs/ufs/ufs_quota2.c:1.44 src/sys/ufs/ufs/ufs_quota2.c:1.45 --- src/sys/ufs/ufs/ufs_quota2.c:1.44 Fri Oct 15 22:32:29 2021 +++ src/sys/ufs/ufs/ufs_quota2.c Sat May 28 22:08:46 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: ufs_quota2.c,v 1.44 2021/10/15 22:32:29 andvar Exp $ */ +/* $NetBSD: ufs_quota2.c,v 1.45 2022/05/28 22:08:46 andvar Exp $ */ /*- * Copyright (c) 2010 Manuel Bouyer * All rights reserved. @@ -26,7 +26,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: ufs_quota2.c,v 1.44 2021/10/15 22:32:29 andvar Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ufs_quota2.c,v 1.45 2022/05/28 22:08:46 andvar Exp $"); #include <sys/buf.h> #include <sys/param.h> @@ -54,7 +54,7 @@ __KERNEL_RCSID(0, "$NetBSD: ufs_quota2.c * LOCKING: * Data in the entries are protected by the associated struct dquot's * dq_interlock (this means we can't read or change a quota entry without - * grabing a dquot for it). + * grabbing a dquot for it). * The header and lists (including pointers in the data entries, and q2e_uid) * are protected by the global dqlock. * the locking order is dq_interlock -> dqlock