Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 25 Mar 2003 14:09:27 -0600
From:      Juli Mallett <jmallett@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   Re: PERFORCE change 27377 for review
Message-ID:  <20030325140927.A77141@FreeBSD.org>
In-Reply-To: <200303252007.h2PK7ZvH094216@repoman.freebsd.org>; from jmallett@FreeBSD.org on Tue, Mar 25, 2003 at 12:07:35PM -0800
References:  <200303252007.h2PK7ZvH094216@repoman.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
* De: Juli Mallett <jmallett@FreeBSD.org> [ Data: 2003-03-25 ]
	[ Subjecte: PERFORCE change 27377 for review ]
> 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.

Oops, hasty submit.  Other changes noted below

> Affected files ...
> 
> .. //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
> 
> ==== //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.
>  

Add suword64 for ELF64 stuff.

> ==== //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>

Missing headers for prototypes of functions used/declared herein.

>  #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");

Make cpu_throw not return.

>  }
>  
>  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)

Catch up with KSE API changes.

>  {
>  }
>  
> 
> ==== //depot/projects/mips/sys/mips/sgimips/machdep_sgimips.c#5 (text+ko) ====
> 
> @@ -27,6 +27,7 @@
>   */
>  
>  #include <sys/types.h>
> +#include <sys/systm.h>

Add missing header for prototype of printf.

>  
>  #include <machine/cpufunc.h>
>  #include <machine/cpuregs.h>

-- 
juli mallett. email: jmallett@freebsd.org; aim: bsdflata; efnet: juli;

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?20030325140927.A77141>