This commit was generated by cvs2svn to compensate for changes in r366,
authorMarc Fiuczynski <mef@cs.princeton.edu>
Fri, 21 Jan 2005 03:34:18 +0000 (03:34 +0000)
committerMarc Fiuczynski <mef@cs.princeton.edu>
Fri, 21 Jan 2005 03:34:18 +0000 (03:34 +0000)
which included commits to RCS files with non-trunk default branches.

arch/ppc/configs/ads8272_defconfig
arch/ppc/configs/bubinga_defconfig
arch/ppc/configs/rpx8260_defconfig
include/asm-parisc/unwind.h

index 709a180..d1db7d1 100644 (file)
@@ -238,7 +238,6 @@ CONFIG_SYN_COOKIES=y
 # CONFIG_NET_DIVERT is not set
 # CONFIG_ECONET is not set
 # CONFIG_WAN_ROUTER is not set
-# CONFIG_NET_FASTROUTE is not set
 # CONFIG_NET_HW_FLOWCONTROL is not set
 
 #
index ea60105..ebec801 100644 (file)
@@ -234,7 +234,6 @@ CONFIG_SYN_COOKIES=y
 # CONFIG_NET_DIVERT is not set
 # CONFIG_ECONET is not set
 # CONFIG_WAN_ROUTER is not set
-# CONFIG_NET_FASTROUTE is not set
 # CONFIG_NET_HW_FLOWCONTROL is not set
 
 #
index a69e0b4..a9c4544 100644 (file)
@@ -229,7 +229,6 @@ CONFIG_SYN_COOKIES=y
 # CONFIG_NET_DIVERT is not set
 # CONFIG_ECONET is not set
 # CONFIG_WAN_ROUTER is not set
-# CONFIG_NET_FASTROUTE is not set
 # CONFIG_NET_HW_FLOWCONTROL is not set
 
 #
index 5a52cb1..ff9396b 100644 (file)
@@ -50,22 +50,22 @@ struct unwind_table {
 };
 
 struct unwind_frame_info {
-       unsigned long sp;
-       unsigned long ip;
        struct task_struct *t;
        /* Eventually we would like to be able to get at any of the registers
           available; but for now we only try to get the sp and ip for each
           frame */
        /* struct pt_regs regs; */
+       unsigned long sp, ip, rp;
        unsigned long prev_sp, prev_ip;
 };
 
 void * unwind_table_add(const char *name, unsigned long base_addr, 
                 unsigned long gp,
-                 const void *start, const void *end);
+                 void *start, void *end);
 void unwind_frame_init(struct unwind_frame_info *info, struct task_struct *t, 
-                      struct pt_regs *regs);
+                      unsigned long sp, unsigned long ip, unsigned long rp);
 void unwind_frame_init_from_blocked_task(struct unwind_frame_info *info, struct task_struct *t);
+void unwind_frame_init_running(struct unwind_frame_info *info, struct pt_regs *regs);
 int unwind_once(struct unwind_frame_info *info);
 int unwind_to_user(struct unwind_frame_info *info);