mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* Kprobes - i386 add KPROBE_END macro for .popsection
@ 2006-08-16 13:49 S. P. Prasanna
  2006-08-16 14:48 ` Andi Kleen
  0 siblings, 1 reply; 2+ messages in thread
From: S. P. Prasanna @ 2006-08-16 13:49 UTC (permalink / raw)
  To: linux-kernel
  Cc: Andrew Morton, Jan Beulich, jeremy, Andi Kleen, ananth,
	anil.s.keshavamurthy

This patch add a macro KPROBE_END() to add .popsection after each
KPROBE_ENTRY() usage, as suggested by Jan Beulich. This patch also
replace .popsection with the KPROBE_END() macro.
This will be helpful for the conversions like the recent
 .section -> .pushsection and .previous -> .popsection to be
confined to the header defining these macros, without need to touch
any assembly files.

Signed-off-by: Prasanna S. P. <prasanna@in.ibm.com>


 arch/i386/kernel/entry.S |   10 +++++-----
 include/linux/linkage.h  |    4 ++++
 2 files changed, 9 insertions(+), 5 deletions(-)

diff -puN arch/i386/kernel/entry.S~kprobes-add-popsection-macro-for-assembly-stub arch/i386/kernel/entry.S
--- linux-2.6.18-rc4-mm1/arch/i386/kernel/entry.S~kprobes-add-popsection-macro-for-assembly-stub	2006-08-16 18:27:54.000000000 +0530
+++ linux-2.6.18-rc4-mm1-prasanna/arch/i386/kernel/entry.S	2006-08-16 18:32:53.000000000 +0530
@@ -646,7 +646,7 @@ error_code:
 	call *%edi
 	jmp ret_from_exception
 	CFI_ENDPROC
-.popsection
+KPROBE_END(page_fault)
 
 ENTRY(coprocessor_error)
 	RING0_INT_FRAME
@@ -722,7 +722,7 @@ debug_stack_correct:
 	call do_debug
 	jmp ret_from_exception
 	CFI_ENDPROC
-.popsection
+KPROBE_END(debug)
 
 /*
  * NMI is doubly nasty. It can happen _while_ we're handling
@@ -807,7 +807,7 @@ nmi_16bit_stack:
 .section __ex_table,"a"
 	.align 4
 	.long 1b,iret_exc
-.previous
+KPROBE_END(nmi)
 
 KPROBE_ENTRY(int3)
 	RING0_INT_FRAME
@@ -819,7 +819,7 @@ KPROBE_ENTRY(int3)
 	call do_int3
 	jmp ret_from_exception
 	CFI_ENDPROC
-.popsection
+KPROBE_END(int3)
 
 ENTRY(overflow)
 	RING0_INT_FRAME
@@ -884,7 +884,7 @@ KPROBE_ENTRY(general_protection)
 	CFI_ADJUST_CFA_OFFSET 4
 	jmp error_code
 	CFI_ENDPROC
-.popsection
+KPROBE_END(general_protection)
 
 ENTRY(alignment_check)
 	RING0_EC_FRAME
diff -puN include/linux/linkage.h~kprobes-add-popsection-macro-for-assembly-stub include/linux/linkage.h
--- linux-2.6.18-rc4-mm1/include/linux/linkage.h~kprobes-add-popsection-macro-for-assembly-stub	2006-08-16 18:28:11.000000000 +0530
+++ linux-2.6.18-rc4-mm1-prasanna/include/linux/linkage.h	2006-08-16 18:31:05.000000000 +0530
@@ -43,6 +43,10 @@
   .size name, .-name
 #endif
 
+#define KPROBE_END(name) \
+   END(name); \
+  .popsection
+
 #ifndef ENDPROC
 #define ENDPROC(name) \
   .type name, @function; \

_
-- 
Prasanna S.P.
Linux Technology Center
India Software Labs, IBM Bangalore
Email: prasanna@in.ibm.com
Ph: 91-80-41776329

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: Kprobes - i386 add KPROBE_END macro for .popsection
  2006-08-16 13:49 Kprobes - i386 add KPROBE_END macro for .popsection S. P. Prasanna
@ 2006-08-16 14:48 ` Andi Kleen
  0 siblings, 0 replies; 2+ messages in thread
From: Andi Kleen @ 2006-08-16 14:48 UTC (permalink / raw)
  To: prasanna
  Cc: linux-kernel, Andrew Morton, Jan Beulich, jeremy, ananth,
	anil.s.keshavamurthy

On Wed, 16 Aug 2006 19:19:32 +0530
"S. P. Prasanna" <prasanna@in.ibm.com> wrote:

> This patch add a macro KPROBE_END() to add .popsection after each
> KPROBE_ENTRY() usage, as suggested by Jan Beulich. This patch also
> replace .popsection with the KPROBE_END() macro.
> This will be helpful for the conversions like the recent
>  .section -> .pushsection and .previous -> .popsection to be
> confined to the header defining these macros, without need to touch
> any assembly files.

I merged it with the existing patches. Thanks.

-Andi

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2006-08-16 14:48 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-08-16 13:49 Kprobes - i386 add KPROBE_END macro for .popsection S. P. Prasanna
2006-08-16 14:48 ` Andi Kleen

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