mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* Kernel Probes - Is this the same as dynamic probes?
@ 2002-10-22  3:24 Mike Grundy
  2002-10-22  9:39 ` Suparna Bhattacharya
  2002-10-22 13:32 ` Vamsi Krishna S .
  0 siblings, 2 replies; 3+ messages in thread
From: Mike Grundy @ 2002-10-22  3:24 UTC (permalink / raw)
  To: linux-kernel; +Cc: dprobes

Hi Folks -

Rob posed the question in his merge candidate list. Kprobes is an api
for placing arbitrary break (probes) points in kernel code and provides
for handlers (your function) to execute before and after the probed 
instruction is executed. 

Dynamic probes on the other hand does the same thing ;-)

Vamsi and co. designed kprobes to provide the core of the dprobes
engine: probe point management and insertion, probe point interrupt
handler, and post interrupt clean up (replacing the original
instruction, single stepping it and then putting the probe back) in a
lightweight patch so that it would be more palitable for inclusion in
the kernel.

The next version of dprobes could use the api as well as any module
thrown together to debug a problem (without having to reboot).

Anyway getting back to my quip about dprobes doing the same thing,
dprobes can put probes in kernel or userland code, has a debug engine we
call the dprobes_interpreter that runs probe point handler programs (kind 
of pseudo assembler programs) that can change / record register values,
change / record memory locations, core the process or call LKCD and much
more.

kprobes doesn't have two things (IIRC) it needs to handle userland probe
points, I don't know if this was a planned addition or if Vamsi figured
out a way to handle it within the existing kprobes api.

dprobes has support for i386, s390, s390x, ppc and ppc64. kprobes has
i386 support right now, and after we review and beat upon the code I
posted to the dprobes list tonight, we'll have s390 and s390x support as
well.

Comments welcome.

Thanks
Mike

--
If we blow up, whatever's left of me is kicking your butt!

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

end of thread, other threads:[~2002-10-22 13:12 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-10-22  3:24 Kernel Probes - Is this the same as dynamic probes? Mike Grundy
2002-10-22  9:39 ` Suparna Bhattacharya
2002-10-22 13:32 ` Vamsi Krishna S .

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