WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] In 2.6.12-land, do_debug and do_int3 return void. Make s

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] In 2.6.12-land, do_debug and do_int3 return void. Make sure we don't try
From: Xen patchbot -unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Fri, 22 Jul 2005 12:44:10 -0400
Delivery-date: Fri, 22 Jul 2005 16:44:35 +0000
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: xen-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User sos22@xxxxxxxxxxxxxxxxxxxx
# Node ID 7627476544b58da7fd4ba909f2991dfe1f2f4109
# Parent  9038a369268d0552ce659cdea3f38409bbaffffc

In 2.6.12-land, do_debug and do_int3 return void.  Make sure we don't try
to use their return values anywhere.

Signed-off-by: Steven Smith, sos22@xxxxxxxxxx

diff -r 9038a369268d -r 7627476544b5 
linux-2.6-xen-sparse/arch/xen/i386/kernel/entry.S
--- a/linux-2.6-xen-sparse/arch/xen/i386/kernel/entry.S Thu Jul 21 15:50:11 2005
+++ b/linux-2.6-xen-sparse/arch/xen/i386/kernel/entry.S Fri Jul 22 14:25:10 2005
@@ -613,8 +613,6 @@
        xorl %edx,%edx                  # error code 0
        movl %esp,%eax                  # pt_regs pointer
        call do_debug
-       testl %eax,%eax
-       jnz restore_all
        jmp ret_from_exception
 
 #if 0 /* XEN */
@@ -669,8 +667,6 @@
        xorl %edx,%edx          # zero error code
        movl %esp,%eax          # pt_regs pointer
        call do_int3
-       testl %eax,%eax
-       jnz restore_all
        jmp ret_from_exception
 
 ENTRY(overflow)

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] In 2.6.12-land, do_debug and do_int3 return void. Make sure we don't try, Xen patchbot -unstable <=