Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 72252
b: refs/heads/master
c: 4614a3a
h: refs/heads/master
v: v3
  • Loading branch information
Jes Sorensen authored and Rusty Russell committed Oct 23, 2007
1 parent f399699 commit 2361555
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 625efab1cd3d4da4634dfe26df6b4005385397e2
refs/heads/master: 4614a3a3b638dfd7a67d0237944f6a76331af61d
4 changes: 2 additions & 2 deletions trunk/drivers/lguest/x86/switcher_32.S
Original file line number Diff line number Diff line change
Expand Up @@ -133,14 +133,14 @@ ENTRY(switch_to_guest)
// The Guest's register page has been mapped
// Writable onto our %esp (stack) --
// We can simply pop off all Guest regs.
popl %eax
popl %ebx
popl %ecx
popl %edx
popl %esi
popl %edi
popl %ebp
popl %gs
popl %eax
popl %fs
popl %ds
popl %es
Expand Down Expand Up @@ -168,14 +168,14 @@ ENTRY(switch_to_guest)
pushl %es; \
pushl %ds; \
pushl %fs; \
pushl %eax; \
pushl %gs; \
pushl %ebp; \
pushl %edi; \
pushl %esi; \
pushl %edx; \
pushl %ecx; \
pushl %ebx; \
pushl %eax; \
/* Our stack and our code are using segments \
* Set in the TSS and IDT \
* Yet if we were to touch data we'd use \
Expand Down
3 changes: 1 addition & 2 deletions trunk/include/asm-x86/lguest.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,9 @@ extern unsigned long default_idt_entries[];
struct lguest_regs
{
/* Manually saved part. */
unsigned long ebx, ecx, edx;
unsigned long eax, ebx, ecx, edx;
unsigned long esi, edi, ebp;
unsigned long gs;
unsigned long eax;
unsigned long fs, ds, es;
unsigned long trapnum, errcode;
/* Trap pushed part */
Expand Down

0 comments on commit 2361555

Please sign in to comment.