* [PATCH] x86: fix comment in protected mode header
@ 2008-08-06 13:25 Philipp Kohlbecher
0 siblings, 0 replies; only message in thread
From: Philipp Kohlbecher @ 2008-08-06 13:25 UTC (permalink / raw)
To: H. Peter Anvin; +Cc: linux-kernel, trivial
From: Philipp Kohlbecher <xt28@gmx.de>
Comments in arch/x86/boot/compressed/head_32.S erroneously refer to the
real mode pointer as the second and the heap area as the third argument
to decompress_kernel(). In fact, these have been the first and second
argument, respectively, since v2.6.20.
This patch corrects the comments. It introduces no code changes.
Signed-off-by: Philipp Kohlbecher <xt28@gmx.de>
---
Please CC me, I am not on the list.
arch/x86/boot/compressed/head_32.S | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/arch/x86/boot/compressed/head_32.S
b/arch/x86/boot/compressed/head_32.S
index ba7736c..29c5fbf 100644
--- a/arch/x86/boot/compressed/head_32.S
+++ b/arch/x86/boot/compressed/head_32.S
@@ -137,14 +137,15 @@ relocated:
*/
movl output_len(%ebx), %eax
pushl %eax
+ # push arguments for decompress_kernel:
pushl %ebp # output address
movl input_len(%ebx), %eax
pushl %eax # input_len
leal input_data(%ebx), %eax
pushl %eax # input_data
leal boot_heap(%ebx), %eax
- pushl %eax # heap area as third argument
+ pushl %eax # heap area
- pushl %esi # real mode pointer as second arg
+ pushl %esi # real mode pointer
call decompress_kernel
addl $20, %esp
popl %ecx
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2008-08-06 13:25 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-06 13:25 [PATCH] x86: fix comment in protected mode header Philipp Kohlbecher
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.