Displaying 1 result from an estimated 1 matches for "lfind_opt".
Did you mean:
find_opts
2007 Jun 19
0
[PATCH] x86: fix early option scanning
...18/xen/arch/x86/boot/cmdline.S
===================================================================
--- 2007-06-18.orig/xen/arch/x86/boot/cmdline.S 2007-06-15 14:05:46.000000000 +0200
+++ 2007-06-18/xen/arch/x86/boot/cmdline.S 2007-06-18 14:40:13.000000000 +0200
@@ -119,9 +119,11 @@
ret
.Lfind_option:
+ mov 4(%esp),%eax
push %ebx
- push 4+8(%esp)
- push 4+8(%esp)
+0:
+ pushl 4+8(%esp)
+ push %eax
call .Lstrstr
add $8,%esp
test %eax,%eax
@@ -129,20 +131,20 @@
cmp %eax,4+4(%esp)...