Module Name: src Committed By: andvar Date: Fri Oct 15 22:32:29 UTC 2021
Modified Files: src/include: unistd.h src/sys/crypto/blowfish: bf_locl.h src/sys/dev/ic: aic79xxvar.h src/sys/ufs/lfs: ulfs_quota2.c src/sys/ufs/ufs: ufs_quota2.c Log Message: fix typos in comments. To generate a diff of this commit: cvs rdiff -u -r1.161 -r1.162 src/include/unistd.h cvs rdiff -u -r1.6 -r1.7 src/sys/crypto/blowfish/bf_locl.h cvs rdiff -u -r1.28 -r1.29 src/sys/dev/ic/aic79xxvar.h cvs rdiff -u -r1.33 -r1.34 src/sys/ufs/lfs/ulfs_quota2.c cvs rdiff -u -r1.43 -r1.44 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/include/unistd.h diff -u src/include/unistd.h:1.161 src/include/unistd.h:1.162 --- src/include/unistd.h:1.161 Fri Dec 4 23:04:58 2020 +++ src/include/unistd.h Fri Oct 15 22:32:28 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: unistd.h,v 1.161 2020/12/04 23:04:58 kre Exp $ */ +/* $NetBSD: unistd.h,v 1.162 2021/10/15 22:32:28 andvar Exp $ */ /*- * Copyright (c) 1998, 1999, 2008 The NetBSD Foundation, Inc. @@ -187,7 +187,7 @@ off_t lseek(int, off_t, int); int truncate(const char *, off_t); /* * IEEE Std 1003.1b-93, - * also found in X/Open Portability Guide >= Issue 4 Verion 2 + * also found in X/Open Portability Guide >= Issue 4 Version 2 */ #if (_POSIX_C_SOURCE - 0) >= 199309L || \ (defined(_XOPEN_SOURCE) && defined(_XOPEN_SOURCE_EXTENDED)) || \ Index: src/sys/crypto/blowfish/bf_locl.h diff -u src/sys/crypto/blowfish/bf_locl.h:1.6 src/sys/crypto/blowfish/bf_locl.h:1.7 --- src/sys/crypto/blowfish/bf_locl.h:1.6 Mon Feb 4 08:23:53 2019 +++ src/sys/crypto/blowfish/bf_locl.h Fri Oct 15 22:32:28 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: bf_locl.h,v 1.6 2019/02/04 08:23:53 mrg Exp $ */ +/* $NetBSD: bf_locl.h,v 1.7 2021/10/15 22:32:28 andvar Exp $ */ /* $KAME: bf_locl.h,v 1.5 2000/08/31 06:03:48 itojun Exp $ */ /* crypto/bf/bf_local.h */ @@ -179,7 +179,7 @@ #if defined(BF_PTR2) -/* This is basically a special pentium verson */ +/* This is basically a special pentium version */ #define BF_ENC(LL,R,S,P) \ { \ BF_LONG t,u,v; \ Index: src/sys/dev/ic/aic79xxvar.h diff -u src/sys/dev/ic/aic79xxvar.h:1.28 src/sys/dev/ic/aic79xxvar.h:1.29 --- src/sys/dev/ic/aic79xxvar.h:1.28 Sun Aug 22 19:56:15 2021 +++ src/sys/dev/ic/aic79xxvar.h Fri Oct 15 22:32:28 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: aic79xxvar.h,v 1.28 2021/08/22 19:56:15 andvar Exp $ */ +/* $NetBSD: aic79xxvar.h,v 1.29 2021/10/15 22:32:28 andvar Exp $ */ /* * Core definitions and data structures sharable across OS platforms. @@ -1186,7 +1186,7 @@ struct ahd_softc { uint8_t tqinfifonext; /* - * Cached verson of the hs_mailbox so we can avoid + * Cached version of the hs_mailbox so we can avoid * pausing the sequencer during mailbox updates. */ uint8_t hs_mailbox; Index: src/sys/ufs/lfs/ulfs_quota2.c diff -u src/sys/ufs/lfs/ulfs_quota2.c:1.33 src/sys/ufs/lfs/ulfs_quota2.c:1.34 --- src/sys/ufs/lfs/ulfs_quota2.c:1.33 Sat Dec 5 17:40:00 2020 +++ src/sys/ufs/lfs/ulfs_quota2.c Fri Oct 15 22:32:29 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: ulfs_quota2.c,v 1.33 2020/12/05 17:40:00 thorpej Exp $ */ +/* $NetBSD: ulfs_quota2.c,v 1.34 2021/10/15 22:32:29 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.33 2020/12/05 17:40:00 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ulfs_quota2.c,v 1.34 2021/10/15 22:32:29 andvar Exp $"); #include <sys/buf.h> #include <sys/param.h> @@ -311,7 +311,7 @@ quota2_q2ealloc(struct ulfsmount *ump, i struct vnode *vp = ump->um_quotas[type]; struct inode *ip = VTOI(vp); uint64_t size = ip->i_size; - /* need to alocate a new disk block */ + /* need to allocate a new disk block */ error = lfs_balloc(vp, size, ump->umq2_bsize, ump->um_cred[type], B_CLRBUF | B_SYNC, &bp); if (error) { Index: src/sys/ufs/ufs/ufs_quota2.c diff -u src/sys/ufs/ufs/ufs_quota2.c:1.43 src/sys/ufs/ufs/ufs_quota2.c:1.44 --- src/sys/ufs/ufs/ufs_quota2.c:1.43 Sat Dec 5 17:33:54 2020 +++ src/sys/ufs/ufs/ufs_quota2.c Fri Oct 15 22:32:29 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: ufs_quota2.c,v 1.43 2020/12/05 17:33:54 thorpej Exp $ */ +/* $NetBSD: ufs_quota2.c,v 1.44 2021/10/15 22:32:29 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.43 2020/12/05 17:33:54 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ufs_quota2.c,v 1.44 2021/10/15 22:32:29 andvar Exp $"); #include <sys/buf.h> #include <sys/param.h> @@ -304,7 +304,7 @@ quota2_q2ealloc(struct ufsmount *ump, in struct vnode *vp = ump->um_quotas[type]; struct inode *ip = VTOI(vp); uint64_t size = ip->i_size; - /* need to alocate a new disk block */ + /* need to allocate a new disk block */ error = UFS_BALLOC(vp, size, ump->umq2_bsize, ump->um_cred[type], B_CLRBUF | B_SYNC, &bp); if (error) {