Author: nwhitehorn
Date: Tue Dec  8 05:32:44 2009
New Revision: 200250
URL: http://svn.freebsd.org/changeset/base/200250

Log:
  MFC r198678:
  
  ake procstat -k work on PowerPC by avoiding mistakenly using signed
  compares with a low address (0x1000) and a high address
  (the KVA kernel stack).

Modified:
  stable/8/sys/powerpc/powerpc/stack_machdep.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/xen/xenpci/   (props changed)

Modified: stable/8/sys/powerpc/powerpc/stack_machdep.c
==============================================================================
--- stable/8/sys/powerpc/powerpc/stack_machdep.c        Tue Dec  8 05:27:06 
2009        (r200249)
+++ stable/8/sys/powerpc/powerpc/stack_machdep.c        Tue Dec  8 05:32:44 
2009        (r200250)
@@ -43,7 +43,7 @@ __FBSDID("$FreeBSD$");
 #include <machine/trap.h>
 
 static void
-stack_capture(struct stack *st, register_t frame)
+stack_capture(struct stack *st, vm_offset_t frame)
 {
        vm_offset_t callpc;
 
@@ -76,7 +76,7 @@ stack_capture(struct stack *st, register
 void
 stack_save_td(struct stack *st, struct thread *td)
 {
-       register_t frame;
+       vm_offset_t frame;
 
        if (TD_IS_SWAPPED(td))
                panic("stack_save_td: swapped");
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to