Module Name: src Committed By: andvar Date: Sat Feb 10 09:24:18 UTC 2024
Modified Files: src/sys/arch/x86/x86: convert_xmm_s87.c src/sys/dev/ic: cac.c dpt.c src/sys/kern: kern_sig.c src/sys/uvm: uvm_page.c Log Message: s/musn't/mustn't/ in comments. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/sys/arch/x86/x86/convert_xmm_s87.c cvs rdiff -u -r1.63 -r1.64 src/sys/dev/ic/cac.c cvs rdiff -u -r1.78 -r1.79 src/sys/dev/ic/dpt.c cvs rdiff -u -r1.408 -r1.409 src/sys/kern/kern_sig.c cvs rdiff -u -r1.254 -r1.255 src/sys/uvm/uvm_page.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/x86/x86/convert_xmm_s87.c diff -u src/sys/arch/x86/x86/convert_xmm_s87.c:1.7 src/sys/arch/x86/x86/convert_xmm_s87.c:1.8 --- src/sys/arch/x86/x86/convert_xmm_s87.c:1.7 Thu Oct 15 17:43:30 2020 +++ src/sys/arch/x86/x86/convert_xmm_s87.c Sat Feb 10 09:24:17 2024 @@ -1,4 +1,4 @@ -/* $NetBSD: convert_xmm_s87.c,v 1.7 2020/10/15 17:43:30 mgorny Exp $ */ +/* $NetBSD: convert_xmm_s87.c,v 1.8 2024/02/10 09:24:17 andvar Exp $ */ /*- * Copyright (c) 1998, 2000, 2001, 2008 The NetBSD Foundation, Inc. @@ -30,7 +30,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: convert_xmm_s87.c,v 1.7 2020/10/15 17:43:30 mgorny Exp $"); +__KERNEL_RCSID(0, "$NetBSD: convert_xmm_s87.c,v 1.8 2024/02/10 09:24:17 andvar Exp $"); #include <sys/param.h> @@ -131,7 +131,7 @@ process_s87_to_xmm(const struct save87 * * we must convert them to the correct format. * * This code is normally used when overwriting the processes - * registers (in the pcb), so it musn't change any other fields. + * registers (in the pcb), so it mustn't change any other fields. * * There is a lot of pad in 'struct fxsave', if the destination * is written to userspace, it must be zeroed first. Index: src/sys/dev/ic/cac.c diff -u src/sys/dev/ic/cac.c:1.63 src/sys/dev/ic/cac.c:1.64 --- src/sys/dev/ic/cac.c:1.63 Sat Aug 7 16:19:12 2021 +++ src/sys/dev/ic/cac.c Sat Feb 10 09:24:17 2024 @@ -1,4 +1,4 @@ -/* $NetBSD: cac.c,v 1.63 2021/08/07 16:19:12 thorpej Exp $ */ +/* $NetBSD: cac.c,v 1.64 2024/02/10 09:24:17 andvar Exp $ */ /*- * Copyright (c) 2000, 2006, 2007 The NetBSD Foundation, Inc. @@ -34,7 +34,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: cac.c,v 1.63 2021/08/07 16:19:12 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: cac.c,v 1.64 2024/02/10 09:24:17 andvar Exp $"); #if defined(_KERNEL_OPT) #include "bio.h" @@ -369,7 +369,7 @@ cac_cmd(struct cac_softc *sc, int comman if (context == NULL) { memset(&ccb->ccb_context, 0, sizeof(struct cac_context)); - /* Synchronous commands musn't wait. */ + /* Synchronous commands mustn't wait. */ if ((*sc->sc_cl.cl_fifo_full)(sc)) { cac_ccb_free(sc, ccb); rv = EAGAIN; Index: src/sys/dev/ic/dpt.c diff -u src/sys/dev/ic/dpt.c:1.78 src/sys/dev/ic/dpt.c:1.79 --- src/sys/dev/ic/dpt.c:1.78 Wed Nov 10 15:21:43 2021 +++ src/sys/dev/ic/dpt.c Sat Feb 10 09:24:17 2024 @@ -1,4 +1,4 @@ -/* $NetBSD: dpt.c,v 1.78 2021/11/10 15:21:43 msaitoh Exp $ */ +/* $NetBSD: dpt.c,v 1.79 2024/02/10 09:24:17 andvar Exp $ */ /*- * Copyright (c) 1997, 1998, 1999, 2000, 2001 The NetBSD Foundation, Inc. @@ -71,7 +71,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: dpt.c,v 1.78 2021/11/10 15:21:43 msaitoh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: dpt.c,v 1.79 2024/02/10 09:24:17 andvar Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -984,7 +984,7 @@ dpt_scsipi_request(struct scsipi_channel if (sc->sc_hbaid[chan->chan_channel] == periph->periph_target) cp->cp_ctl0 |= CP_C0_INTERPRET; - /* Synchronous xfers musn't write-back through the cache. */ + /* Synchronous xfers mustn't write-back through the cache. */ if (xs->bp != NULL) if ((xs->bp->b_flags & (B_ASYNC | B_READ)) == 0) cp->cp_ctl2 |= CP_C2_NO_CACHE; Index: src/sys/kern/kern_sig.c diff -u src/sys/kern/kern_sig.c:1.408 src/sys/kern/kern_sig.c:1.409 --- src/sys/kern/kern_sig.c:1.408 Thu Oct 5 19:06:30 2023 +++ src/sys/kern/kern_sig.c Sat Feb 10 09:24:18 2024 @@ -1,4 +1,4 @@ -/* $NetBSD: kern_sig.c,v 1.408 2023/10/05 19:06:30 ad Exp $ */ +/* $NetBSD: kern_sig.c,v 1.409 2024/02/10 09:24:18 andvar Exp $ */ /*- * Copyright (c) 2006, 2007, 2008, 2019, 2023 The NetBSD Foundation, Inc. @@ -70,7 +70,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: kern_sig.c,v 1.408 2023/10/05 19:06:30 ad Exp $"); +__KERNEL_RCSID(0, "$NetBSD: kern_sig.c,v 1.409 2024/02/10 09:24:18 andvar Exp $"); #include "opt_execfmt.h" #include "opt_ptrace.h" @@ -2409,7 +2409,7 @@ proc_stop(struct proc *p, int signo) /* * First off, set the stopping indicator and bring all sleeping - * LWPs to a halt so they are included in p->p_nrlwps. We musn't + * LWPs to a halt so they are included in p->p_nrlwps. We mustn't * unlock between here and the p->p_nrlwps check below. */ p->p_sflag |= PS_STOPPING; Index: src/sys/uvm/uvm_page.c diff -u src/sys/uvm/uvm_page.c:1.254 src/sys/uvm/uvm_page.c:1.255 --- src/sys/uvm/uvm_page.c:1.254 Sat Sep 23 18:20:20 2023 +++ src/sys/uvm/uvm_page.c Sat Feb 10 09:24:18 2024 @@ -1,4 +1,4 @@ -/* $NetBSD: uvm_page.c,v 1.254 2023/09/23 18:20:20 ad Exp $ */ +/* $NetBSD: uvm_page.c,v 1.255 2024/02/10 09:24:18 andvar Exp $ */ /*- * Copyright (c) 2019, 2020 The NetBSD Foundation, Inc. @@ -95,7 +95,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: uvm_page.c,v 1.254 2023/09/23 18:20:20 ad Exp $"); +__KERNEL_RCSID(0, "$NetBSD: uvm_page.c,v 1.255 2024/02/10 09:24:18 andvar Exp $"); #include "opt_ddb.h" #include "opt_uvm.h" @@ -761,7 +761,7 @@ uvm_page_redim(int newncolors, int newnb ocolors = uvmexp.ncolors; obuckets = uvm.bucketcount; - /* Freelist cache musn't be enabled. */ + /* Freelist cache mustn't be enabled. */ uvm_pgflcache_pause(); /* Make sure we should still do this. */