Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/uvm s/strucure/structure/ and s/structues/structures/ in...



details:   https://anonhg.NetBSD.org/src/rev/5dc97e7532c7
branches:  trunk
changeset: 373488:5dc97e7532c7
user:      andvar <andvar%NetBSD.org@localhost>
date:      Sun Feb 12 16:28:32 2023 +0000

description:
s/strucure/structure/ and s/structues/structures/ in comments.

diffstat:

 sys/compat/netbsd32/netbsd32.h |  6 +++---
 sys/compat/sys/msg.h           |  4 ++--
 sys/sys/msg.h                  |  4 ++--
 sys/uvm/uvm_bio.c              |  6 +++---
 sys/uvm/uvm_km.c               |  6 +++---
 5 files changed, 13 insertions(+), 13 deletions(-)

diffs (117 lines):

diff -r 825f42d297d4 -r 5dc97e7532c7 sys/compat/netbsd32/netbsd32.h
--- a/sys/compat/netbsd32/netbsd32.h    Sun Feb 12 16:04:57 2023 +0000
+++ b/sys/compat/netbsd32/netbsd32.h    Sun Feb 12 16:28:32 2023 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: netbsd32.h,v 1.140 2022/04/23 17:46:23 reinoud Exp $   */
+/*     $NetBSD: netbsd32.h,v 1.141 2023/02/12 16:28:32 andvar Exp $    */
 
 /*
  * Copyright (c) 1998, 2001, 2008, 2015 Matthew R. Green
@@ -511,7 +511,7 @@
 
 typedef netbsd32_pointer_t netbsd32_msqid_dsp_t;
 struct netbsd32_msqid_ds {
-       struct netbsd32_ipc_perm msg_perm;      /* operation permission strucure */
+       struct netbsd32_ipc_perm msg_perm;      /* operation permission structure */
        netbsd32_msgqnum_t      msg_qnum;       /* number of messages in the queue */
        netbsd32_msglen_t       msg_qbytes;     /* max # of bytes in the queue */
        pid_t           msg_lspid;      /* process ID of last msgsend() */
@@ -530,7 +530,7 @@
 };
 typedef netbsd32_pointer_t netbsd32_msqid_ds50p_t;
 struct netbsd32_msqid_ds50 {
-       struct netbsd32_ipc_perm msg_perm;      /* operation permission strucure */
+       struct netbsd32_ipc_perm msg_perm;      /* operation permission structure */
        netbsd32_msgqnum_t      msg_qnum;       /* number of messages in the queue */
        netbsd32_msglen_t       msg_qbytes;     /* max # of bytes in the queue */
        pid_t           msg_lspid;      /* process ID of last msgsend() */
diff -r 825f42d297d4 -r 5dc97e7532c7 sys/compat/sys/msg.h
--- a/sys/compat/sys/msg.h      Sun Feb 12 16:04:57 2023 +0000
+++ b/sys/compat/sys/msg.h      Sun Feb 12 16:28:32 2023 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: msg.h,v 1.6 2019/02/21 03:37:19 mrg Exp $      */
+/*     $NetBSD: msg.h,v 1.7 2023/02/12 16:28:32 andvar Exp $   */
 
 /*
  * SVID compatible msg.h file
@@ -45,7 +45,7 @@
 };
 
 struct msqid_ds13 {
-       struct ipc_perm msg_perm;       /* operation permission strucure */
+       struct ipc_perm msg_perm;       /* operation permission structure */
        msgqnum_t       msg_qnum;       /* number of messages in the queue */
        msglen_t        msg_qbytes;     /* max # of bytes in the queue */
        pid_t           msg_lspid;      /* process ID of last msgsend() */
diff -r 825f42d297d4 -r 5dc97e7532c7 sys/sys/msg.h
--- a/sys/sys/msg.h     Sun Feb 12 16:04:57 2023 +0000
+++ b/sys/sys/msg.h     Sun Feb 12 16:28:32 2023 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: msg.h,v 1.28 2019/08/07 00:38:02 pgoyette Exp $        */
+/*     $NetBSD: msg.h,v 1.29 2023/02/12 16:28:32 andvar Exp $  */
 
 /*-
  * Copyright (c) 1999, 2007 The NetBSD Foundation, Inc.
@@ -76,7 +76,7 @@
 typedef size_t         msglen_t;
 
 struct msqid_ds {
-       struct ipc_perm msg_perm;       /* operation permission strucure */
+       struct ipc_perm msg_perm;       /* operation permission structure */
        msgqnum_t       msg_qnum;       /* number of messages in the queue */
        msglen_t        msg_qbytes;     /* max # of bytes in the queue */
        pid_t           msg_lspid;      /* process ID of last msgsend() */
diff -r 825f42d297d4 -r 5dc97e7532c7 sys/uvm/uvm_bio.c
--- a/sys/uvm/uvm_bio.c Sun Feb 12 16:04:57 2023 +0000
+++ b/sys/uvm/uvm_bio.c Sun Feb 12 16:28:32 2023 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: uvm_bio.c,v 1.126 2021/04/01 06:26:26 simonb Exp $     */
+/*     $NetBSD: uvm_bio.c,v 1.127 2023/02/12 16:28:32 andvar Exp $     */
 
 /*
  * Copyright (c) 1998 Chuck Silvers.
@@ -34,7 +34,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uvm_bio.c,v 1.126 2021/04/01 06:26:26 simonb Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uvm_bio.c,v 1.127 2023/02/12 16:28:32 andvar Exp $");
 
 #include "opt_uvmhist.h"
 #include "opt_ubc.h"
@@ -73,7 +73,7 @@
 #endif
 
 /*
- * local data structues
+ * local data structures
  */
 
 #define UBC_HASH(uobj, offset)                                                 \
diff -r 825f42d297d4 -r 5dc97e7532c7 sys/uvm/uvm_km.c
--- a/sys/uvm/uvm_km.c  Sun Feb 12 16:04:57 2023 +0000
+++ b/sys/uvm/uvm_km.c  Sun Feb 12 16:28:32 2023 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: uvm_km.c,v 1.162 2022/08/06 05:55:37 chs Exp $ */
+/*     $NetBSD: uvm_km.c,v 1.163 2023/02/12 16:28:32 andvar Exp $      */
 
 /*
  * Copyright (c) 1997 Charles D. Cranor and Washington University.
@@ -152,7 +152,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uvm_km.c,v 1.162 2022/08/06 05:55:37 chs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uvm_km.c,v 1.163 2023/02/12 16:28:32 andvar Exp $");
 
 #include "opt_uvmhist.h"
 
@@ -194,7 +194,7 @@
 struct vm_map *kernel_map = NULL;
 
 /*
- * local data structues
+ * local data structures
  */
 
 static struct vm_map           kernel_map_store;



Home | Main Index | Thread Index | Old Index