Source-Changes-HG archive

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

[src/trunk]: src/sys/kern mbstat_conver_to_user_cb -> mbstat_convert_to_user_cb



details:   https://anonhg.NetBSD.org/src/rev/9f3556eb682a
branches:  trunk
changeset: 459858:9f3556eb682a
user:      jmcneill <jmcneill%NetBSD.org@localhost>
date:      Sat Sep 28 16:02:12 2019 +0000

description:
mbstat_conver_to_user_cb -> mbstat_convert_to_user_cb

diffstat:

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

diffs (36 lines):

diff -r 1f5da3fca6b5 -r 9f3556eb682a sys/kern/uipc_mbuf.c
--- a/sys/kern/uipc_mbuf.c      Sat Sep 28 15:15:34 2019 +0000
+++ b/sys/kern/uipc_mbuf.c      Sat Sep 28 16:02:12 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: uipc_mbuf.c,v 1.233 2019/09/18 16:18:12 maxv Exp $     */
+/*     $NetBSD: uipc_mbuf.c,v 1.234 2019/09/28 16:02:12 jmcneill Exp $ */
 
 /*
  * Copyright (c) 1999, 2001, 2018 The NetBSD Foundation, Inc.
@@ -62,7 +62,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uipc_mbuf.c,v 1.233 2019/09/18 16:18:12 maxv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uipc_mbuf.c,v 1.234 2019/09/28 16:02:12 jmcneill Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_mbuftrace.h"
@@ -402,7 +402,7 @@
 }
 
 static void
-mbstat_conver_to_user_cb(void *v1, void *v2, struct cpu_info *ci)
+mbstat_convert_to_user_cb(void *v1, void *v2, struct cpu_info *ci)
 {
        struct mbstat_cpu *mbsc = v1;
        struct mbstat *mbs = v2;
@@ -419,7 +419,7 @@
 
        memset(mbs, 0, sizeof(*mbs));
        mbs->m_drain = mbstat.m_drain;
-       percpu_foreach(mbstat_percpu, mbstat_conver_to_user_cb, mbs);
+       percpu_foreach(mbstat_percpu, mbstat_convert_to_user_cb, mbs);
 }
 
 static int



Home | Main Index | Thread Index | Old Index