Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/ofppc splimp -> splvm



details:   https://anonhg.NetBSD.org/src/rev/05e121240e75
branches:  trunk
changeset: 508521:05e121240e75
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Thu Apr 12 19:43:46 2001 +0000

description:
splimp -> splvm

diffstat:

 sys/arch/ofppc/include/cpu.h    |  8 ++++----
 sys/arch/ofppc/ofppc/soft_spl.c |  8 ++++----
 2 files changed, 8 insertions(+), 8 deletions(-)

diffs (65 lines):

diff -r dbc469c0069b -r 05e121240e75 sys/arch/ofppc/include/cpu.h
--- a/sys/arch/ofppc/include/cpu.h      Thu Apr 12 19:41:53 2001 +0000
+++ b/sys/arch/ofppc/include/cpu.h      Thu Apr 12 19:43:46 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: cpu.h,v 1.13 2001/01/14 02:00:41 thorpej Exp $ */
+/*     $NetBSD: cpu.h,v 1.14 2001/04/12 19:43:46 thorpej Exp $ */
 
 /*
  * Copyright (C) 1995-1997 Wolfgang Solfrank.
@@ -60,7 +60,7 @@
        int (*splbio) __P((void));
        int (*splnet) __P((void));
        int (*spltty) __P((void));
-       int (*splimp) __P((void));
+       int (*splvm) __P((void));
        int (*splclock) __P((void));
        int (*spllowersoftclock) __P((void));
        int (*splsoftclock) __P((void));
@@ -80,8 +80,8 @@
 #define        splbio()        ((*machine_interface.splbio)())
 #define        splnet()        ((*machine_interface.splnet)())
 #define        spltty()        ((*machine_interface.spltty)())
-#define        splimp()        ((*machine_interface.splimp)())
-#define        splvm()         ((*machine_interface.splimp)())
+#define        splimp()        ((*machine_interface.splvm)())
+#define        splvm()         ((*machine_interface.splvm)())
 #define        splclock()      ((*machine_interface.splclock)())
 #define        spllowersoftclock() ((*machine_interface.spllowersoftclock)())
 #define        splsoftclock()  ((*machine_interface.splsoftclock)())
diff -r dbc469c0069b -r 05e121240e75 sys/arch/ofppc/ofppc/soft_spl.c
--- a/sys/arch/ofppc/ofppc/soft_spl.c   Thu Apr 12 19:41:53 2001 +0000
+++ b/sys/arch/ofppc/ofppc/soft_spl.c   Thu Apr 12 19:43:46 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: soft_spl.c,v 1.3 2001/01/15 20:19:56 thorpej Exp $     */
+/*     $NetBSD: soft_spl.c,v 1.4 2001/04/12 19:43:47 thorpej Exp $     */
 
 /*
  * Copyright (C) 1997 Wolfgang Solfrank.
@@ -38,7 +38,7 @@
 static int soft_splbio __P((void));
 static int soft_splnet __P((void));
 static int soft_spltty __P((void));
-static int soft_splimp __P((void));
+static int soft_splvm __P((void));
 static int soft_splclock __P((void));
 static int soft_spllowersoftclock __P((void));
 static int soft_splsoftclock __P((void));
@@ -55,7 +55,7 @@
        soft_splbio,
        soft_splnet,
        soft_spltty,
-       soft_splimp,
+       soft_splvm,
        soft_splclock,
        soft_spllowersoftclock,
        soft_splsoftclock,
@@ -181,7 +181,7 @@
 }
 
 static int
-soft_splimp()
+soft_splvm()
 {
        return splraise(SPLIMP | SPLSOFTCLOCK | SPLSOFTNET);
 }



Home | Main Index | Thread Index | Old Index