Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/ufs/ufs s/grabing/grabbing/ in comments.
details: https://anonhg.NetBSD.org/src/rev/c969e3b7f12f
branches: trunk
changeset: 366483:c969e3b7f12f
user: andvar <andvar%NetBSD.org@localhost>
date: Sat May 28 22:08:46 2022 +0000
description:
s/grabing/grabbing/ in comments.
diffstat:
sys/arch/hppa/spmath/dbl_float.h | 4 ++--
sys/arch/hppa/spmath/quad_float.h | 4 ++--
sys/arch/hppa/spmath/sgl_float.h | 4 ++--
sys/kern/kern_turnstile.c | 6 +++---
sys/kern/uipc_usrreq.c | 6 +++---
sys/ufs/lfs/ulfs_quota2.c | 6 +++---
sys/ufs/ufs/ufs_quota2.c | 6 +++---
7 files changed, 18 insertions(+), 18 deletions(-)
diffs (162 lines):
diff -r 9f2b5716a1c5 -r c969e3b7f12f sys/arch/hppa/spmath/dbl_float.h
--- a/sys/arch/hppa/spmath/dbl_float.h Sat May 28 22:00:55 2022 +0000
+++ b/sys/arch/hppa/spmath/dbl_float.h Sat May 28 22:08:46 2022 +0000
@@ -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
diff -r 9f2b5716a1c5 -r c969e3b7f12f sys/arch/hppa/spmath/quad_float.h
--- a/sys/arch/hppa/spmath/quad_float.h Sat May 28 22:00:55 2022 +0000
+++ b/sys/arch/hppa/spmath/quad_float.h Sat May 28 22:08:46 2022 +0000
@@ -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)
diff -r 9f2b5716a1c5 -r c969e3b7f12f sys/arch/hppa/spmath/sgl_float.h
--- a/sys/arch/hppa/spmath/sgl_float.h Sat May 28 22:00:55 2022 +0000
+++ b/sys/arch/hppa/spmath/sgl_float.h Sat May 28 22:08:46 2022 +0000
@@ -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
diff -r 9f2b5716a1c5 -r c969e3b7f12f sys/kern/kern_turnstile.c
--- a/sys/kern/kern_turnstile.c Sat May 28 22:00:55 2022 +0000
+++ b/sys/kern/kern_turnstile.c Sat May 28 22:08:46 2022 +0000
@@ -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 @@
* 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);
diff -r 9f2b5716a1c5 -r c969e3b7f12f sys/kern/uipc_usrreq.c
--- a/sys/kern/uipc_usrreq.c Sat May 28 22:00:55 2022 +0000
+++ b/sys/kern/uipc_usrreq.c Sat May 28 22:08:46 2022 +0000
@@ -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 @@
* 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);
diff -r 9f2b5716a1c5 -r c969e3b7f12f sys/ufs/lfs/ulfs_quota2.c
--- a/sys/ufs/lfs/ulfs_quota2.c Sat May 28 22:00:55 2022 +0000
+++ b/sys/ufs/lfs/ulfs_quota2.c Sat May 28 22:08:46 2022 +0000
@@ -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 @@
* 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
diff -r 9f2b5716a1c5 -r c969e3b7f12f sys/ufs/ufs/ufs_quota2.c
--- a/sys/ufs/ufs/ufs_quota2.c Sat May 28 22:00:55 2022 +0000
+++ b/sys/ufs/ufs/ufs_quota2.c Sat May 28 22:08:46 2022 +0000
@@ -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 @@
* 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
Home |
Main Index |
Thread Index |
Old Index