Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 25 Mar 2003 12:07:35 -0800 (PST)
From:      Juli Mallett <jmallett@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 27377 for review
Message-ID:  <200303252007.h2PK7ZvH094216@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=27377

Change 27377 by jmallett@jmallett_dalek on 2003/03/25 12:07:03

	Remove defunct pmap_phys_address.

Affected files ...

.. //depot/projects/mips/sys/mips/mips/pmap.c#4 edit
.. //depot/projects/mips/sys/mips/mips/support.S#6 edit
.. //depot/projects/mips/sys/mips/mips/vm_machdep.c#5 edit
.. //depot/projects/mips/sys/mips/sgimips/machdep_sgimips.c#5 edit

Differences ...

==== //depot/projects/mips/sys/mips/mips/pmap.c#4 (text+ko) ====

@@ -183,12 +183,6 @@
 {
 }
 
-vm_offset_t
-pmap_phys_address(int p)
-{
-	return (0);
-}
-
 void
 pmap_pinit(pmap_t pmap)
 {

==== //depot/projects/mips/sys/mips/mips/support.S#6 (text+ko) ====

@@ -153,6 +153,16 @@
 END(suword32)
 
 /*
+ * suword64(9)
+ * <v0>int suword64(<a0>void *addr, <a1>long word)
+ */
+ENTRY(suword64)
+	li	v0, -1
+	jr	ra
+	nop
+END(suword64)
+
+/*
  * Stubs for fetch(9) XXX
      fubyte()    Fetches a byte of data from the user-space address base.
 

==== //depot/projects/mips/sys/mips/mips/vm_machdep.c#5 (text+ko) ====

@@ -27,14 +27,17 @@
  */
 
 #include <sys/param.h>
+#include <sys/systm.h>
 #include <sys/kernel.h>
 #include <sys/lock.h>
 #include <sys/mutex.h>
 #include <sys/time.h>
+#include <sys/proc.h>
 #include <sys/queue.h>
 
 #include <machine/cpufunc.h>
 #include <machine/frame.h>
+#include <machine/md_var.h>
 
 #include <vm/vm.h>
 #include <vm/vm_param.h>
@@ -69,6 +72,7 @@
 void
 cpu_throw(void)
 {
+	panic("cpu_throw: called.\n");
 }
 
 void
@@ -102,7 +106,7 @@
 }
 
 void
-cpu_set_upcall_kse(struct thread *td, struct kse *ke)
+cpu_set_upcall_kse(struct thread *td, struct kse_upcall *ku)
 {
 }
 

==== //depot/projects/mips/sys/mips/sgimips/machdep_sgimips.c#5 (text+ko) ====

@@ -27,6 +27,7 @@
  */
 
 #include <sys/types.h>
+#include <sys/systm.h>
 
 #include <machine/cpufunc.h>
 #include <machine/cpuregs.h>

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200303252007.h2PK7ZvH094216>