Source-Changes-HG archive

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

[src/trunk]: src/sys/kern s/conver_to/convert_to/. No functional change.



details:   https://anonhg.NetBSD.org/src/rev/5bf8b0a77c6f
branches:  trunk
changeset: 836230:5bf8b0a77c6f
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Fri Oct 05 05:06:48 2018 +0000

description:
s/conver_to/convert_to/. No functional change.

diffstat:

 sys/kern/uipc_mbuf.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r 97a74ddd3915 -r 5bf8b0a77c6f sys/kern/uipc_mbuf.c
--- a/sys/kern/uipc_mbuf.c      Fri Oct 05 01:54:10 2018 +0000
+++ b/sys/kern/uipc_mbuf.c      Fri Oct 05 05:06:48 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: uipc_mbuf.c,v 1.219 2018/09/03 16:29:35 riastradh Exp $        */
+/*     $NetBSD: uipc_mbuf.c,v 1.220 2018/10/05 05:06:48 msaitoh Exp $  */
 
 /*
  * Copyright (c) 1999, 2001 The NetBSD Foundation, Inc.
@@ -62,7 +62,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uipc_mbuf.c,v 1.219 2018/09/03 16:29:35 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uipc_mbuf.c,v 1.220 2018/10/05 05:06:48 msaitoh Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_mbuftrace.h"
@@ -328,7 +328,7 @@
 
 #ifdef MBUFTRACE
 static void
-mowner_conver_to_user_cb(void *v1, void *v2, struct cpu_info *ci)
+mowner_convert_to_user_cb(void *v1, void *v2, struct cpu_info *ci)
 {
        struct mowner_counter *mc = v1;
        struct mowner_user *mo_user = v2;
@@ -348,7 +348,7 @@
        CTASSERT(sizeof(mo_user->mo_descr) == sizeof(mo->mo_descr));
        memcpy(mo_user->mo_name, mo->mo_name, sizeof(mo->mo_name));
        memcpy(mo_user->mo_descr, mo->mo_descr, sizeof(mo->mo_descr));
-       percpu_foreach(mo->mo_counters, mowner_conver_to_user_cb, mo_user);
+       percpu_foreach(mo->mo_counters, mowner_convert_to_user_cb, mo_user);
 }
 
 static int



Home | Main Index | Thread Index | Old Index