- 30 Mar, 2016 24 commits
-
-
4ast authored
Lua Tools for BCC
-
Vicent Marti authored
-
Vicent Marti authored
-
Brenden Blanco authored
Percpu support
-
Vicent Marti authored
-
Vicent Marti authored
-
Vicent Marti authored
-
Vicent Marti authored
-
Vicent Marti authored
-
Vicent Marti authored
-
Vicent Marti authored
-
Vicent Marti authored
-
Vicent Marti authored
-
Vicent Marti authored
-
Vicent Marti authored
-
Vicent Marti authored
-
Vicent Marti authored
-
Vicent Marti authored
-
Vicent Marti authored
-
Vicent Marti authored
-
Vicent Marti authored
-
Zaafar Ahmed authored
-
Zaafar Ahmed authored
changed pc_hash/array to percpu_hash/array table.py optimised/fixup table.py code based on Brenden feedback test_percpu.py Now tests are processor aware and doesn't use sleep added new line at the EOF
-
Brenden Blanco authored
solisten: clean endian conversion hack
-
- 29 Mar, 2016 8 commits
-
-
Zaafar Ahmed authored
-
Zaafar Ahmed authored
-
Zaafar Ahmed authored
Merge remote-tracking branch 'origin/master' into percpu
-
Zaafar Ahmed authored
removed kernel checks.
-
Brenden Blanco authored
Minor endian and debug enhancement
-
Jean-Tiare Le Bigot authored
-
Jean-Tiare Le Bigot authored
-
4ast authored
argdist, trace, and tplist support for USDT probes
-
- 28 Mar, 2016 5 commits
-
-
Jean-Tiare Le Bigot authored
-
Brenden Blanco authored
expose buitin byte swap methods
-
Jean-Tiare Le Bigot authored
-
Sasha Goldshtein authored
These tools now support USDT probes with the 'u:provider:probe' syntax. Probes in a library or process can be listed with 'tplist -l LIB' or 'tplist -p PID'. Probe arguments are also parsed and available in both argdist and trace as arg1, arg2, etc., regardless of the probe attach location. The same USDT probe can be used at multiple locations, which means the attach infra- structure must probe all these locations. argdist and trace register thunk probes at each location, which call a central probe function (which is static inline) with the location id (__loc_id). The central probe function checks the location id to determine how the arguments should be retrieved -- this is location-dependent. Finally, some USDT probes must be enabled first by writing a value to a memory location (this is called a "semaphore"). This value is per-process, so we require a process id for this kind of probes. Along with trace and argdist tool support, this commit also introduces new classes in the bcc module: ProcStat handles pid-wrap detection, whereas USDTReader, USDTProbe, USDTProbeLocation, and USDTArgument are the shared USDT-related infrastructure that enables enumeration, attachment, and argument retrieval for USDT probes.
-
Brenden Blanco authored
Fixed bug around local assignment from char array
-
- 27 Mar, 2016 3 commits
-
-
Sasha Goldshtein authored
-
Brendan Gregg authored
Stack Traces: TNG
-
Vicent Marti authored
The changes for this script are minimal: the inline C probe has been _significantly_ simplified, and should now perform better since the stack walk happens in native code inside the kernel thanks to the BPF_STACK_TRACE table. The output of the tool should be virtually identical, so the man page and included examples have essentially no changes.
-