summaryrefslogtreecommitdiffstats
path: root/runtime/probes
Commit message (Collapse)AuthorAgeFilesLines
* SW5106 Remove old map and histogram formatting codeStan Cox2008-05-2951-2185/+0
|
* 2006-09-26 David Smith <dsmith@redhat.com>dsmith2006-09-264-3/+9
| | | | | | * bench/run_bench: Changed 'stpd' references to 'staprun'. * bench/trans_bench: Ditto. * where_func/README: Ditto.
* 2006-01-19 Martin Hunt <hunt@redhat.com>hunt2006-01-191-7/+1
| | | | | * pmap-gen.c (_stp_pmap_get): Fix bug where old data from agg map could be returned after element was deleted.
* 2005-11-08 Martin Hunt <hunt@redhat.com>hunt2005-11-096-83/+97
| | | | | | | | * shellsnoop/shellsnoop.c: Updated to use new map API. * where_func/kprobe_where_funct.c: Ditto. * os_timer/os_timer.c (probe_start): Ditto. * test4/test4.c: Ditto. * scf/scf.c: Ditto.
* 2005-09-08 Martin Hunt <hunt@redhat.com>hunt2005-09-082-2/+6
| | | | | * scf/scf.c (inst_smp_call_function): Add new verbose arg to _stp_stack_sprint() call.
* 2005-08-31 Martin Hunt <hunt@redhat.com>hunt2005-08-312-5/+6
| | | | | * Makefile.template: Remove KTA, KALLSYMS_LOOKUP, and KALLSYMS_LOOKUP_NAME
* *** empty log message ***hunt2005-08-241-5/+19
|
* New benchmark: trans_bench.hunt2005-08-2210-56/+384
|
* 2005-08-19 Martin Hunt <hunt@redhat.com>hunt2005-08-199-61/+16
| | | | | * shellsnoop/shellsnoop.c: Remove STP_NETLINK_ONLY. * stp: Deleted. Use stpd directly.
* 2005-08-01 Martin Hunt <hunt@redhat.com>hunt2005-08-0114-13/+29
| | | | | | | | | | | | | | | | * agg/stat1.c (probe_exit): Remove "static" * agg/count1.c (probe_exit): Ditto. * agg/count2.c (probe_exit): Ditto. * bench/bench_io2.c (probe_exit): Ditto. * bench/bench_io1.c (probe_exit): Ditto. * bench/bench.c (probe_exit): Ditto. * bench/bench_ret.c (probe_exit): Ditto. * bench/bench_multi.c (probe_exit): Ditto. * where_func/kprobe_where_funct.c (probe_exit): Ditto. * test4/test4.c (probe_exit): Ditto. * tasklet/stp_tasklet.c (probe_exit): Ditto. * os_timer/os_timer.c (probe_exit): Ditto. * scf/scf.c (probe_exit): Ditto.
* 2005-07-28 Martin Hunt <hunt@redhat.com>hunt2005-07-287-73/+58
| | | | | * bench/ALL: Chnage to probe sys_getuid() and sys_getgid() because those aren't used by stpd, unlike sys_read() and sys_write().
* Produce some statistics regarding the time (cpu cycles) in the interrupt handlercspiraki2005-07-221-7/+11
|
* Allow clean compile on x86_64 and change output to include process namecspiraki2005-07-211-7/+12
|
* 2005-07-12 Martin Hunt <hunt@redhat.com>hunt2005-07-135-81/+95
| | | | | | | | | | | | * bench/run_bench (do_time): Use ttest instead of "time". Fix processor computation. * bench/ttest.c: Like "time.c" except takes an argument to adjust loop size. Also computes system time + user time instead of real time. Added a warmup loop to get consistent results from cpus which adjust speed based on load. * bench/time.c: Replaced by ttest.c
* Fix relayfs.hunt2005-07-121-3/+7
|
* 2005-07-11 Martin Hunt <hunt@redhat.com>hunt2005-07-1212-292/+78
| | | | | | | | | | * build_probe: Set RELAYFS correctly. * Makefile.template: Fix for RELAYFS. * stp: Moved here. All probes now use this copy. * ALL/stp: source the master copy of stp.
* Fix buildhunt2005-07-081-16/+2
|
* 2005-07-08 Martin Hunt <hunt@redhat.com>hunt2005-07-0814-189/+39
| | | | | | * ALL: Use new runtime.h. Change init_module() to probe_start() and don't do transport calls. Remove MODULE_LICENSE and cleanup_module().
* Fix accidently commented-out line.hunt2005-07-081-1/+1
|
* 2005-07-08 Martin Hunt <hunt@redhat.com>hunt2005-07-081-8/+20
| | | | | | * shellsnoop/shellsnoop.c (init_module): Call _stp_transport_close() if initialization fails. (cleanup_module): Call _stp_transport_cleanup().
* Demonstrate using an asynchronous probe (the os timer)cspiraki2005-07-074-0/+183
|
* 2005-07-01 Martin Hunt <hunt@redhat.com>hunt2005-07-014-51/+86
| | | | | | | | * Makefile.template (debug): New target. * build: Support "debug" target. * build_probe: Ditto.
* *** empty log message ***hunt2005-06-281-10/+15
|
* 2005-06-28 Martin Hunt <hunt@redhat.com>hunt2005-06-282-7/+3
| | | | * bench/bench_ret.c (inst_sys_write_ret): Fix prototype.
* *** empty log message ***hunt2005-06-281-0/+22
|
* 2005-06-28 Martin Hunt <hunt@redhat.com>hunt2005-06-2812-1/+594
| | | | * bench: New probe to do benchmarks.
* 2005-06-23 Martin Hunt <hunt@redhat.com>hunt2005-06-2311-166/+32
| | | | * all probes: MOdified to use latest changes to transport.h.
* 2005-06-21 Martin Hunt <hunt@redhat.com>hunt2005-06-211-0/+2
| | | | | * build_probe (build): Add relay_flush and relay_switch_subbuf to the list of undefines to ignore.
* Added merging/sorting of per-cpu data, transport config/selection by probe, etctrz2005-06-219-50/+78
|
* 2005-06-18 Martin Hunt <hunt@redhat.com>hunt2005-06-1831-170/+583
| | | | | | | | | | | | | | | | * build: Modified to use build_probe. * build_probe: New file. This does the work of building a single probe or set of probes in a directory. * Makefile.template: New file. Template used by build_probe to create Makefiles. * agg: New set of probes to test/demonstrate Counter and Stat aggregations. * all probes modified for latest changes and new build process.
* 2005-06-14 Martin Hunt <hunt@redhat.com>hunt2005-06-141-0/+81
| | | | | | | | | * README: Removed old docs and replaced with simple build instructions. * Makefile: New file. * probes/build: New file.
* Simplify Makefiles.hunt2005-06-015-45/+36
|
* Updated to use new _stp_map_print().hunt2005-05-312-4/+4
|
* New probe.hunt2005-05-314-0/+158
|
* Renamed to shellsnoop.c. Minor fixes.hunt2005-05-193-6/+7
|
* Updated for latest runtime.hunt2005-05-173-60/+31
|
* Updated to work with latest runtime.hunt2005-05-174-69/+43
|
* *** empty log message ***hunt2005-05-174-191/+127
|
* Renamed dtr.c as shellprobe.c. Now build shellprobe.ko.hunt2005-05-174-65/+46
|
* updated to use new transporttrz2005-05-068-38/+178
|
* Update to use relayfs, new I/O.hunt2005-04-0713-63/+289
|
* *** empty log message ***hunt2005-03-293-6/+9
|
* *** empty log message ***hunt2005-03-226-17/+42
|
* Clear the arglist.hunt2005-03-221-0/+1
|
* *** empty log message ***hunt2005-03-2116-0/+576