* [PATCH V3 1/2] Documentation/features: Add na key to arch-support.txt
@ 2015-07-20 10:54 Ananth N Mavinakayanahalli
2015-07-20 10:54 ` [PATCH V3 2/2] kprobes: Mark OPTPROBES na for powerpc Ananth N Mavinakayanahalli
0 siblings, 1 reply; 4+ messages in thread
From: Ananth N Mavinakayanahalli @ 2015-07-20 10:54 UTC (permalink / raw)
To: masami.hiramatsu.pt, mpe, mingo; +Cc: linuxppc-dev, linux-kernel
To be used for features we will not support on a particular architecture.
The git log that adds this needs to provide the justification 'why?'
Signed-off-by: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
---
Documentation/features/arch-support.txt | 1 +
1 file changed, 1 insertion(+)
diff --git a/Documentation/features/arch-support.txt b/Documentation/features/arch-support.txt
index d22a109..c0bc92b 100644
--- a/Documentation/features/arch-support.txt
+++ b/Documentation/features/arch-support.txt
@@ -8,4 +8,5 @@ The meaning of entries in the tables is:
| ok | # feature supported by the architecture
|TODO| # feature not yet supported by the architecture
| .. | # feature cannot be supported by the hardware
+ | na | # feature is not needed by the architecture
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH V3 2/2] kprobes: Mark OPTPROBES na for powerpc
2015-07-20 10:54 [PATCH V3 1/2] Documentation/features: Add na key to arch-support.txt Ananth N Mavinakayanahalli
@ 2015-07-20 10:54 ` Ananth N Mavinakayanahalli
2015-07-20 13:41 ` Segher Boessenkool
0 siblings, 1 reply; 4+ messages in thread
From: Ananth N Mavinakayanahalli @ 2015-07-20 10:54 UTC (permalink / raw)
To: masami.hiramatsu.pt, mpe, mingo; +Cc: linuxppc-dev, linux-kernel
Kprobes uses a breakpoint instruction to trap into execution flow
and the probed instruction is single-stepped from an alternate location.
On some architectures like x86, under certain conditions, the OPTPROBES
feature enables replacing the probed instruction with a jump instead,
resulting in a significant perfomance boost (both the breakpoint and
single-step exception is bypassed for each kprobe).
Powerpc has an in-kernel instruction emulator. Kprobes on powerpc uses
this emulator already and bypasses the single-step exception, with a
lot less complexity. There is a potential gain to be had with a direct
jump instead of a breakpoint, but the caveats need to be traded off
with the complexity it brings in.
For now, mark OPTPROBES na for powerpc.
Signed-off-by: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
---
.../features/debug/optprobes/arch-support.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Documentation/features/debug/optprobes/arch-support.txt b/Documentation/features/debug/optprobes/arch-support.txt
index b8999d8..73662f9 100644
--- a/Documentation/features/debug/optprobes/arch-support.txt
+++ b/Documentation/features/debug/optprobes/arch-support.txt
@@ -27,7 +27,7 @@
| nios2: | TODO |
| openrisc: | TODO |
| parisc: | TODO |
- | powerpc: | TODO |
+ | powerpc: | na |
| s390: | TODO |
| score: | TODO |
| sh: | TODO |
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH V3 2/2] kprobes: Mark OPTPROBES na for powerpc
2015-07-20 10:54 ` [PATCH V3 2/2] kprobes: Mark OPTPROBES na for powerpc Ananth N Mavinakayanahalli
@ 2015-07-20 13:41 ` Segher Boessenkool
2015-07-21 5:50 ` Michael Ellerman
0 siblings, 1 reply; 4+ messages in thread
From: Segher Boessenkool @ 2015-07-20 13:41 UTC (permalink / raw)
To: Ananth N Mavinakayanahalli
Cc: masami.hiramatsu.pt, mpe, mingo, linuxppc-dev, linux-kernel
On Mon, Jul 20, 2015 at 04:24:22PM +0530, Ananth N Mavinakayanahalli wrote:
> There is a potential gain to be had with a direct
> jump instead of a breakpoint, but the caveats need to be traded off
> with the complexity it brings in.
>
> For now, mark OPTPROBES na for powerpc.
If we haven't yet investigated whether this feature is something beneficial
to the powerpc kernel, it should just stay as TODO, not be marked as n/a.
Segher
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH V3 2/2] kprobes: Mark OPTPROBES na for powerpc
2015-07-20 13:41 ` Segher Boessenkool
@ 2015-07-21 5:50 ` Michael Ellerman
0 siblings, 0 replies; 4+ messages in thread
From: Michael Ellerman @ 2015-07-21 5:50 UTC (permalink / raw)
To: Segher Boessenkool
Cc: Ananth N Mavinakayanahalli, masami.hiramatsu.pt, mingo,
linuxppc-dev, linux-kernel
On Mon, 2015-07-20 at 08:41 -0500, Segher Boessenkool wrote:
> On Mon, Jul 20, 2015 at 04:24:22PM +0530, Ananth N Mavinakayanahalli wrote:
> > There is a potential gain to be had with a direct
> > jump instead of a breakpoint, but the caveats need to be traded off
> > with the complexity it brings in.
> >
> > For now, mark OPTPROBES na for powerpc.
>
> If we haven't yet investigated whether this feature is something beneficial
> to the powerpc kernel, it should just stay as TODO, not be marked as n/a.
Yep, agreed. As discussed in the other thread we'll leave this as TODO until we
know it's either not a win or not worth the complexity.
cheers
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-07-21 5:50 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-20 10:54 [PATCH V3 1/2] Documentation/features: Add na key to arch-support.txt Ananth N Mavinakayanahalli
2015-07-20 10:54 ` [PATCH V3 2/2] kprobes: Mark OPTPROBES na for powerpc Ananth N Mavinakayanahalli
2015-07-20 13:41 ` Segher Boessenkool
2015-07-21 5:50 ` Michael Ellerman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).