diff options
author | Andi Kleen <ak@suse.de> | 2007-05-02 19:27:19 +0200 |
---|---|---|
committer | Andi Kleen <andi@basil.nowhere.org> | 2007-05-02 19:27:19 +0200 |
commit | 889f21ce272e38db19c8114a7e0a5793d4590077 (patch) | |
tree | a29dd9164a44bbaa26a454922a78fd7dda638540 /arch/i386/kernel | |
parent | 425001fea782dd072cfec5694b93778eb59a1fd3 (diff) | |
download | talos-op-linux-889f21ce272e38db19c8114a7e0a5793d4590077.tar.gz talos-op-linux-889f21ce272e38db19c8114a7e0a5793d4590077.zip |
[PATCH] i386: fix wrong comment for syscall stack layout
`ret_from_sys_call' label no longer exist and `syscall_exit' label was
introduced instead.
Signed-off-by: Satoru Takeuchi <takeuchi_satoru@jp.fujitsu.com>
Signed-off-by: Andi Kleen <ak@suse.de>
Diffstat (limited to 'arch/i386/kernel')
-rw-r--r-- | arch/i386/kernel/entry.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/i386/kernel/entry.S b/arch/i386/kernel/entry.S index 90ffcdb69838..b1f16ee65e4d 100644 --- a/arch/i386/kernel/entry.S +++ b/arch/i386/kernel/entry.S @@ -15,7 +15,7 @@ * I changed all the .align's to 4 (16 byte alignment), as that's faster * on a 486. * - * Stack layout in 'ret_from_system_call': + * Stack layout in 'syscall_exit': * ptrace needs to have all regs on the stack. * if the order here is changed, it needs to be * updated in fork.c:copy_process, signal.c:do_signal, |