From: Andi Kleen <andi@firstfloor.org>
To: mingo@elte.hu, tglx@linutronix.de, linux-kernel@vger.kernel.org
Subject: [PATCH REPOST] [3/3] Replace macro recursion with more conventional loop
Date: Tue, 11 Mar 2008 02:23:22 +0100 (CET) [thread overview]
Message-ID: <20080311012322.B1E221B41CE@basil.firstfloor.org> (raw)
In-Reply-To: <20080311223.655043226@firstfloor.org>
The early exception handlers are currently set up using a macro
recursion. Replace that with a standard loop.
Noop patch, just a cleanup.
Signed-off-by: Andi Kleen <ak@suse.de>
---
arch/x86/kernel/head_64.S | 15 +++++++--------
1 file changed, 7 insertions(+), 8 deletions(-)
Index: linux/arch/x86/kernel/head_64.S
===================================================================
--- linux.orig/arch/x86/kernel/head_64.S
+++ linux/arch/x86/kernel/head_64.S
@@ -269,18 +269,17 @@ bad_address:
.section ".init.text","ax"
#ifdef CONFIG_EARLY_PRINTK
-.macro early_idt_tramp first, last
- .ifgt \last-\first
- early_idt_tramp \first, \last-1
- .endif
- movl $\last,%esi
+.macro early_idt_tramp i
+ movl $\i,%esi
jmp early_idt_handler
.endm
-
.globl early_idt_handlers
early_idt_handlers:
- .set maxe,NUM_EXCEPTION_VECTORS-1
- early_idt_tramp 0,maxe
+ i = 0
+ .rept NUM_EXCEPTION_VECTORS
+ early_idt_tramp i
+ i = i+1
+ .endr
#endif
ENTRY(early_idt_handler)
next prev parent reply other threads:[~2008-03-11 1:24 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-03-11 1:23 [PATCH REPOST] [0/3] REPOST: Early exception fixes Andi Kleen
2008-03-11 1:23 ` [PATCH REPOST] [1/3] Don't set up early exception handlers for external interrupts Andi Kleen
2008-03-11 1:23 ` [PATCH REPOST] [2/3] Move early exception handlers into init.text Andi Kleen
2008-03-11 1:23 ` Andi Kleen [this message]
2008-03-21 17:07 ` [PATCH REPOST] [3/3] Replace macro recursion with more conventional loop Thomas Gleixner
2008-03-21 17:17 ` Andi Kleen
2008-03-21 17:58 ` Thomas Gleixner
2008-03-21 19:32 ` Thomas Gleixner
2008-03-11 9:46 ` [PATCH REPOST] [0/3] REPOST: Early exception fixes Thomas Gleixner
-- strict thread matches above, loose matches on Subject: below --
2008-03-04 21:13 [PATCH REPOST] [1/3] Don't set up early exception handlers for external interrupts Andi Kleen
2008-03-04 21:13 ` [PATCH REPOST] [3/3] Replace macro recursion with more conventional loop Andi Kleen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20080311012322.B1E221B41CE@basil.firstfloor.org \
--to=andi@firstfloor.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=tglx@linutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome