From: fche Date: Mon, 17 Mar 2014 16:11:21 +0000 (+0000) Subject: preupdate X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=c3fe24932f5f29f79d01da0ad829a69b0dc792b0;p=systemtap-htdocs.git preupdate --- diff --git a/man/dtrace.1.html b/man/dtrace.1.html deleted file mode 100644 index 627bf674..00000000 --- a/man/dtrace.1.html +++ /dev/null @@ -1,178 +0,0 @@ - -Manpage of DTRACE - -

DTRACE

-Section: User Commands (1)
Index -Return to Main Contents
- -  -

NAME

- -dtrace - Dtrace compatibile user application static probe generation tool. -

-  -

SYNOPSIS

- -

-
- -dtrace -s file [OPTIONS] - -

-  -

DESCRIPTION

- -

-The dtrace command converts probe descriptions defined in file.d -into a probe header -file via the -h option -or a probe description file via the -G option. -

-  -

OPTIONS

- -

- -

-
-h - -
-generate a systemtap header file. -

-

-G - -
-generate a systemtap probe definition object file. -

-

-o file - -
-is the name of the output file. If the -G option is given then -the output file will be called file.o; if the -h option is -given then the output file will be called file.h. -

-

-C - -
-run the cpp preprocessor on the input file when the -h option -is given. -

-

-I file - -
-give this include path to cpp when the -C option is given. -

-

-k - -
-keep temporary files, for example the C language source for the --G option. -

-

--types - -
-generate probe argument typedef information when the -h -option is given. -

-

-  -

EXAMPLES

- -

-Systemtap is source compatible with dtrace user application static -probe support. -Given a file test.d containing: -

- -
-provider sdt_probes 
-{
-  probe test_0 (int type);
-  probe test_1 (struct astruct node);
-};
-struct astruct {int a; int b;};
-
- - -
- -Then the command "dtrace -s test.d -G" will create the -probe definition file test.o and the command "dtrace -stest.d -h" will create the probe header file test.h -Subsequently the application can use the generated macros this way: -

- -

-#include "test.h"
- ...
-struct astruct s;
- ...
-SDT_PROBES_TEST_0(value);
- ...
-if (SDT_PROBES_TEST_1_ENABLED())
-    SDT_PROBES_TEST_1(expensive_function(s));
-
- - -

-  -

SEMAPHORES

- -

-Semaphores are flag variables used by probes as a way of bypassing -potentially costly processing to prepare arguments for probes that may -not even be active. They are automatically set/cleared by systemtap -when a relevant script is running, so the argument setup cost is only -paid when necessary. These semaphore variables are defined within the -the "test.o" object file, which must therefore be linked into an -application. -

- -Sometimes, semaphore variables are not necessary nor helpful. Skipping -them can simplfy the build process, by omitting the extra "test.o" -file. To skip dependence upon semaphore variables, include "<sys/sdt.h>" -within the application before "test.h": -

- -

-#include <sys/sdt.h>
-#include "test.h"
- ...
-struct astruct s;
- ...
-SDT_PROBES_TEST_0(value);
- ...
-if (SDT_PROBES_TEST_1_ENABLED())
-   SDT_PROBES_TEST_1(cheap_function(s));
-
- - -

-In this mode, the ENABLED() test is fixed at 1. -

-  -

SEE ALSO

- -

-stap(1) -stappaths(7) -

-

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
DESCRIPTION
-
OPTIONS
-
EXAMPLES
-
SEMAPHORES
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/error::buildid.7stap.html b/man/error::buildid.7stap.html deleted file mode 100644 index 5b8e59b3..00000000 --- a/man/error::buildid.7stap.html +++ /dev/null @@ -1,109 +0,0 @@ - -Manpage of ERROR::BUILDID - -

ERROR::BUILDID

-Section: Misc. Reference Manual Pages (7stap)
Index -Return to Main Contents
- -  -

NAME

- -error::buildid - build-id verification failures -

- - - -

-

-  -

DESCRIPTION

- -

-Because systemtap's script translation / execution stages may be -executed at different times and places, it is sometimes necessary to -verify certain invariants. One such invariant is that if a script -was informed by translate-time analysis of executables, then those -same executables need to be used at run time. This checking -is done based upon the build-id, a binary hash that modern (post-2007) -compilers/toolchains add as an -NT_GNU_BUILD_ID - -ELF note to object files and executables. -Use the -readelf -n - -command to examine the build-ids of binaries, if you are interested. -

-

- -

-Only scripts are sensitive to executables' build-ids: generally those -that perform deep analysis of the binaries or their debuginfo. For example, -scripts that place -.function or .statement - -probes, or use stack backtrace-related tapset functions may be sensitive. -Other scripts that rely only on -process.mark or kernel.trace - -probes do not require debuginfo. See the DWARF DEBUGINFO section in the -stapprobes(3stap) - -man page. -

-

- -

-During translation, systemtap saves a copy of the relevant files' -build-ids within the compiled modules. At run-time, the modules -compare the saved ones to the actual run-time build-ids in memory. -The error message indicates that they did not match, so the module -will decline placing a probe that was computed based upon obsolete -data. This is important for safety, as placing them at an -inappropriate address could crash the programs. However, this is not -necessarily a fatal error, since probes unrelated to the mismatching -binaries may operate. -

-

- -

-A build-id mismatch could be caused by a few different situations. -The main one is where the executable versions or architecture were -different between the systemtap translation and execution -times/places. For example, one may run a stap-server on a slightly -different version of the OS distribution. The kernel running on the -workstation may be slightly different from the version being targeted -- perhaps due to a pending kernel upgrade leaving different files on -disk versus running in memory. If your OS distribution uses separate -debuginfo packages, the split .IR .debug files may not exactly match -the main binaries. -

-  -

SEE ALSO

- -http://fedoraproject.org/wiki/Releases/FeatureBuildId, - -stap(1), - -stapprobes(3stap), - -warning::debuginfo(7stap), - -error::reporting(7stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:21 GMT, March 20, 2013 - - diff --git a/man/error::dwarf.7stap.html b/man/error::dwarf.7stap.html deleted file mode 100644 index 670d1170..00000000 --- a/man/error::dwarf.7stap.html +++ /dev/null @@ -1,113 +0,0 @@ - -Manpage of ERROR::DWARF - -

ERROR::DWARF

-Section: Misc. Reference Manual Pages (7stap)
Index -Return to Main Contents
- -  -

NAME

- -error::dwarf - dwarf debuginfo quality problems -

-  -

DESCRIPTION

- -

-Systemtap sometimes relies on ELF/DWARF debuginfo for programs being -instrumented to locate places to probe, or context variables to -read/write, just like a symbolic debugger does. Even though -examination of the program's source code may show variables or lines -where probes may be desired, the compiler must preserve information -about them for systemtap (or a debugger such as gdb) to get pinpoint -access to the desired information. If a script requires such data, -but the compiler did not preserve enough of it, pass-2 errors may -result. -

- -Common conditions that trigger these problems include; -

-

-
compiler version
-Prior to GCC version 4.5, debuginfo quality was fairly limited. -Often developers were advised to build their programs with --O0 -g - -flags to disable optimization. GCC version 4.5 introduced -a facility called "variable-tracking assignments" that allows it -to generate high-quality debuginfo under full --O2 -g - -optimization. It is not perfect, but much better than before. -Note that, due to another gcc bug (PR51358) --O0 -g - -can actually sometimes make debuginfo quality worse than for --O2 -g. - -

-

function inlining
-Even modern gcc sometimes has problems with parameters for inlined functions. -It may be necessary to change the script to probe at a slightly different place -(try a -.statement() probe, instead of a .function() probe, - -somewhere a few source lines into the body of the inlined function. Or try -putting a probe at the call site of the inlined function. Or use the -if @defined($var) { ... } - -script language construct to test for the resolvability of the context -variable before using it. -

-

instruction reordering
-Heavily optimized code often smears the instructions from -multiple source statements together. This can leave systemtap with no place -to choose to place a probe, especially a statement probe specified by line -number. Systemtap may advise to try a nearby line number, but these may -not work well either. Consider placing a probe by a statement wildcard -or line number range. -

-

-  -

ALTERNATIVES

- -

-In order to reduce reliance on ELF/DWARF debuginfo, consider the use of -statically compiled-in instrumentation, such as kernel tracepoints, or -<sys/sdt.h> - -userspace markers. Such instrumentation hook sites are relatively low -cost (just one NOP instruction for sdt.h), and nearly guarantee the -availability of parameter data and a reliable probe site, -all without reliance on debuginfo. -

-  -

SEE ALSO

- -stap(1), - -http://dwarfstd.org/, - -http://sourceware.org/systemtap/wiki/TipContextVariables, - -http://gcc.gnu.org/wiki/Var_Tracking_Assignments, - -error::reporting(7stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
ALTERNATIVES
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:21 GMT, March 20, 2013 - - diff --git a/man/error::fault.7stap.html b/man/error::fault.7stap.html deleted file mode 100644 index 2997f93a..00000000 --- a/man/error::fault.7stap.html +++ /dev/null @@ -1,61 +0,0 @@ - -Manpage of ERROR::FAULT - -

ERROR::FAULT

-Section: Misc. Reference Manual Pages (7stap)
Index -Return to Main Contents
- -  -

NAME

- -error::fault - memory access faults -

- - - -

-

-  -

DESCRIPTION

- -

-Read or write faults can occur during the operation of a systemtap -script, if the script causes dereferencing of a pointer that turns out -to be invalid. This can be caused by using context variables that do -not happen to have valid values, or perhaps references to memory that -is unavailable at that moment due to paging. -

- -These fault conditions are benign because they are caught by the -systemtap runtime, which cleanly terminates the script. If quick -termination is not desired, consider using the ---suppress-handler-errors or -DMAXERRORS=NN - -stap options, or wrapping relevant parts of the probe handlers in a -try/catch - -block. -

-  -

SEE ALSO

- -stap(1), - -error::reporting(7stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:21 GMT, March 20, 2013 - - diff --git a/man/error::inode-uprobes.7stap.html b/man/error::inode-uprobes.7stap.html deleted file mode 100644 index b2fe94ba..00000000 --- a/man/error::inode-uprobes.7stap.html +++ /dev/null @@ -1,66 +0,0 @@ - -Manpage of ERROR::INODE-UPROBES - -

ERROR::INODE-UPROBES

-Section: Misc. Reference Manual Pages (7stap)
Index -Return to Main Contents
- -  -

NAME

- -error::inode-uprobes - limitations of inode-uprobes -

-  -

DESCRIPTION

- -

-The uprobes kernel facility introduced in Linux 3.5 aims to supplant the -earlier out-of-tree utrace patch to enable user-space probing. There -have been some functional limitations in inode-uprobes that preclude -some systemtap constructs. Over time, we hope these regressions will -be corrected. -

-

-
function.return probes
-process.function().return - -probes require "return-probes" or "uretprobes" functionality, that has not -been implemented yet in the kernel. Until it is re-added, consider using -process.statement() - -probes placed on source line numbers at the function's return statements. -

-

function.statement.absolute probes
-In utrace-equipped kernels, systemtap made it possible to address probes -by literal addresses in the process virtual memory address space. The -new inode-uprobes does not have this capability. -

-

-

-  -

SEE ALSO

- -stap(1), - -http://kernelnewbies.org/Linux_3.5, - -http://sourceware.org/systemtap/wiki/utrace, - -error::reporting(7stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:21 GMT, March 20, 2013 - - diff --git a/man/error::pass1.7stap.html b/man/error::pass1.7stap.html deleted file mode 100644 index 9c3a3697..00000000 --- a/man/error::pass1.7stap.html +++ /dev/null @@ -1,92 +0,0 @@ - -Manpage of ERROR::PASS1 - -

ERROR::PASS1

-Section: Misc. Reference Manual Pages (7stap)
Index -Return to Main Contents
- -  -

NAME

- -error::pass1 - systemtap pass-1 errors -

-  -

DESCRIPTION Errors that occur during pass 1 (parsing) usually mean

- -a basic syntax error of some sort occurred in the systemtap script. -There are several classes of problems possible: -

-

-
plain syntax error
-The systemtap script parser detects a large variety of errors, such as -missing operands, bad punctuation. It tries to list what kinds of tokens -it was expecting to see, and will show the region of the source code with -the problem. Please review the -stap(1) - -man page and/or the tutorial, to correct the script's syntax. -

-

grammar ambiguities
-There is at least one known ambiguity in the systemtap grammar. It relates -to the optionality of -; - -(semicolon) separators between statements, and the -++ and -- - -increment/decrement operators. If the parser indicates an error, consider -adding some explicit -; - -separators between nearby statements and try again. -

-

missing command line arguments
-A systemtap script that uses the -$N and @N - -constructs for substituting in command-line options may fail if not -enough options were given on the stap command line. -

-

compatibility changes
-Some versions of systemtap have changed the language incompatibly, -for example by adding the try/catch keywords for exception handling. -In such cases, rerun systemtap with the ---compatibility=VERSION - -option, substituting the last systemtap version where your script -was known to work. You may also check the release-history NEWS file -for compatibility changes. -

-

-  -

GATHERING MORE INFORMATION

- -Increasing the verbosity of pass-1 with an option such as ---vp 1 - -can help pinpoint the problem. -

-  -

SEE ALSO

- -stap(1), - -error::reporting(7stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION Errors that occur during pass 1 (parsing) usually mean
-
GATHERING MORE INFORMATION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:21 GMT, March 20, 2013 - - diff --git a/man/error::pass2.7stap.html b/man/error::pass2.7stap.html deleted file mode 100644 index daaead9a..00000000 --- a/man/error::pass2.7stap.html +++ /dev/null @@ -1,99 +0,0 @@ - -Manpage of ERROR::PASS2 - -

ERROR::PASS2

-Section: Misc. Reference Manual Pages (7stap)
Index -Return to Main Contents
- -  -

NAME

- -error::pass2 - systemtap pass-2 errors -

-  -

DESCRIPTION

- -Errors that occur during pass 2 (elaboration) can have a variety of causes. -Common types include: -

-

-
unavailable probe points
-Some types of probe points are only available on certain system versions, -architectures, and configurations. For example, user-space -(process.) - -probes may require utrace or uprobes capability in the kernel for this -architecture. Debugging or symbol data may be absent for -.function or .statement - -probes. Use the -stap -L - -option to list available probe points. Use the -! or ? - -probe point suffixes to denote optional / preferred-alternatives, to let -the working parts of a script continue. Check for availability of debuginfo. -

-

typos
-There might be a spelling error in the probe point name ("sycsall" vs. -"syscall"). Wildcard probes may not find a match at all in the -tapsets. Recheck the names. -

-

unavailable context variables
-Systemtap scripts often wish to refer to variables from the context of the -probed programs using -$variable - -notation. These variables may not always be available, depending on versions -of the compiler, debugging/optimization flags used, architecture, etc. Use -the -@defined() - -expression to test for the resolvability of a context variable expression. -Consider using the -stap --skip-badvars - -option to silently replace misbehaving context variable expressions with zero. -

-

-  -

GATHERING MORE INFORMATION

- -Increasing the verbosity of pass-2 with an option such as ---vp 02 - -can help pinpoint the problem. -

-  -

SEE ALSO

- -stap(1), - -stapprobes(3stap), - -probe::*(3stap), - -error::dwarf(7stap), - -warning::debuginfo(7stap), - -error::reporting(7stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
GATHERING MORE INFORMATION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:21 GMT, March 20, 2013 - - diff --git a/man/error::pass3.7stap.html b/man/error::pass3.7stap.html deleted file mode 100644 index 469ec077..00000000 --- a/man/error::pass3.7stap.html +++ /dev/null @@ -1,63 +0,0 @@ - -Manpage of ERROR::PASS3 - -

ERROR::PASS3

-Section: Misc. Reference Manual Pages (7stap)
Index -Return to Main Contents
- -  -

NAME

- -error::pass3 - systemtap pass-3 errors -

-  -

DESCRIPTION

- -Errors during pass 3 (translation) occur only rarely. -

-

-
unsupported code generation
-Some script language constructs are not available in every -probe point. For example, the -@perf() - -counter-reading function may only be used in -process.* - -probes. -

-

-  -

GATHERING MORE INFORMATION

- -Increasing the verbosity of pass-3 with an option such as ---vp 002 - -may help pinpoint the problem. -

-  -

SEE ALSO

- -stap(1), - -stapprobes(3stap) - -error::reporting(7stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
GATHERING MORE INFORMATION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:21 GMT, March 20, 2013 - - diff --git a/man/error::pass4.7stap.html b/man/error::pass4.7stap.html deleted file mode 100644 index f99f0e04..00000000 --- a/man/error::pass4.7stap.html +++ /dev/null @@ -1,85 +0,0 @@ - -Manpage of ERROR::PASS4 - -

ERROR::PASS4

-Section: Misc. Reference Manual Pages (7stap)
Index -Return to Main Contents
- -  -

NAME

- -error::pass4 - systemtap pass-4 errors -

-  -

DESCRIPTION

- -Errors that occur during pass 4 (compilation) have generally only a few -causes: -

-

-
kernel or OS version changes
-The systemtap runtime and embedded-C fragments in the tapset library -are designed to be portable across a wide range of OS versions. However, -incompatibilities can occur when some OS changes occur, such as kernel -modifications that change functions, types, or macros referenced -by systemtap. Upstream builds of systemtap are often quickly updated to -include relevant fixes, so try getting or making an updated build. -If the issue persists, report the problem to the systemtap developers. -

-

buggy embedded-C code
-Embedded-C code in your own guru-mode script cannot be checked by systemtap, -and is passed through verbatim to the compiler. Errors in such snippets of -code may be found during the pass-4 compiler invocation, though may be hard -to identify by the compiler errors. -

-

incompatible embedded-C code
-The interface standards between systemtap-generated code and embedded-C code -occasionally change. For example, before version 1.8, arguments were passed -using macros -THIS->foo and THIS->__retvalue - -but from version 1.8 onward, using -STAP_ARG_foo and STAP_RETVALUE. - -Adjust your embedded-C code to current standards, or use the -stap --compatible=VERSION - -option to make systemtap use a different one. -

-

-  -

GATHERING MORE INFORMATION

- -It may be necessary to run systemtap with --k or -p3 - -to examine the generated C code. Increasing the verbosity of pass-4 -with an option such as ---vp 0001 - -can also help pinpoint the problem. -

-  -

SEE ALSO

- -stap(1), - -error::reporting(7stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
GATHERING MORE INFORMATION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:21 GMT, March 20, 2013 - - diff --git a/man/error::pass5.7stap.html b/man/error::pass5.7stap.html deleted file mode 100644 index 8a21e9ca..00000000 --- a/man/error::pass5.7stap.html +++ /dev/null @@ -1,131 +0,0 @@ - -Manpage of ERROR::PASS5 - -

ERROR::PASS5

-Section: Misc. Reference Manual Pages (7stap)
Index -Return to Main Contents
- -  -

NAME

- -error::pass5 - systemtap pass-5 errors -

-  -

DESCRIPTION

- -Errors that occur during pass 5 (execution) can have a variety of causes. -

-

-
exceptional events during script execution
-The systemtap translator and runtime include numerous error checks -that aim to protect the systems and the users from mistakes or -transient conditions. The script may deliberately call the -error() - -tapset function to signal a problem. Some memory needed for -accessing -$context - -variables may be temporarily unavailable. Consider using the -try/catch - -construct to wrap script fragments in exception-handling code. -Consider using the -stap --suppress-handler-errors - -or -stap --skip-badvars - -option. -

-

resource exhaustion
-One of several types of space or time resource limits may be -exceeded by the script, including system overload, too many tuples -to be stored in an array, etc. Some of the error messages identify -the constraint by macro name, which may be individually raised. -Consider using the -stap --suppress-handler-errors - -option. Extend or disable resource limits using the -stap -DLIMIT=NNNN - -option. - -

-

remote execution server problems
-If you use the -stap --remote - -option to direct a systemtap script to be executed somewhere else, -ensure that an SSH connection may be made to the remote host, and -that it has the current systemtap runtime installed & available. -

-

installation/permission problems
-It is possible that your installation of systemtap was not correctly -installed. For example, the -/usr/bin/staprun - -program may lack the necessary setuid permissions, or your invoking -userid might not have sufficient privileges (root, or -stapusr - -and related group memberships). Environment -variables may interfere with locating -/usr/libexec/.../stapio. - -

-

errors from target program
-The program invoked by the -stap -c CMD - -option may exit with a non-zero code. -

-

uncaught exceptions in the target program
-When using ---runtime=dyninst - -you may encounter an issue where the target program aborts with a -message like "terminate called after throwing an instance -of 'foo_exception'". This is unfortunately a limitation of Dyninst, -which sometimes prevents exceptions from properly unwinding through -instrumented code. -

-

-

-  -

GATHERING MORE INFORMATION

- -Increasing the verbosity of pass-5 -with an option such as ---vp 00001 - -can help pinpoint the problem. -

-  -

SEE ALSO

- -stap(1), - -http://sourceware.org/systemtap/wiki/TipExhaustedResourceErrors, - -error::fault(7stap), - -error::reporting(7stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
GATHERING MORE INFORMATION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:21 GMT, March 20, 2013 - - diff --git a/man/error::process-tracking.7stap.html b/man/error::process-tracking.7stap.html deleted file mode 100644 index b5b73747..00000000 --- a/man/error::process-tracking.7stap.html +++ /dev/null @@ -1,116 +0,0 @@ - -Manpage of WARNING::PROCESS-TRACKING - -

WARNING::PROCESS-TRACKING

-Section: Misc. Reference Manual Pages (7stap)
Index -Return to Main Contents
- -  -

NAME

- -warning::process-tracking - process-tracking facilities are not available -

- - - -

-  -

DESCRIPTION

- -These errors and warnings occur when the kernel systemtap is running on -lacks support for user-space process tracking facilities. -

-  -

COMPILE-TIME ERROR

- -The error - -
- -
-
-ERROR: user-space process-tracking facilities not available
-
-
- -
- - -occurs when the script contains a uprobes probe point that the current -kernel does not support. -

-  -

RUNTIME WARNINGS

- -

- -The warning, - -
- -

-
-WARNING: process-tracking facilities are not available in this kernel
-
-
- -
- - -and the related message, - -
- -
-
-WARNING: cannot track target in process '...'
-
-
- -
- - -both occur at runtime when running on a kernel (generally an older -version) that has neither utrace functionality nor an acceptable -substitute. -

- -The script should still load and run. However, probes that rely on -availability of process-tracking facilities will silently fail to -trigger. -

-  -

RESOLVING THE ISSUE

- -If process-tracking functionality is absolutely necessary, either a -kernel version newer than 3.5 is needed, or an older version must be -compiled with appropriate utrace patches. -

-  -

SEE ALSO

- -stap(1), - -error::reporting(7stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
-
COMPILE-TIME ERROR
-
RUNTIME WARNINGS
-
-
RESOLVING THE ISSUE
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:21 GMT, March 20, 2013 - - diff --git a/man/error::reporting.7stap.html b/man/error::reporting.7stap.html deleted file mode 100644 index d7595e81..00000000 --- a/man/error::reporting.7stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of ERROR::REPORTING - -

ERROR::REPORTING

-Section: Misc. Reference Manual Pages (7stap)
Index -Return to Main Contents
- -  -

NAME

- -error::reporting - systemtap error reporting -

-

-  -

COMMERCIAL SUPPORT

- -If you have a commercial support agreement with your OS distributor -that covers this software, we recommend getting your money's worth -by using their problem reporting systems first. -

-  -

COMMUNITY SUPPORT

- -Systemtap community & volunteer developers are eager to hear problem -reports, so they can improve the software. Various ways to contact them -include: -

-

-
public mailing list
-systemtap@sourceware.org -

-

public IRC
-#systemtap on irc.freenode.net, use fpaste.org for snippets of text -

-

public bugzilla
-http://sourceware.org/bugzilla/ -

-

-  -

INFORMATION TO COLLECT

- -In general, please include information about your platform, -systemtap version, your scripts & custom tapsets, systemtap -invocation, actual behavior / errors seen, and expected behavior. -The -stap-report - -script collects useful system/kernel information that helps describe -the OS environment; please include its output. -

-  -

SEE ALSO

- -stap(1), - -http://sourceware.org/systemtap/wiki/ - -

-

- -


- 

Index

-
-
NAME
-
COMMERCIAL SUPPORT
-
COMMUNITY SUPPORT
-
INFORMATION TO COLLECT
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:21 GMT, March 20, 2013 - - diff --git a/man/function::HZ.3stap.html b/man/function::HZ.3stap.html deleted file mode 100644 index 04dabe6a..00000000 --- a/man/function::HZ.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::HZ - -

FUNCTION::HZ

-Section: Timestamp Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::HZ - Kernel HZ -  -

SYNOPSIS

- -

-

-    HZ:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns the value of the kernel HZ macro, which corresponds to the rate of increase of the jiffies value. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::MAJOR.3stap.html b/man/function::MAJOR.3stap.html deleted file mode 100644 index 8a4e83b2..00000000 --- a/man/function::MAJOR.3stap.html +++ /dev/null @@ -1,55 +0,0 @@ - -Manpage of FUNCTION::MAJOR - -

FUNCTION::MAJOR

-Section: Device Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::MAJOR - Extract major device number from a kernel device number (kdev_t) -  -

SYNOPSIS

- -

-

-    MAJOR:long(dev:long)
-
- -  -

ARGUMENTS

- -

- -dev -

-Kernel device number to query. -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::MINOR.3stap.html b/man/function::MINOR.3stap.html deleted file mode 100644 index 7aa196b9..00000000 --- a/man/function::MINOR.3stap.html +++ /dev/null @@ -1,55 +0,0 @@ - -Manpage of FUNCTION::MINOR - -

FUNCTION::MINOR

-Section: Device Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::MINOR - Extract minor device number from a kernel device number (kdev_t) -  -

SYNOPSIS

- -

-

-    MINOR:long(dev:long)
-
- -  -

ARGUMENTS

- -

- -dev -

-Kernel device number to query. -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::MKDEV.3stap.html b/man/function::MKDEV.3stap.html deleted file mode 100644 index a5f67c8b..00000000 --- a/man/function::MKDEV.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::MKDEV - -

FUNCTION::MKDEV

-Section: Device Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::MKDEV - Creates a value that can be compared to a kernel device number (kdev_t) -  -

SYNOPSIS

- -

-

-    MKDEV:long(major:long,minor:long)
-
- -  -

ARGUMENTS

- -

- -major -

-Intended major device number. -
- -

- -minor -

-Intended minor device number. -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::addr.3stap.html b/man/function::addr.3stap.html deleted file mode 100644 index a6ef54ef..00000000 --- a/man/function::addr.3stap.html +++ /dev/null @@ -1,61 +0,0 @@ - -Manpage of FUNCTION::ADDR - -

FUNCTION::ADDR

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::addr - Address of the current probe point. -  -

SYNOPSIS

- -

-

-    addr:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -Returns the instruction pointer from the current probe's register state. Not all probe types have registers though, in which case zero is returned. The returned address is suitable for use with functions like -symname -and -symdata. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::addr_to_node.3stap.html b/man/function::addr_to_node.3stap.html deleted file mode 100644 index 788f38f0..00000000 --- a/man/function::addr_to_node.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::ADDR_TO_NO - -

FUNCTION::ADDR_TO_NO

-Section: Memory Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::addr_to_node - Returns which node a given address belongs to within a NUMA system -  -

SYNOPSIS

- -

-

-    addr_to_node:long(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-the address of the faulting memory access -
- -  -

DESCRIPTION

- -

- -This function accepts an address, and returns the node that the given address belongs to in a NUMA system. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::ansi_clear_screen.3stap.html b/man/function::ansi_clear_screen.3stap.html deleted file mode 100644 index 1fd31948..00000000 --- a/man/function::ansi_clear_screen.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::ANSI_CLEAR - -

FUNCTION::ANSI_CLEAR

-Section: Utility functions for using an (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::ansi_clear_screen - Move cursor to top left and clear screen. -  -

SYNOPSIS

- -

-

-    ansi_clear_screen()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -Sends ansi code for moving cursor to top left and then the ansi code for clearing the screen from the cursor position to the end. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::ansi_cursor_hide.3stap.html b/man/function::ansi_cursor_hide.3stap.html deleted file mode 100644 index b821b832..00000000 --- a/man/function::ansi_cursor_hide.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::ANSI_CURSO - -

FUNCTION::ANSI_CURSO

-Section: Utility functions for using an (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::ansi_cursor_hide - Hides the cursor. -  -

SYNOPSIS

- -

-

-    ansi_cursor_hide()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -Sends ansi code for hiding the cursor. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::ansi_cursor_move.3stap.html b/man/function::ansi_cursor_move.3stap.html deleted file mode 100644 index 02874db4..00000000 --- a/man/function::ansi_cursor_move.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of FUNCTION::ANSI_CURSO - -

FUNCTION::ANSI_CURSO

-Section: Utility functions for using an (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::ansi_cursor_move - Move cursor to new coordinates. -  -

SYNOPSIS

- -

-

-    ansi_cursor_move(x:long,y:long)
-
- -  -

ARGUMENTS

- -

- -x -

-Row to move the cursor to. -
- -

- -y -

-Colomn to move the cursor to. -
- -  -

DESCRIPTION

- -

- -Sends ansi code for positioning the cursor at row x and column y. Coordinates start at one, (1,1) is the top-left corner. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::ansi_cursor_restore.3stap.html b/man/function::ansi_cursor_restore.3stap.html deleted file mode 100644 index 3c82bec9..00000000 --- a/man/function::ansi_cursor_restore.3stap.html +++ /dev/null @@ -1,59 +0,0 @@ - -Manpage of FUNCTION::ANSI_CURSO - -

FUNCTION::ANSI_CURSO

-Section: Utility functions for using an (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::ansi_cursor_restore - Restores a previously saved cursor position. -  -

SYNOPSIS

- -

-

-    ansi_cursor_restore()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -Sends ansi code for restoring the current cursor position previously saved with -ansi_cursor_save. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::ansi_cursor_save.3stap.html b/man/function::ansi_cursor_save.3stap.html deleted file mode 100644 index 4f30bb60..00000000 --- a/man/function::ansi_cursor_save.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::ANSI_CURSO - -

FUNCTION::ANSI_CURSO

-Section: Utility functions for using an (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::ansi_cursor_save - Saves the cursor position. -  -

SYNOPSIS

- -

-

-    ansi_cursor_save()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -Sends ansi code for saving the current cursor position. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::ansi_cursor_show.3stap.html b/man/function::ansi_cursor_show.3stap.html deleted file mode 100644 index 52176c26..00000000 --- a/man/function::ansi_cursor_show.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::ANSI_CURSO - -

FUNCTION::ANSI_CURSO

-Section: Utility functions for using an (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::ansi_cursor_show - Shows the cursor. -  -

SYNOPSIS

- -

-

-    ansi_cursor_show()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -Sends ansi code for showing the cursor. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::ansi_new_line.3stap.html b/man/function::ansi_new_line.3stap.html deleted file mode 100644 index acb0686a..00000000 --- a/man/function::ansi_new_line.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::ANSI_NEW_L - -

FUNCTION::ANSI_NEW_L

-Section: Utility functions for using an (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::ansi_new_line - Move cursor to new line. -  -

SYNOPSIS

- -

-

-    ansi_new_line()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -Sends ansi code new line. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::ansi_reset_color.3stap.html b/man/function::ansi_reset_color.3stap.html deleted file mode 100644 index fcc0485e..00000000 --- a/man/function::ansi_reset_color.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::ANSI_RESET - -

FUNCTION::ANSI_RESET

-Section: Utility functions for using an (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::ansi_reset_color - Resets Select Graphic Rendition mode. -  -

SYNOPSIS

- -

-

-    ansi_reset_color()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -Sends ansi code to reset foreground, background and color attribute to default values. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::ansi_set_color.3stap.html b/man/function::ansi_set_color.3stap.html deleted file mode 100644 index 0a04c5c4..00000000 --- a/man/function::ansi_set_color.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::ANSI_SET_C - -

FUNCTION::ANSI_SET_C

-Section: Utility functions for using an (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::ansi_set_color - Set the ansi Select Graphic Rendition mode. -  -

SYNOPSIS

- -

-

-    ansi_set_color(fg:long)
-
- -  -

ARGUMENTS

- -

- -fg -

-Foreground color to set. -
- -  -

DESCRIPTION

- -

- -Sends ansi code for Select Graphic Rendition mode for the given forground color. Black (30), Blue (34), Green (32), Cyan (36), Red (31), Purple (35), Brown (33), Light Gray (37). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::ansi_set_color2.3stap.html b/man/function::ansi_set_color2.3stap.html deleted file mode 100644 index dfd67c7b..00000000 --- a/man/function::ansi_set_color2.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of FUNCTION::ANSI_SET_C - -

FUNCTION::ANSI_SET_C

-Section: Utility functions for using an (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::ansi_set_color2 - Set the ansi Select Graphic Rendition mode. -  -

SYNOPSIS

- -

-

-    ansi_set_color2(fg:long,bg:long)
-
- -  -

ARGUMENTS

- -

- -fg -

-Foreground color to set. -
- -

- -bg -

-Background color to set. -
- -  -

DESCRIPTION

- -

- -Sends ansi code for Select Graphic Rendition mode for the given forground color, Black (30), Blue (34), Green (32), Cyan (36), Red (31), Purple (35), Brown (33), Light Gray (37) and the given background color, Black (40), Red (41), Green (42), Yellow (43), Blue (44), Magenta (45), Cyan (46), White (47). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::ansi_set_color3.3stap.html b/man/function::ansi_set_color3.3stap.html deleted file mode 100644 index f0e21388..00000000 --- a/man/function::ansi_set_color3.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of FUNCTION::ANSI_SET_C - -

FUNCTION::ANSI_SET_C

-Section: Utility functions for using an (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::ansi_set_color3 - Set the ansi Select Graphic Rendition mode. -  -

SYNOPSIS

- -

-

-    ansi_set_color3(fg:long,bg:long,attr:long)
-
- -  -

ARGUMENTS

- -

- -fg -

-Foreground color to set. -
- -

- -bg -

-Background color to set. -
- -

- -attr -

-Color attribute to set. -
- -  -

DESCRIPTION

- -

- -Sends ansi code for Select Graphic Rendition mode for the given forground color, Black (30), Blue (34), Green (32), Cyan (36), Red (31), Purple (35), Brown (33), Light Gray (37), the given background color, Black (40), Red (41), Green (42), Yellow (43), Blue (44), Magenta (45), Cyan (46), White (47) and the color attribute All attributes off (0), Intensity Bold (1), Underline Single (4), Blink Slow (5), Blink Rapid (6), Image Negative (7). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::asmlinkage.3stap.html b/man/function::asmlinkage.3stap.html deleted file mode 100644 index bcc75860..00000000 --- a/man/function::asmlinkage.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::ASMLINKAGE - -

FUNCTION::ASMLINKAGE

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::asmlinkage - Mark function as declared asmlinkage -  -

SYNOPSIS

- -

-

-    asmlinkage()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -Call this function before accessing arguments using the *_arg functions if the probed kernel function was declared asmlinkage in the source. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::atomic_long_read.3stap.html b/man/function::atomic_long_read.3stap.html deleted file mode 100644 index 1185ba89..00000000 --- a/man/function::atomic_long_read.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::ATOMIC_LON - -

FUNCTION::ATOMIC_LON

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::atomic_long_read - Retrieves an atomic long variable from kernel memory -  -

SYNOPSIS

- -

-

-    atomic_long_read:long(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-pointer to atomic long variable -
- -  -

DESCRIPTION

- -

- -Safely perform the read of an atomic long variable. This will be a NOP on kernels that do not have ATOMIC_LONG_INIT set on the kernel config. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::atomic_read.3stap.html b/man/function::atomic_read.3stap.html deleted file mode 100644 index f77bb23b..00000000 --- a/man/function::atomic_read.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::ATOMIC_REA - -

FUNCTION::ATOMIC_REA

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::atomic_read - Retrieves an atomic variable from kernel memory -  -

SYNOPSIS

- -

-

-    atomic_read:long(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-pointer to atomic variable -
- -  -

DESCRIPTION

- -

- -Safely perform the read of an atomic variable. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::backtrace.3stap.html b/man/function::backtrace.3stap.html deleted file mode 100644 index a82f2c56..00000000 --- a/man/function::backtrace.3stap.html +++ /dev/null @@ -1,60 +0,0 @@ - -Manpage of FUNCTION::BACKTRACE - -

FUNCTION::BACKTRACE

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::backtrace - Hex backtrace of current kernel stack -  -

SYNOPSIS

- -

-

-    backtrace:string()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns a string of hex addresses that are a backtrace of the kernel stack. Output may be truncated as per maximum string length (MAXSTRINGLEN). See -ubacktrace -for user-space backtrace. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::bytes_to_string.3stap.html b/man/function::bytes_to_string.3stap.html deleted file mode 100644 index c0b79d37..00000000 --- a/man/function::bytes_to_string.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::BYTES_TO_S - -

FUNCTION::BYTES_TO_S

-Section: Memory Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::bytes_to_string - Human readable string for given bytes -  -

SYNOPSIS

- -

-

-    bytes_to_string:string(bytes:long)
-
- -  -

ARGUMENTS

- -

- -bytes -

-Number of bytes to translate. -
- -  -

DESCRIPTION

- -

- -Returns a string representing the number of bytes (up to 1024 bytes), the number of kilobytes (when less than 1024K) postfixed by 'K', the number of megabytes (when less than 1024M) postfixed by 'M' or the number of gigabytes postfixed by 'G'. If representing K, M or G, and the number is amount is less than 100, it includes a '.' plus the remainer. The returned string will be 5 characters wide (padding with whitespace at the front) unless negative or representing more than 9999G bytes. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::caller.3stap.html b/man/function::caller.3stap.html deleted file mode 100644 index 63fadcb3..00000000 --- a/man/function::caller.3stap.html +++ /dev/null @@ -1,59 +0,0 @@ - -Manpage of FUNCTION::CALLER - -

FUNCTION::CALLER

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::caller - Return name and address of calling function -  -

SYNOPSIS

- -

-

-    caller:string()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns the address and name of the calling function. This is equivalent to calling: sprintf(lqs 0xxrq, symname(caller_addr), -caller_addr) -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::caller_addr.3stap.html b/man/function::caller_addr.3stap.html deleted file mode 100644 index b17c2b99..00000000 --- a/man/function::caller_addr.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::CALLER_ADD - -

FUNCTION::CALLER_ADD

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::caller_addr - Return caller address -  -

SYNOPSIS

- -

-

-    caller_addr:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns the address of the calling function. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::callers.3stap.html b/man/function::callers.3stap.html deleted file mode 100644 index dea911e2..00000000 --- a/man/function::callers.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::CALLERS - -

FUNCTION::CALLERS

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::callers - Return first n elements of kernel stack backtrace -  -

SYNOPSIS

- -

-

-    callers:string(n:long)
-
- -  -

ARGUMENTS

- -

- -n -

-number of levels to descend in the stack (not counting the top level). If n is -1, print the entire stack. -
- -  -

DESCRIPTION

- -

- -This function returns a string of the first n hex addresses from the backtrace of the kernel stack. Output may be truncated as per maximum string length (MAXSTRINGLEN). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::cmdline_arg.3stap.html b/man/function::cmdline_arg.3stap.html deleted file mode 100644 index b87df82a..00000000 --- a/man/function::cmdline_arg.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::CMDLINE_AR - -

FUNCTION::CMDLINE_AR

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::cmdline_arg - Fetch a command line argument -  -

SYNOPSIS

- -

-

-    cmdline_arg:string(n:long)
-
- -  -

ARGUMENTS

- -

- -n -

-Argument to get (zero is the command itself) -
- -  -

DESCRIPTION

- -

- -Returns argument the requested argument from the current process or the empty string when there are not that many arguments or there is a problem retrieving the argument. Argument zero is traditionally the command itself. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::cmdline_args.3stap.html b/man/function::cmdline_args.3stap.html deleted file mode 100644 index 4a10301b..00000000 --- a/man/function::cmdline_args.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of FUNCTION::CMDLINE_AR - -

FUNCTION::CMDLINE_AR

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::cmdline_args - Fetch command line arguments from current process -  -

SYNOPSIS

- -

-

-    cmdline_args:string(n:long,m:long,delim:string)
-
- -  -

ARGUMENTS

- -

- -n -

-First argument to get (zero is the command itself) -
- -

- -m -

-Last argument to get (or minus one for all arguments after n) -
- -

- -delim -

-String to use to delimit arguments when more than one. -
- -  -

DESCRIPTION

- -

- -Returns arguments from the current process starting with argument number n, up to argument m. If there are less than n arguments, or the arguments cannot be retrieved from the current process, the empty string is returned. If m is smaller than n then all arguments starting from argument n are returned. Argument zero is traditionally the command itself. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::cmdline_str.3stap.html b/man/function::cmdline_str.3stap.html deleted file mode 100644 index 04f00b54..00000000 --- a/man/function::cmdline_str.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::CMDLINE_ST - -

FUNCTION::CMDLINE_ST

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::cmdline_str - Fetch all command line arguments from current process -  -

SYNOPSIS

- -

-

-    cmdline_str:string()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -Returns all arguments from the current process delimited by spaces. Returns the empty string when the arguments cannot be retrieved. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::commit.3stap.html b/man/function::commit.3stap.html deleted file mode 100644 index 3f24f52b..00000000 --- a/man/function::commit.3stap.html +++ /dev/null @@ -1,65 +0,0 @@ - -Manpage of FUNCTION::COMMIT - -

FUNCTION::COMMIT

-Section: Speculation (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::commit - Write out all output related to a speculation buffer -  -

SYNOPSIS

- -

-

-    commit(id:long)
-
- -  -

ARGUMENTS

- -

- -id -

-of the buffer to store the information in -
- -  -

DESCRIPTION

- -

- -Output all the output for -id -in the order that it was entered into the speculative buffer by -speculative. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::cpu.3stap.html b/man/function::cpu.3stap.html deleted file mode 100644 index 0caabec1..00000000 --- a/man/function::cpu.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::CPU - -

FUNCTION::CPU

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::cpu - Returns the current cpu number -  -

SYNOPSIS

- -

-

-    cpu:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns the current cpu number. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::cpu_clock_ms.3stap.html b/man/function::cpu_clock_ms.3stap.html deleted file mode 100644 index 7378fde2..00000000 --- a/man/function::cpu_clock_ms.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::CPU_CLOCK_ - -

FUNCTION::CPU_CLOCK_

-Section: Timestamp Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::cpu_clock_ms - Number of milliseconds on the given cpu's clock -  -

SYNOPSIS

- -

-

-    cpu_clock_ms:long(cpu:long)
-
- -  -

ARGUMENTS

- -

- -cpu -

-Which processor's clock to read -
- -  -

DESCRIPTION

- -

- -This function returns the number of milliseconds on the given cpu's clock. This is always monotonic comparing on the same cpu, but may have some drift between cpus (within about a jiffy). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::cpu_clock_ns.3stap.html b/man/function::cpu_clock_ns.3stap.html deleted file mode 100644 index 1517b400..00000000 --- a/man/function::cpu_clock_ns.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::CPU_CLOCK_ - -

FUNCTION::CPU_CLOCK_

-Section: Timestamp Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::cpu_clock_ns - Number of nanoseconds on the given cpu's clock -  -

SYNOPSIS

- -

-

-    cpu_clock_ns:long(cpu:long)
-
- -  -

ARGUMENTS

- -

- -cpu -

-Which processor's clock to read -
- -  -

DESCRIPTION

- -

- -This function returns the number of nanoseconds on the given cpu's clock. This is always monotonic comparing on the same cpu, but may have some drift between cpus (within about a jiffy). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::cpu_clock_s.3stap.html b/man/function::cpu_clock_s.3stap.html deleted file mode 100644 index ae626d97..00000000 --- a/man/function::cpu_clock_s.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::CPU_CLOCK_ - -

FUNCTION::CPU_CLOCK_

-Section: Timestamp Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::cpu_clock_s - Number of seconds on the given cpu's clock -  -

SYNOPSIS

- -

-

-    cpu_clock_s:long(cpu:long)
-
- -  -

ARGUMENTS

- -

- -cpu -

-Which processor's clock to read -
- -  -

DESCRIPTION

- -

- -This function returns the number of seconds on the given cpu's clock. This is always monotonic comparing on the same cpu, but may have some drift between cpus (within about a jiffy). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::cpu_clock_us.3stap.html b/man/function::cpu_clock_us.3stap.html deleted file mode 100644 index 3175f03d..00000000 --- a/man/function::cpu_clock_us.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::CPU_CLOCK_ - -

FUNCTION::CPU_CLOCK_

-Section: Timestamp Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::cpu_clock_us - Number of microseconds on the given cpu's clock -  -

SYNOPSIS

- -

-

-    cpu_clock_us:long(cpu:long)
-
- -  -

ARGUMENTS

- -

- -cpu -

-Which processor's clock to read -
- -  -

DESCRIPTION

- -

- -This function returns the number of microseconds on the given cpu's clock. This is always monotonic comparing on the same cpu, but may have some drift between cpus (within about a jiffy). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::cpuid.3stap.html b/man/function::cpuid.3stap.html deleted file mode 100644 index 910cdd09..00000000 --- a/man/function::cpuid.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::CPUID - -

FUNCTION::CPUID

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::cpuid - Returns the current cpu number -  -

SYNOPSIS

- -

-

-    cpuid:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns the current cpu number. Deprecated in SystemTap 1.4 and removed in SystemTap 1.5. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::cputime_to_msecs.3stap.html b/man/function::cputime_to_msecs.3stap.html deleted file mode 100644 index 94cac4f1..00000000 --- a/man/function::cputime_to_msecs.3stap.html +++ /dev/null @@ -1,55 +0,0 @@ - -Manpage of FUNCTION::CPUTIME_TO - -

FUNCTION::CPUTIME_TO

-Section: Task Time Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::cputime_to_msecs - Translates the given cputime into milliseconds -  -

SYNOPSIS

- -

-

-    cputime_to_msecs:long(cputime:long)
-
- -  -

ARGUMENTS

- -

- -cputime -

-Time to convert to milliseconds. -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::cputime_to_string.3stap.html b/man/function::cputime_to_string.3stap.html deleted file mode 100644 index fd9d8954..00000000 --- a/man/function::cputime_to_string.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::CPUTIME_TO - -

FUNCTION::CPUTIME_TO

-Section: Task Time Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::cputime_to_string - Human readable string for given cputime -  -

SYNOPSIS

- -

-

-    cputime_to_string:string(cputime:long)
-
- -  -

ARGUMENTS

- -

- -cputime -

-Time to translate. -
- -  -

DESCRIPTION

- -

- -Equivalent to calling: msec_to_string (cputime_to_msecs (cputime). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::ctime.3stap.html b/man/function::ctime.3stap.html deleted file mode 100644 index 2397bc92..00000000 --- a/man/function::ctime.3stap.html +++ /dev/null @@ -1,94 +0,0 @@ - -Manpage of FUNCTION::CTIME - -

FUNCTION::CTIME

-Section: Time utility functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::ctime - Convert seconds since epoch into human readable date/time string -  -

SYNOPSIS

- -

-

-    ctime:string(epochsecs:long)
-
- -  -

ARGUMENTS

- -

- -epochsecs -

-Number of seconds since epoch (as returned by -gettimeofday_s) -
- -  -

DESCRIPTION

- -

- -Takes an argument of seconds since the epoch as returned by -gettimeofday_s. Returns a string of the form -

- -

-lqWed Jun 30 21:49:08 1993rq -

- -The string will always be exactly 24 characters. If the time would be unreasonable far in the past (before what can be represented with a 32 bit offset in seconds from the epoch) the returned string will be -lqa long, long time ago...rq. If the time would be unreasonable far in the future the returned string will be -lqfar far in the future...rq -(both these strings are also 24 characters wide). -

- -Note that the epoch (zero) corresponds to -

- -

-lqThu Jan 1 00:00:00 1970rq -

- -The earliest full date given by ctime, corresponding to epochsecs -2147483648 is -lqFri Dec 13 20:45:52 1901rq. The latest full date given by ctime, corresponding to epochsecs 2147483647 is -lqTue Jan 19 03:14:07 2038rq. -

- -The abbreviations for the days of the week are oqSuncq, oqMoncq, oqTuecq, oqWedcq, oqThucq, oqFricq, and oqSatcq. The abbreviations for the months are oqJancq, oqFebcq, oqMarcq, oqAprcq, oqMaycq, oqJuncq, oqJulcq, oqAugcq, oqSepcq, oqOctcq, oqNovcq, and oqDeccq. -

- -Note that the real C library -ctime -function puts a newline ('\n') character at the end of the string that this function does not. Also note that since the kernel has no concept of timezones, the returned time is always in GMT. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::d_name.3stap.html b/man/function::d_name.3stap.html deleted file mode 100644 index c89f920f..00000000 --- a/man/function::d_name.3stap.html +++ /dev/null @@ -1,64 +0,0 @@ - -Manpage of FUNCTION::D_NAME - -

FUNCTION::D_NAME

-Section: Directory-entry (dentry) Tapse (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::d_name - get the dirent name -  -

SYNOPSIS

- -

-

-    d_name:string(dentry:long)
-
- -  -

ARGUMENTS

- -

- -dentry -

-Pointer to dentry. -
- -  -

DESCRIPTION

- -

- -

- -Returns the dirent name (path basename). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::d_path.3stap.html b/man/function::d_path.3stap.html deleted file mode 100644 index a86e9069..00000000 --- a/man/function::d_path.3stap.html +++ /dev/null @@ -1,64 +0,0 @@ - -Manpage of FUNCTION::D_PATH - -

FUNCTION::D_PATH

-Section: Directory-entry (dentry) Tapse (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::d_path - get the full nameidata path -  -

SYNOPSIS

- -

-

-    d_path:string(nd:long)
-
- -  -

ARGUMENTS

- -

- -nd -

-Pointer to nameidata. -
- -  -

DESCRIPTION

- -

- -

- -Returns the full dirent name (full path to the root), like the kernel d_path function. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::delete_stopwatch.3stap.html b/man/function::delete_stopwatch.3stap.html deleted file mode 100644 index 69694d93..00000000 --- a/man/function::delete_stopwatch.3stap.html +++ /dev/null @@ -1,63 +0,0 @@ - -Manpage of FUNCTION::DELETE_STO - -

FUNCTION::DELETE_STO

-Section: Timestamp Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::delete_stopwatch - Remove an existing stopwatch -  -

SYNOPSIS

- -

-

-    delete_stopwatch(name:string)
-
- -  -

ARGUMENTS

- -

- -name -

-the stopwatch name -
- -  -

DESCRIPTION

- -

- -Remove stopwatch -name. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::discard.3stap.html b/man/function::discard.3stap.html deleted file mode 100644 index 5a066532..00000000 --- a/man/function::discard.3stap.html +++ /dev/null @@ -1,55 +0,0 @@ - -Manpage of FUNCTION::DISCARD - -

FUNCTION::DISCARD

-Section: Speculation (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::discard - Discard all output related to a speculation buffer -  -

SYNOPSIS

- -

-

-    discard(id:long)
-
- -  -

ARGUMENTS

- -

- -id -

-of the buffer to store the information in -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::egid.3stap.html b/man/function::egid.3stap.html deleted file mode 100644 index 160afccd..00000000 --- a/man/function::egid.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::EGID - -

FUNCTION::EGID

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::egid - Returns the effective gid of a target process -  -

SYNOPSIS

- -

-

-    egid:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns the effective gid of a target process -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::env_var.3stap.html b/man/function::env_var.3stap.html deleted file mode 100644 index 443c2316..00000000 --- a/man/function::env_var.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::ENV_VAR - -

FUNCTION::ENV_VAR

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::env_var - Fetch environment variable from current process -  -

SYNOPSIS

- -

-

-    env_var:string(name:string)
-
- -  -

ARGUMENTS

- -

- -name -

-Name of the environment variable to fetch -
- -  -

DESCRIPTION

- -

- -Returns the contents of the specified environment value for the current process. If the variable isn't set an empty string is returned. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::errno_str.3stap.html b/man/function::errno_str.3stap.html deleted file mode 100644 index 8b3ad47b..00000000 --- a/man/function::errno_str.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::ERRNO_STR - -

FUNCTION::ERRNO_STR

-Section: Errno Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::errno_str - Symbolic string associated with error code -  -

SYNOPSIS

- -

-

-    errno_str:string(err:long)
-
- -  -

ARGUMENTS

- -

- -err -

-The error number received -
- -  -

DESCRIPTION

- -

- -This function returns the symbolic string associated with the giver error code, such as ENOENT for the number 2, or E#3333 for an out-of-range value such as 3333. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::error.3stap.html b/man/function::error.3stap.html deleted file mode 100644 index 0bf856d2..00000000 --- a/man/function::error.3stap.html +++ /dev/null @@ -1,64 +0,0 @@ - -Manpage of FUNCTION::ERROR - -

FUNCTION::ERROR

-Section: Logging Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::error - Send an error message -  -

SYNOPSIS

- -

-

-    error(msg:string)
-
- -  -

ARGUMENTS

- -

- -msg -

-The formatted message string -
- -  -

DESCRIPTION

- -

- -An implicit end-of-line is added. staprun prepends the string -lqERROR:rq. Sending an error message aborts the currently running probe. Depending on the MAXERRORS parameter, it may trigger an -exit. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::euid.3stap.html b/man/function::euid.3stap.html deleted file mode 100644 index 5e74e5c3..00000000 --- a/man/function::euid.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::EUID - -

FUNCTION::EUID

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::euid - Return the effective uid of a target process -  -

SYNOPSIS

- -

-

-    euid:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -Returns the effective user ID of the target process. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::execname.3stap.html b/man/function::execname.3stap.html deleted file mode 100644 index 863e2602..00000000 --- a/man/function::execname.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::EXECNAME - -

FUNCTION::EXECNAME

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::execname - Returns the execname of a target process (or group of processes) -  -

SYNOPSIS

- -

-

-    execname:string()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -Returns the execname of a target process (or group of processes). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::exit.3stap.html b/man/function::exit.3stap.html deleted file mode 100644 index cff717f8..00000000 --- a/man/function::exit.3stap.html +++ /dev/null @@ -1,60 +0,0 @@ - -Manpage of FUNCTION::EXIT - -

FUNCTION::EXIT

-Section: Logging Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::exit - Start shutting down probing script. -  -

SYNOPSIS

- -

-

-    exit()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This only enqueues a request to start shutting down the script. New probes will not fire (except -lqendrq -probes), but all currently running ones may complete their work. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::fastcall.3stap.html b/man/function::fastcall.3stap.html deleted file mode 100644 index 2c563dbf..00000000 --- a/man/function::fastcall.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::FASTCALL - -

FUNCTION::FASTCALL

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::fastcall - Mark function as declared fastcall -  -

SYNOPSIS

- -

-

-    fastcall()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -Call this function before accessing arguments using the *_arg functions if the probed kernel function was declared fastcall in the source. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::format_ipaddr.3stap.html b/man/function::format_ipaddr.3stap.html deleted file mode 100644 index 564c65ff..00000000 --- a/man/function::format_ipaddr.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::FORMAT_IPA - -

FUNCTION::FORMAT_IPA

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::format_ipaddr - Returns a string representation for an IP address -  -

SYNOPSIS

- -

-

-    format_ipaddr:string(addr:long,family:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-the IP address -
- -

- -family -

-the IP address family (either AF_INET or AF_INET6) -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::ftrace.3stap.html b/man/function::ftrace.3stap.html deleted file mode 100644 index 3d5c2933..00000000 --- a/man/function::ftrace.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::FTRACE - -

FUNCTION::FTRACE

-Section: Logging Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::ftrace - Send a message to the ftrace ring-buffer -  -

SYNOPSIS

- -

-

-    ftrace(msg:string)
-
- -  -

ARGUMENTS

- -

- -msg -

-The formatted message string -
- -  -

DESCRIPTION

- -

- -If the ftrace ring-buffer is configured & available, see /debugfs/tracing/trace for the message. Otherwise, the message may be quietly dropped. An implicit end-of-line is added. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::get_cycles.3stap.html b/man/function::get_cycles.3stap.html deleted file mode 100644 index 4bd45961..00000000 --- a/man/function::get_cycles.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::GET_CYCLES - -

FUNCTION::GET_CYCLES

-Section: Timestamp Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::get_cycles - Processor cycle count -  -

SYNOPSIS

- -

-

-    get_cycles:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns the processor cycle counter value if available, else it returns zero. The cycle counter is free running and unsynchronized on each processor. Thus, the order of events cannot determined by comparing the results of the get_cycles function on different processors. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::get_sa_flags.3stap.html b/man/function::get_sa_flags.3stap.html deleted file mode 100644 index ec5c0d00..00000000 --- a/man/function::get_sa_flags.3stap.html +++ /dev/null @@ -1,55 +0,0 @@ - -Manpage of FUNCTION::GET_SA_FLA - -

FUNCTION::GET_SA_FLA

-Section: Signal Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::get_sa_flags - Returns the numeric value of sa_flags -  -

SYNOPSIS

- -

-

-    get_sa_flags:long(act:long)
-
- -  -

ARGUMENTS

- -

- -act -

-address of the sigaction to query. -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::get_sa_handler.3stap.html b/man/function::get_sa_handler.3stap.html deleted file mode 100644 index 62060eb7..00000000 --- a/man/function::get_sa_handler.3stap.html +++ /dev/null @@ -1,55 +0,0 @@ - -Manpage of FUNCTION::GET_SA_HAN - -

FUNCTION::GET_SA_HAN

-Section: Signal Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::get_sa_handler - Returns the numeric value of sa_handler -  -

SYNOPSIS

- -

-

-    get_sa_handler:long(act:long)
-
- -  -

ARGUMENTS

- -

- -act -

-address of the sigaction to query. -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::gettimeofday_ms.3stap.html b/man/function::gettimeofday_ms.3stap.html deleted file mode 100644 index 5c71fea3..00000000 --- a/man/function::gettimeofday_ms.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::GETTIMEOFD - -

FUNCTION::GETTIMEOFD

-Section: Timestamp Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::gettimeofday_ms - Number of milliseconds since UNIX epoch -  -

SYNOPSIS

- -

-

-    gettimeofday_ms:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns the number of milliseconds since the UNIX epoch. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::gettimeofday_ns.3stap.html b/man/function::gettimeofday_ns.3stap.html deleted file mode 100644 index 31090c0e..00000000 --- a/man/function::gettimeofday_ns.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::GETTIMEOFD - -

FUNCTION::GETTIMEOFD

-Section: Timestamp Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::gettimeofday_ns - Number of nanoseconds since UNIX epoch -  -

SYNOPSIS

- -

-

-    gettimeofday_ns:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns the number of nanoseconds since the UNIX epoch. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::gettimeofday_s.3stap.html b/man/function::gettimeofday_s.3stap.html deleted file mode 100644 index 0b21b640..00000000 --- a/man/function::gettimeofday_s.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::GETTIMEOFD - -

FUNCTION::GETTIMEOFD

-Section: Timestamp Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::gettimeofday_s - Number of seconds since UNIX epoch -  -

SYNOPSIS

- -

-

-    gettimeofday_s:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns the number of seconds since the UNIX epoch. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::gettimeofday_us.3stap.html b/man/function::gettimeofday_us.3stap.html deleted file mode 100644 index 02aa3f91..00000000 --- a/man/function::gettimeofday_us.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::GETTIMEOFD - -

FUNCTION::GETTIMEOFD

-Section: Timestamp Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::gettimeofday_us - Number of microseconds since UNIX epoch -  -

SYNOPSIS

- -

-

-    gettimeofday_us:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns the number of microseconds since the UNIX epoch. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::gid.3stap.html b/man/function::gid.3stap.html deleted file mode 100644 index f612552f..00000000 --- a/man/function::gid.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::GID - -

FUNCTION::GID

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::gid - Returns the group ID of a target process -  -

SYNOPSIS

- -

-

-    gid:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns the group ID of a target process. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::htonl.3stap.html b/man/function::htonl.3stap.html deleted file mode 100644 index 3c061775..00000000 --- a/man/function::htonl.3stap.html +++ /dev/null @@ -1,55 +0,0 @@ - -Manpage of FUNCTION::HTONL - -

FUNCTION::HTONL

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::htonl - Convert 32-bit long from host to network order -  -

SYNOPSIS

- -

-

-    htonl:long(x:long)
-
- -  -

ARGUMENTS

- -

- -x -

-Value to convert -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::htonll.3stap.html b/man/function::htonll.3stap.html deleted file mode 100644 index 4f85f7ec..00000000 --- a/man/function::htonll.3stap.html +++ /dev/null @@ -1,55 +0,0 @@ - -Manpage of FUNCTION::HTONLL - -

FUNCTION::HTONLL

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::htonll - Convert 64-bit long long from host to network order -  -

SYNOPSIS

- -

-

-    htonll:long(x:long)
-
- -  -

ARGUMENTS

- -

- -x -

-Value to convert -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::htons.3stap.html b/man/function::htons.3stap.html deleted file mode 100644 index e43f3603..00000000 --- a/man/function::htons.3stap.html +++ /dev/null @@ -1,55 +0,0 @@ - -Manpage of FUNCTION::HTONS - -

FUNCTION::HTONS

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::htons - Convert 16-bit short from host to network order -  -

SYNOPSIS

- -

-

-    htons:long(x:long)
-
- -  -

ARGUMENTS

- -

- -x -

-Value to convert -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::indent.3stap.html b/man/function::indent.3stap.html deleted file mode 100644 index 634fa7b8..00000000 --- a/man/function::indent.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::INDENT - -

FUNCTION::INDENT

-Section: Utility functions for using an (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::indent - returns an amount of space to indent -  -

SYNOPSIS

- -

-

-    indent:string(delta:long)
-
- -  -

ARGUMENTS

- -

- -delta -

-the amount of space added/removed for each call -
- -  -

DESCRIPTION

- -

- -This function returns a string with appropriate indentation. Call it with a small positive or matching negative delta. Unlike the thread_indent function, the indent does not track individual indent values on a per thread basis. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::inet_get_ip_source.3stap.html b/man/function::inet_get_ip_source.3stap.html deleted file mode 100644 index d05d5766..00000000 --- a/man/function::inet_get_ip_source.3stap.html +++ /dev/null @@ -1,55 +0,0 @@ - -Manpage of FUNCTION::INET_GET_I - -

FUNCTION::INET_GET_I

-Section: Socket Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::inet_get_ip_source - Provide IP source address string for a kernel socket -  -

SYNOPSIS

- -

-

-    inet_get_ip_source:string(sock:long)
-
- -  -

ARGUMENTS

- -

- -sock -

-pointer to the kernel socket -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::inet_get_local_port.3stap.html b/man/function::inet_get_local_port.3stap.html deleted file mode 100644 index 11b9af6f..00000000 --- a/man/function::inet_get_local_port.3stap.html +++ /dev/null @@ -1,55 +0,0 @@ - -Manpage of FUNCTION::INET_GET_L - -

FUNCTION::INET_GET_L

-Section: Socket Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::inet_get_local_port - Provide local port number for a kernel socket -  -

SYNOPSIS

- -

-

-    inet_get_local_port:long(sock:long)
-
- -  -

ARGUMENTS

- -

- -sock -

-pointer to the kernel socket -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::inode_name.3stap.html b/man/function::inode_name.3stap.html deleted file mode 100644 index cfe032b2..00000000 --- a/man/function::inode_name.3stap.html +++ /dev/null @@ -1,64 +0,0 @@ - -Manpage of FUNCTION::INODE_NAME - -

FUNCTION::INODE_NAME

-Section: Directory-entry (dentry) Tapse (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::inode_name - get the inode name -  -

SYNOPSIS

- -

-

-    inode_name:string(inode:long)
-
- -  -

ARGUMENTS

- -

- -inode -

-Pointer to inode. -
- -  -

DESCRIPTION

- -

- -

- -Returns the first path basename associated with the given inode. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::int_arg.3stap.html b/man/function::int_arg.3stap.html deleted file mode 100644 index a5969f4e..00000000 --- a/man/function::int_arg.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::INT_ARG - -

FUNCTION::INT_ARG

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::int_arg - Return function argument as signed int -  -

SYNOPSIS

- -

-

-    int_arg:long(n:long)
-
- -  -

ARGUMENTS

- -

- -n -

-index of argument to return -
- -  -

DESCRIPTION

- -

- -Return the value of argument n as a signed int (i.e., a 32-bit integer sign-extended to 64 bits). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::ip_ntop.3stap.html b/man/function::ip_ntop.3stap.html deleted file mode 100644 index 0d9e7a8d..00000000 --- a/man/function::ip_ntop.3stap.html +++ /dev/null @@ -1,55 +0,0 @@ - -Manpage of FUNCTION::IP_NTOP - -

FUNCTION::IP_NTOP

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::ip_ntop - Returns a string representation for an IPv4 address -  -

SYNOPSIS

- -

-

-    ip_ntop:string(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-the IPv4 address represented as an integer -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::ipmib_filter_key.3stap.html b/man/function::ipmib_filter_key.3stap.html deleted file mode 100644 index b3cb41f0..00000000 --- a/man/function::ipmib_filter_key.3stap.html +++ /dev/null @@ -1,81 +0,0 @@ - -Manpage of FUNCTION::IPMIB_FILT - -

FUNCTION::IPMIB_FILT

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::ipmib_filter_key - Default filter function for ipmib.* probes -  -

SYNOPSIS

- -

-

-    ipmib_filter_key:long(skb:long,op:long,SourceIsLocal:long)
-
- -  -

ARGUMENTS

- -

- -skb -

-pointer to the struct sk_buff -
- -

- -op -

-value to be counted if -skb -passes the filter -
- -

- -SourceIsLocal -

-1 is local operation and 0 is non-local operation -
- -  -

DESCRIPTION

- -

- -This function is a default filter function. The user can replace this function with their own. The user-supplied filter function returns an index key based on the values in -skb. A return value of 0 means this particular -skb -should be not be counted. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::ipmib_get_proto.3stap.html b/man/function::ipmib_get_proto.3stap.html deleted file mode 100644 index 9b8a2c30..00000000 --- a/man/function::ipmib_get_proto.3stap.html +++ /dev/null @@ -1,63 +0,0 @@ - -Manpage of FUNCTION::IPMIB_GET_ - -

FUNCTION::IPMIB_GET_

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::ipmib_get_proto - Get the protocol value -  -

SYNOPSIS

- -

-

-    ipmib_get_proto:long(skb:long)
-
- -  -

ARGUMENTS

- -

- -skb -

-pointer to a struct sk_buff -
- -  -

DESCRIPTION

- -

- -Returns the protocol value from -skb. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::ipmib_local_addr.3stap.html b/man/function::ipmib_local_addr.3stap.html deleted file mode 100644 index 6557776e..00000000 --- a/man/function::ipmib_local_addr.3stap.html +++ /dev/null @@ -1,70 +0,0 @@ - -Manpage of FUNCTION::IPMIB_LOCA - -

FUNCTION::IPMIB_LOCA

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::ipmib_local_addr - Get the local ip address -  -

SYNOPSIS

- -

-

-    ipmib_local_addr:long(skb:long,SourceIsLocal:long)
-
- -  -

ARGUMENTS

- -

- -skb -

-pointer to a struct sk_buff -
- -

- -SourceIsLocal -

-flag to indicate whether local operation -
- -  -

DESCRIPTION

- -

- -Returns the local ip address -skb. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::ipmib_remote_addr.3stap.html b/man/function::ipmib_remote_addr.3stap.html deleted file mode 100644 index e03f960c..00000000 --- a/man/function::ipmib_remote_addr.3stap.html +++ /dev/null @@ -1,70 +0,0 @@ - -Manpage of FUNCTION::IPMIB_REMO - -

FUNCTION::IPMIB_REMO

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::ipmib_remote_addr - Get the remote ip address -  -

SYNOPSIS

- -

-

-    ipmib_remote_addr:long(skb:long,SourceIsLocal:long)
-
- -  -

ARGUMENTS

- -

- -skb -

-pointer to a struct sk_buff -
- -

- -SourceIsLocal -

-flag to indicate whether local operation -
- -  -

DESCRIPTION

- -

- -Returns the remote ip address from -skb. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::ipmib_tcp_local_port.3stap.html b/man/function::ipmib_tcp_local_port.3stap.html deleted file mode 100644 index 42315227..00000000 --- a/man/function::ipmib_tcp_local_port.3stap.html +++ /dev/null @@ -1,70 +0,0 @@ - -Manpage of FUNCTION::IPMIB_TCP_ - -

FUNCTION::IPMIB_TCP_

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::ipmib_tcp_local_port - Get the local tcp port -  -

SYNOPSIS

- -

-

-    ipmib_tcp_local_port:long(skb:long,SourceIsLocal:long)
-
- -  -

ARGUMENTS

- -

- -skb -

-pointer to a struct sk_buff -
- -

- -SourceIsLocal -

-flag to indicate whether local operation -
- -  -

DESCRIPTION

- -

- -Returns the local tcp port from -skb. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::ipmib_tcp_remote_port.3stap.html b/man/function::ipmib_tcp_remote_port.3stap.html deleted file mode 100644 index cc645cdb..00000000 --- a/man/function::ipmib_tcp_remote_port.3stap.html +++ /dev/null @@ -1,70 +0,0 @@ - -Manpage of FUNCTION::IPMIB_TCP_ - -

FUNCTION::IPMIB_TCP_

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::ipmib_tcp_remote_port - Get the remote tcp port -  -

SYNOPSIS

- -

-

-    ipmib_tcp_remote_port:long(skb:long,SourceIsLocal:long)
-
- -  -

ARGUMENTS

- -

- -skb -

-pointer to a struct sk_buff -
- -

- -SourceIsLocal -

-flag to indicate whether local operation -
- -  -

DESCRIPTION

- -

- -Returns the remote tcp port from -skb. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::is_myproc.3stap.html b/man/function::is_myproc.3stap.html deleted file mode 100644 index dda84278..00000000 --- a/man/function::is_myproc.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::IS_MYPROC - -

FUNCTION::IS_MYPROC

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::is_myproc - Determines if the current probe point has occurred in the user's own process -  -

SYNOPSIS

- -

-

-    is_myproc:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns 1 if the current probe point has occurred in the user's own process. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::is_return.3stap.html b/man/function::is_return.3stap.html deleted file mode 100644 index e8a2f4e8..00000000 --- a/man/function::is_return.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::IS_RETURN - -

FUNCTION::IS_RETURN

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::is_return - Whether the current probe context is a return probe -  -

SYNOPSIS

- -

-

-    is_return:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -Returns 1 if the current probe context is a return probe, returns 0 otherwise. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::is_sig_blocked.3stap.html b/man/function::is_sig_blocked.3stap.html deleted file mode 100644 index 2f2ad343..00000000 --- a/man/function::is_sig_blocked.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::IS_SIG_BLO - -

FUNCTION::IS_SIG_BLO

-Section: Signal Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::is_sig_blocked - Returns 1 if the signal is currently blocked, or 0 if it is not -  -

SYNOPSIS

- -

-

-    is_sig_blocked:long(task:long,sig:long)
-
- -  -

ARGUMENTS

- -

- -task -

-address of the task_struct to query. -
- -

- -sig -

-the signal number to test. -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::isdigit.3stap.html b/man/function::isdigit.3stap.html deleted file mode 100644 index 98fb4540..00000000 --- a/man/function::isdigit.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::ISDIGIT - -

FUNCTION::ISDIGIT

-Section: A collection of standard strin (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::isdigit - Checks for a digit -  -

SYNOPSIS

- -

-

-    isdigit:long(str:string)
-
- -  -

ARGUMENTS

- -

- -str -

-string to check -
- -  -

DESCRIPTION

- -

- -Checks for a digit (0 through 9) as the first character of a string. Returns non-zero if true, and a zero if false. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::isinstr.3stap.html b/man/function::isinstr.3stap.html deleted file mode 100644 index da3dede9..00000000 --- a/man/function::isinstr.3stap.html +++ /dev/null @@ -1,72 +0,0 @@ - -Manpage of FUNCTION::ISINSTR - -

FUNCTION::ISINSTR

-Section: A collection of standard strin (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::isinstr - Returns whether a string is a substring of another string -  -

SYNOPSIS

- -

-

-    isinstr:long(s1:string,s2:string)
-
- -  -

ARGUMENTS

- -

- -s1 -

-string to search in -
- -

- -s2 -

-substring to find -
- -  -

DESCRIPTION

- -

- -This function returns 1 if string -s1 -contains -s2, otherwise zero. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::jiffies.3stap.html b/man/function::jiffies.3stap.html deleted file mode 100644 index c342b274..00000000 --- a/man/function::jiffies.3stap.html +++ /dev/null @@ -1,59 +0,0 @@ - -Manpage of FUNCTION::JIFFIES - -

FUNCTION::JIFFIES

-Section: Timestamp Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::jiffies - Kernel jiffies count -  -

SYNOPSIS

- -

-

-    jiffies:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns the value of the kernel jiffies variable. This value is incremented periodically by timer interrupts, and may wrap around a 32-bit or 64-bit boundary. See -HZ. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::kernel_char.3stap.html b/man/function::kernel_char.3stap.html deleted file mode 100644 index 05c5361d..00000000 --- a/man/function::kernel_char.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::KERNEL_CHA - -

FUNCTION::KERNEL_CHA

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::kernel_char - Retrieves a char value stored in kernel memory -  -

SYNOPSIS

- -

-

-    kernel_char:long(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-The kernel address to retrieve the char from -
- -  -

DESCRIPTION

- -

- -Returns the char value from a given kernel memory address. Reports an error when reading from the given address fails. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::kernel_int.3stap.html b/man/function::kernel_int.3stap.html deleted file mode 100644 index 67690a35..00000000 --- a/man/function::kernel_int.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::KERNEL_INT - -

FUNCTION::KERNEL_INT

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::kernel_int - Retrieves an int value stored in kernel memory -  -

SYNOPSIS

- -

-

-    kernel_int:long(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-The kernel address to retrieve the int from -
- -  -

DESCRIPTION

- -

- -Returns the int value from a given kernel memory address. Reports an error when reading from the given address fails. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::kernel_long.3stap.html b/man/function::kernel_long.3stap.html deleted file mode 100644 index 8b4e7c20..00000000 --- a/man/function::kernel_long.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::KERNEL_LON - -

FUNCTION::KERNEL_LON

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::kernel_long - Retrieves a long value stored in kernel memory -  -

SYNOPSIS

- -

-

-    kernel_long:long(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-The kernel address to retrieve the long from -
- -  -

DESCRIPTION

- -

- -Returns the long value from a given kernel memory address. Reports an error when reading from the given address fails. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::kernel_pointer.3stap.html b/man/function::kernel_pointer.3stap.html deleted file mode 100644 index 09eae75f..00000000 --- a/man/function::kernel_pointer.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::KERNEL_POI - -

FUNCTION::KERNEL_POI

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::kernel_pointer - Retrieves a pointer value stored in kernel memory -  -

SYNOPSIS

- -

-

-    kernel_pointer:long(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-The kernel address to retrieve the pointer from -
- -  -

DESCRIPTION

- -

- -Returns the pointer value from a given kernel memory address. Reports an error when reading from the given address fails. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::kernel_short.3stap.html b/man/function::kernel_short.3stap.html deleted file mode 100644 index cdd05b87..00000000 --- a/man/function::kernel_short.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::KERNEL_SHO - -

FUNCTION::KERNEL_SHO

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::kernel_short - Retrieves a short value stored in kernel memory -  -

SYNOPSIS

- -

-

-    kernel_short:long(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-The kernel address to retrieve the short from -
- -  -

DESCRIPTION

- -

- -Returns the short value from a given kernel memory address. Reports an error when reading from the given address fails. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::kernel_string.3stap.html b/man/function::kernel_string.3stap.html deleted file mode 100644 index ce0d4fbc..00000000 --- a/man/function::kernel_string.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::KERNEL_STR - -

FUNCTION::KERNEL_STR

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::kernel_string - Retrieves string from kernel memory -  -

SYNOPSIS

- -

-

-    kernel_string:string(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-The kernel address to retrieve the string from -
- -  -

DESCRIPTION

- -

- -This function returns the null terminated C string from a given kernel memory address. Reports an error on string copy fault. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::kernel_string2.3stap.html b/man/function::kernel_string2.3stap.html deleted file mode 100644 index 010af4a7..00000000 --- a/man/function::kernel_string2.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of FUNCTION::KERNEL_STR - -

FUNCTION::KERNEL_STR

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::kernel_string2 - Retrieves string from kernel memory with alternative error string -  -

SYNOPSIS

- -

-

-    kernel_string2:string(addr:long,err_msg:string)
-
- -  -

ARGUMENTS

- -

- -addr -

-The kernel address to retrieve the string from -
- -

- -err_msg -

-The error message to return when data isn't available -
- -  -

DESCRIPTION

- -

- -This function returns the null terminated C string from a given kernel memory address. Reports the given error message on string copy fault. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::kernel_string2_utf16.3stap.html b/man/function::kernel_string2_utf16.3stap.html deleted file mode 100644 index 0ddaf940..00000000 --- a/man/function::kernel_string2_utf16.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of FUNCTION::KERNEL_STR - -

FUNCTION::KERNEL_STR

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::kernel_string2_utf16 - Retrieves UTF-16 string from kernel memory with alternative error string -  -

SYNOPSIS

- -

-

-    kernel_string2_utf16:string(addr:long,err_msg:string)
-
- -  -

ARGUMENTS

- -

- -addr -

-The kernel address to retrieve the string from -
- -

- -err_msg -

-The error message to return when data isn't available -
- -  -

DESCRIPTION

- -

- -This function returns a null terminated UTF-8 string converted from the UTF-16 string at a given kernel memory address. Reports the given error message on string copy fault or conversion error. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::kernel_string2_utf32.3stap.html b/man/function::kernel_string2_utf32.3stap.html deleted file mode 100644 index 44618f84..00000000 --- a/man/function::kernel_string2_utf32.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of FUNCTION::KERNEL_STR - -

FUNCTION::KERNEL_STR

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::kernel_string2_utf32 - Retrieves UTF-32 string from kernel memory with alternative error string -  -

SYNOPSIS

- -

-

-    kernel_string2_utf32:string(addr:long,err_msg:string)
-
- -  -

ARGUMENTS

- -

- -addr -

-The kernel address to retrieve the string from -
- -

- -err_msg -

-The error message to return when data isn't available -
- -  -

DESCRIPTION

- -

- -This function returns a null terminated UTF-8 string converted from the UTF-32 string at a given kernel memory address. Reports the given error message on string copy fault or conversion error. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::kernel_string_n.3stap.html b/man/function::kernel_string_n.3stap.html deleted file mode 100644 index 16b6d89e..00000000 --- a/man/function::kernel_string_n.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of FUNCTION::KERNEL_STR - -

FUNCTION::KERNEL_STR

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::kernel_string_n - Retrieves string of given length from kernel memory -  -

SYNOPSIS

- -

-

-    kernel_string_n:string(addr:long,n:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-The kernel address to retrieve the string from -
- -

- -n -

-The maximum length of the string (if not null terminated) -
- -  -

DESCRIPTION

- -

- -Returns the C string of a maximum given length from a given kernel memory address. Reports an error on string copy fault. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::kernel_string_utf16.3stap.html b/man/function::kernel_string_utf16.3stap.html deleted file mode 100644 index a4666560..00000000 --- a/man/function::kernel_string_utf16.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::KERNEL_STR - -

FUNCTION::KERNEL_STR

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::kernel_string_utf16 - Retrieves UTF-16 string from kernel memory -  -

SYNOPSIS

- -

-

-    kernel_string_utf16:string(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-The kernel address to retrieve the string from -
- -  -

DESCRIPTION

- -

- -This function returns a null terminated UTF-8 string converted from the UTF-16 string at a given kernel memory address. Reports an error on string copy fault or conversion error. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::kernel_string_utf32.3stap.html b/man/function::kernel_string_utf32.3stap.html deleted file mode 100644 index 3fa7e252..00000000 --- a/man/function::kernel_string_utf32.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::KERNEL_STR - -

FUNCTION::KERNEL_STR

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::kernel_string_utf32 - Retrieves UTF-32 string from kernel memory -  -

SYNOPSIS

- -

-

-    kernel_string_utf32:string(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-The kernel address to retrieve the string from -
- -  -

DESCRIPTION

- -

- -This function returns a null terminated UTF-8 string converted from the UTF-32 string at a given kernel memory address. Reports an error on string copy fault or conversion error. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::linuxmib_filter_key.3stap.html b/man/function::linuxmib_filter_key.3stap.html deleted file mode 100644 index 47cffaa6..00000000 --- a/man/function::linuxmib_filter_key.3stap.html +++ /dev/null @@ -1,74 +0,0 @@ - -Manpage of FUNCTION::LINUXMIB_F - -

FUNCTION::LINUXMIB_F

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::linuxmib_filter_key - Default filter function for linuxmib.* probes -  -

SYNOPSIS

- -

-

-    linuxmib_filter_key:long(sk:long,op:long)
-
- -  -

ARGUMENTS

- -

- -sk -

-pointer to the struct sock -
- -

- -op -

-value to be counted if -sk -passes the filter -
- -  -

DESCRIPTION

- -

- -This function is a default filter function. The user can replace this function with their own. The user-supplied filter function returns an index key based on the values in -sk. A return value of 0 means this particular -sk -should be not be counted. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::local_clock_ms.3stap.html b/man/function::local_clock_ms.3stap.html deleted file mode 100644 index 9fe1635e..00000000 --- a/man/function::local_clock_ms.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::LOCAL_CLOC - -

FUNCTION::LOCAL_CLOC

-Section: Timestamp Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::local_clock_ms - Number of milliseconds on the local cpu's clock -  -

SYNOPSIS

- -

-

-    local_clock_ms:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns the number of milliseconds on the local cpu's clock. This is always monotonic comparing on the same cpu, but may have some drift between cpus (within about a jiffy). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::local_clock_ns.3stap.html b/man/function::local_clock_ns.3stap.html deleted file mode 100644 index 7ed9af84..00000000 --- a/man/function::local_clock_ns.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::LOCAL_CLOC - -

FUNCTION::LOCAL_CLOC

-Section: Timestamp Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::local_clock_ns - Number of nanoseconds on the local cpu's clock -  -

SYNOPSIS

- -

-

-    local_clock_ns:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns the number of nanoseconds on the local cpu's clock. This is always monotonic comparing on the same cpu, but may have some drift between cpus (within about a jiffy). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::local_clock_s.3stap.html b/man/function::local_clock_s.3stap.html deleted file mode 100644 index e2be95c2..00000000 --- a/man/function::local_clock_s.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::LOCAL_CLOC - -

FUNCTION::LOCAL_CLOC

-Section: Timestamp Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::local_clock_s - Number of seconds on the local cpu's clock -  -

SYNOPSIS

- -

-

-    local_clock_s:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns the number of seconds on the local cpu's clock. This is always monotonic comparing on the same cpu, but may have some drift between cpus (within about a jiffy). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::local_clock_us.3stap.html b/man/function::local_clock_us.3stap.html deleted file mode 100644 index a65fcfd6..00000000 --- a/man/function::local_clock_us.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::LOCAL_CLOC - -

FUNCTION::LOCAL_CLOC

-Section: Timestamp Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::local_clock_us - Number of microseconds on the local cpu's clock -  -

SYNOPSIS

- -

-

-    local_clock_us:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns the number of microseconds on the local cpu's clock. This is always monotonic comparing on the same cpu, but may have some drift between cpus (within about a jiffy). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::log.3stap.html b/man/function::log.3stap.html deleted file mode 100644 index 7796953c..00000000 --- a/man/function::log.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::LOG - -

FUNCTION::LOG

-Section: Logging Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::log - Send a line to the common trace buffer -  -

SYNOPSIS

- -

-

-    log(msg:string)
-
- -  -

ARGUMENTS

- -

- -msg -

-The formatted message string -
- -  -

DESCRIPTION

- -

- -This function logs data. log sends the message immediately to staprun and to the bulk transport (relayfs) if it is being used. If the last character given is not a newline, then one is added. This function is not as effecient as printf and should be used only for urgent messages. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::long_arg.3stap.html b/man/function::long_arg.3stap.html deleted file mode 100644 index a227bac2..00000000 --- a/man/function::long_arg.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::LONG_ARG - -

FUNCTION::LONG_ARG

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::long_arg - Return function argument as signed long -  -

SYNOPSIS

- -

-

-    long_arg:long(n:long)
-
- -  -

ARGUMENTS

- -

- -n -

-index of argument to return -
- -  -

DESCRIPTION

- -

- -Return the value of argument n as a signed long. On architectures where a long is 32 bits, the value is sign-extended to 64 bits. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::longlong_arg.3stap.html b/man/function::longlong_arg.3stap.html deleted file mode 100644 index 8cd8387e..00000000 --- a/man/function::longlong_arg.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::LONGLONG_A - -

FUNCTION::LONGLONG_A

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::longlong_arg - Return function argument as 64-bit value -  -

SYNOPSIS

- -

-

-    longlong_arg:long(n:long)
-
- -  -

ARGUMENTS

- -

- -n -

-index of argument to return -
- -  -

DESCRIPTION

- -

- -Return the value of argument n as a 64-bit value. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::mdelay.3stap.html b/man/function::mdelay.3stap.html deleted file mode 100644 index c23faad9..00000000 --- a/man/function::mdelay.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::MDELAY - -

FUNCTION::MDELAY

-Section: Guru tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::mdelay - millisecond delay -  -

SYNOPSIS

- -

-

-    mdelay(ms:long)
-
- -  -

ARGUMENTS

- -

- -ms -

-Number of milliseconds to delay. -
- -  -

DESCRIPTION

- -

- -This function inserts a multi-millisecond busy-delay into a probe handler. It requires guru mode. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::mem_page_size.3stap.html b/man/function::mem_page_size.3stap.html deleted file mode 100644 index 04c4d07c..00000000 --- a/man/function::mem_page_size.3stap.html +++ /dev/null @@ -1,51 +0,0 @@ - -Manpage of FUNCTION::MEM_PAGE_S - -

FUNCTION::MEM_PAGE_S

-Section: Memory Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::mem_page_size - Number of bytes in a page for this architecture -  -

SYNOPSIS

- -

-

-    mem_page_size:long()
-
- -  -

ARGUMENTS

- -

- -None -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::modname.3stap.html b/man/function::modname.3stap.html deleted file mode 100644 index 49085fea..00000000 --- a/man/function::modname.3stap.html +++ /dev/null @@ -1,65 +0,0 @@ - -Manpage of FUNCTION::MODNAME - -

FUNCTION::MODNAME

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::modname - Return the kernel module name loaded at the address -  -

SYNOPSIS

- -

-

-    modname:string(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-The address to map to a kernel module name -
- -  -

DESCRIPTION

- -

- -Returns the module name associated with the given address if known. If not known it will return the string -lq<unknown>rq. If the address was not in a kernel module, but in the kernel itself, then the string -lqkernelrq -will be returned. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::module_name.3stap.html b/man/function::module_name.3stap.html deleted file mode 100644 index 55b960ef..00000000 --- a/man/function::module_name.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::MODULE_NAM - -

FUNCTION::MODULE_NAM

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::module_name - The module name of the current script -  -

SYNOPSIS

- -

-

-    module_name:string()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns the name of the stap module. Either generated randomly (stap_[0-9a-f]+_[0-9a-f]+) or set by stap -m <module_name>. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::msecs_to_string.3stap.html b/man/function::msecs_to_string.3stap.html deleted file mode 100644 index 80565159..00000000 --- a/man/function::msecs_to_string.3stap.html +++ /dev/null @@ -1,63 +0,0 @@ - -Manpage of FUNCTION::MSECS_TO_S - -

FUNCTION::MSECS_TO_S

-Section: Task Time Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::msecs_to_string - Human readable string for given milliseconds -  -

SYNOPSIS

- -

-

-    msecs_to_string:string(msecs:long)
-
- -  -

ARGUMENTS

- -

- -msecs -

-Number of milliseconds to translate. -
- -  -

DESCRIPTION

- -

- -Returns a string representing the number of milliseconds as a human readable string consisting of -lqXmY.ZZZsrq, where X is the number of minutes, Y is the number of seconds and ZZZ is the number of milliseconds. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::nfsderror.3stap.html b/man/function::nfsderror.3stap.html deleted file mode 100644 index 9f21333c..00000000 --- a/man/function::nfsderror.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::NFSDERROR - -

FUNCTION::NFSDERROR

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::nfsderror - Convert nfsd error number into string -  -

SYNOPSIS

- -

-

-    nfsderror:string(err:long)
-
- -  -

ARGUMENTS

- -

- -err -

-errnum -
- -  -

DESCRIPTION

- -

- -This function returns a string for the error number passed into the function. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::ntohl.3stap.html b/man/function::ntohl.3stap.html deleted file mode 100644 index 26449aa9..00000000 --- a/man/function::ntohl.3stap.html +++ /dev/null @@ -1,55 +0,0 @@ - -Manpage of FUNCTION::NTOHL - -

FUNCTION::NTOHL

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::ntohl - Convert 32-bit long from network to host order -  -

SYNOPSIS

- -

-

-    ntohl:long(x:long)
-
- -  -

ARGUMENTS

- -

- -x -

-Value to convert -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::ntohll.3stap.html b/man/function::ntohll.3stap.html deleted file mode 100644 index 0a04832a..00000000 --- a/man/function::ntohll.3stap.html +++ /dev/null @@ -1,55 +0,0 @@ - -Manpage of FUNCTION::NTOHLL - -

FUNCTION::NTOHLL

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::ntohll - Convert 64-bit long long from network to host order -  -

SYNOPSIS

- -

-

-    ntohll:long(x:long)
-
- -  -

ARGUMENTS

- -

- -x -

-Value to convert -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::ntohs.3stap.html b/man/function::ntohs.3stap.html deleted file mode 100644 index 03095502..00000000 --- a/man/function::ntohs.3stap.html +++ /dev/null @@ -1,55 +0,0 @@ - -Manpage of FUNCTION::NTOHS - -

FUNCTION::NTOHS

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::ntohs - Convert 16-bit short from network to host order -  -

SYNOPSIS

- -

-

-    ntohs:long(x:long)
-
- -  -

ARGUMENTS

- -

- -x -

-Value to convert -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/function::pages_to_string.3stap.html b/man/function::pages_to_string.3stap.html deleted file mode 100644 index 0c78dcf9..00000000 --- a/man/function::pages_to_string.3stap.html +++ /dev/null @@ -1,65 +0,0 @@ - -Manpage of FUNCTION::PAGES_TO_S - -

FUNCTION::PAGES_TO_S

-Section: Memory Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::pages_to_string - Turns pages into a human readable string -  -

SYNOPSIS

- -

-

-    pages_to_string:string(pages:long)
-
- -  -

ARGUMENTS

- -

- -pages -

-Number of pages to translate. -
- -  -

DESCRIPTION

- -

- -Multiplies pages by -page_size -to get the number of bytes and returns the result of -bytes_to_string. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::panic.3stap.html b/man/function::panic.3stap.html deleted file mode 100644 index 17601365..00000000 --- a/man/function::panic.3stap.html +++ /dev/null @@ -1,64 +0,0 @@ - -Manpage of FUNCTION::PANIC - -

FUNCTION::PANIC

-Section: Guru tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::panic - trigger a panic -  -

SYNOPSIS

- -

-

-    panic(msg:string)
-
- -  -

ARGUMENTS

- -

- -msg -

-message to pass to kernel's -panic -function -
- -  -

DESCRIPTION

- -

- -This function triggers an immediate panic of the running kernel with a user-specified panic message. It requires guru mode. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::pexecname.3stap.html b/man/function::pexecname.3stap.html deleted file mode 100644 index b3b5ea3c..00000000 --- a/man/function::pexecname.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::PEXECNAME - -

FUNCTION::PEXECNAME

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::pexecname - Returns the execname of a target process's parent process -  -

SYNOPSIS

- -

-

-    pexecname:string()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns the execname of a target process's parent procces. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::pgrp.3stap.html b/man/function::pgrp.3stap.html deleted file mode 100644 index 7a37e3bf..00000000 --- a/man/function::pgrp.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::PGRP - -

FUNCTION::PGRP

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::pgrp - Returns the process group ID of the current process -  -

SYNOPSIS

- -

-

-    pgrp:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns the process group ID of the current process. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::pid.3stap.html b/man/function::pid.3stap.html deleted file mode 100644 index f26d4bd7..00000000 --- a/man/function::pid.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::PID - -

FUNCTION::PID

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::pid - Returns the ID of a target process -  -

SYNOPSIS

- -

-

-    pid:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns the ID of a target process. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::pid2execname.3stap.html b/man/function::pid2execname.3stap.html deleted file mode 100644 index 04c152c0..00000000 --- a/man/function::pid2execname.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::PID2EXECNA - -

FUNCTION::PID2EXECNA

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::pid2execname - The name of the given process identifier -  -

SYNOPSIS

- -

-

-    pid2execname:string(pid:long)
-
- -  -

ARGUMENTS

- -

- -pid -

-process identifier -
- -  -

DESCRIPTION

- -

- -Return the name of the given process id. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::pid2task.3stap.html b/man/function::pid2task.3stap.html deleted file mode 100644 index 5b19d383..00000000 --- a/man/function::pid2task.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::PID2TASK - -

FUNCTION::PID2TASK

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::pid2task - The task_struct of the given process identifier -  -

SYNOPSIS

- -

-

-    pid2task:long(pid:long)
-
- -  -

ARGUMENTS

- -

- -pid -

-process identifier -
- -  -

DESCRIPTION

- -

- -Return the task struct of the given process id. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::pn.3stap.html b/man/function::pn.3stap.html deleted file mode 100644 index 2a913e1c..00000000 --- a/man/function::pn.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::PN - -

FUNCTION::PN

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::pn - Returns the active probe name -  -

SYNOPSIS

- -

-

-    pn:string()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns the script-level probe point associated with a currently running probe handler, including wild-card expansion effects. Context: The current probe point. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::pointer_arg.3stap.html b/man/function::pointer_arg.3stap.html deleted file mode 100644 index aaf0867a..00000000 --- a/man/function::pointer_arg.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::POINTER_AR - -

FUNCTION::POINTER_AR

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::pointer_arg - Return function argument as pointer value -  -

SYNOPSIS

- -

-

-    pointer_arg:long(n:long)
-
- -  -

ARGUMENTS

- -

- -n -

-index of argument to return -
- -  -

DESCRIPTION

- -

- -Return the unsigned value of argument n, same as ulong_arg. Can be used with any type of pointer. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::pp.3stap.html b/man/function::pp.3stap.html deleted file mode 100644 index 02758e9e..00000000 --- a/man/function::pp.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::PP - -

FUNCTION::PP

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::pp - Returns the active probe point -  -

SYNOPSIS

- -

-

-    pp:string()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns the fully-resolved probe point associated with a currently running probe handler, including alias and wild-card expansion effects. Context: The current probe point. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::ppfunc.3stap.html b/man/function::ppfunc.3stap.html deleted file mode 100644 index 17feb31d..00000000 --- a/man/function::ppfunc.3stap.html +++ /dev/null @@ -1,61 +0,0 @@ - -Manpage of FUNCTION::PPFUNC - -

FUNCTION::PPFUNC

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::ppfunc - Returns the function name parsed from pp -  -

SYNOPSIS

- -

-

-    ppfunc:string()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This returns the function name from the current -pp. Not all -pp -have functions in them, in which case "" is returned. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::ppid.3stap.html b/man/function::ppid.3stap.html deleted file mode 100644 index b5accc84..00000000 --- a/man/function::ppid.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::PPID - -

FUNCTION::PPID

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::ppid - Returns the process ID of a target process's parent process -  -

SYNOPSIS

- -

-

-    ppid:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function return the process ID of the target proccess's parent process. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::print_backtrace.3stap.html b/man/function::print_backtrace.3stap.html deleted file mode 100644 index 4077167f..00000000 --- a/man/function::print_backtrace.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::PRINT_BACK - -

FUNCTION::PRINT_BACK

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::print_backtrace - Print kernel stack back trace -  -

SYNOPSIS

- -

-

-    print_backtrace()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function is equivalent to print_stack(backtrace), except that deeper stack nesting may be supported. See print_ubacktrace for user-space backtrace. The function does not return a value. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::print_regs.3stap.html b/man/function::print_regs.3stap.html deleted file mode 100644 index 548d979d..00000000 --- a/man/function::print_regs.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::PRINT_REGS - -

FUNCTION::PRINT_REGS

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::print_regs - Print a register dump -  -

SYNOPSIS

- -

-

-    print_regs()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function prints a register dump. Does nothing if no registers are available for the probe point. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::print_stack.3stap.html b/man/function::print_stack.3stap.html deleted file mode 100644 index e6ebb454..00000000 --- a/man/function::print_stack.3stap.html +++ /dev/null @@ -1,75 +0,0 @@ - -Manpage of FUNCTION::PRINT_STAC - -

FUNCTION::PRINT_STAC

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::print_stack - Print out kernel stack from string -  -

SYNOPSIS

- -

-

-    print_stack(stk:string)
-
- -  -

ARGUMENTS

- -

- -stk -

-String with list of hexadecimal addresses -
- -  -

DESCRIPTION

- -

- -This function performs a symbolic lookup of the addresses in the given string, which is assumed to be the result of a prior call to -backtrace. -

- -Print one line per address, including the address, the name of the function containing the address, and an estimate of its position within that function. Return nothing. -  -

NOTE

- -

- -it is recommended to use -print_syms -instead of this function. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
NOTE
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::print_syms.3stap.html b/man/function::print_syms.3stap.html deleted file mode 100644 index 9a772445..00000000 --- a/man/function::print_syms.3stap.html +++ /dev/null @@ -1,68 +0,0 @@ - -Manpage of FUNCTION::PRINT_SYMS - -

FUNCTION::PRINT_SYMS

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::print_syms - Print out kernel stack from string -  -

SYNOPSIS

- -

-

-    print_syms(callers:string)
-
- -  -

ARGUMENTS

- -

- -callers -

-String with list of hexadecimal (kernel) addresses -
- -  -

DESCRIPTION

- -

- -This function performs a symbolic lookup of the addresses in the given string, which are assumed to be the result of prior calls to -stack, -callers, and similar functions. -

- -Prints one line per address, including the address, the name of the function containing the address, and an estimate of its position within that function, as obtained by -symdata. Returns nothing. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::print_ubacktrace.3stap.html b/man/function::print_ubacktrace.3stap.html deleted file mode 100644 index bcef2bb6..00000000 --- a/man/function::print_ubacktrace.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of FUNCTION::PRINT_UBAC - -

FUNCTION::PRINT_UBAC

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::print_ubacktrace - Print stack back trace for current user-space task. -  -

SYNOPSIS

- -

-

-    print_ubacktrace()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -

- -Equivalent to print_ustack(ubacktrace), except that deeper stack nesting may be supported. Returns nothing. See -print_backtrace -for kernel backtrace. -  -

NOTE

- -

- -To get (full) backtraces for user space applications and shared shared libraries not mentioned in the current script run stap with -d /path/to/exe-or-so and/or add --ldd to load all needed unwind data. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
NOTE
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::print_ubacktrace_brief.3stap.html b/man/function::print_ubacktrace_brief.3stap.html deleted file mode 100644 index 35f7a30f..00000000 --- a/man/function::print_ubacktrace_brief.3stap.html +++ /dev/null @@ -1,68 +0,0 @@ - -Manpage of FUNCTION::PRINT_UBAC - -

FUNCTION::PRINT_UBAC

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::print_ubacktrace_brief - Print stack back trace for current user-space task. -  -

SYNOPSIS

- -

-

-    print_ubacktrace_brief()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -

- -Equivalent to -print_ubacktrace, but output for each symbol is shorter (just name and offset, or just the hex address of no symbol could be found). -  -

NOTE

- -

- -To get (full) backtraces for user space applications and shared shared libraries not mentioned in the current script run stap with -d /path/to/exe-or-so and/or add --ldd to load all needed unwind data. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
NOTE
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::print_ustack.3stap.html b/man/function::print_ustack.3stap.html deleted file mode 100644 index 42297b11..00000000 --- a/man/function::print_ustack.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of FUNCTION::PRINT_USTA - -

FUNCTION::PRINT_USTA

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::print_ustack - Print out stack for the current task from string. -  -

SYNOPSIS

- -

-

-    print_ustack(stk:string)
-
- -  -

ARGUMENTS

- -

- -stk -

-String with list of hexadecimal addresses for the current task. -
- -  -

DESCRIPTION

- -

- -Perform a symbolic lookup of the addresses in the given string, which is assumed to be the result of a prior call to -ubacktrace -for the current task. -

- -Print one line per address, including the address, the name of the function containing the address, and an estimate of its position within that function. Return nothing. -  -

NOTE

- -

- -it is recommended to use -print_usyms -instead of this function. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
NOTE
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::print_usyms.3stap.html b/man/function::print_usyms.3stap.html deleted file mode 100644 index a55f1179..00000000 --- a/man/function::print_usyms.3stap.html +++ /dev/null @@ -1,68 +0,0 @@ - -Manpage of FUNCTION::PRINT_USYM - -

FUNCTION::PRINT_USYM

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::print_usyms - Print out user stack from string -  -

SYNOPSIS

- -

-

-    print_usyms(callers:string)
-
- -  -

ARGUMENTS

- -

- -callers -

-String with list of hexadecimal (user) addresses -
- -  -

DESCRIPTION

- -

- -This function performs a symbolic lookup of the addresses in the given string, which are assumed to be the result of prior calls to -ustack, -ucallers, and similar functions. -

- -Prints one line per address, including the address, the name of the function containing the address, and an estimate of its position within that function, as obtained by -usymdata. Returns nothing. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::printk.3stap.html b/man/function::printk.3stap.html deleted file mode 100644 index 489b0d64..00000000 --- a/man/function::printk.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of FUNCTION::PRINTK - -

FUNCTION::PRINTK

-Section: Logging Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::printk - Send a message to the kernel trace buffer -  -

SYNOPSIS

- -

-

-    printk(level:long,msg:string)
-
- -  -

ARGUMENTS

- -

- -level -

-an integer for the severity level (0=KERN_EMERG ... 7=KERN_DEBUG) -
- -

- -msg -

-The formatted message string -
- -  -

DESCRIPTION

- -

- -Print a line of text to the kernel dmesg/console with the given severity. An implicit end-of-line is added. This function may not be safely called from all kernel probe contexts, so is restricted to guru mode only. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::probe_type.3stap.html b/man/function::probe_type.3stap.html deleted file mode 100644 index da1e6691..00000000 --- a/man/function::probe_type.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::PROBE_TYPE - -

FUNCTION::PROBE_TYPE

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::probe_type - The low level probe handler type of the current probe. -  -

SYNOPSIS

- -

-

-    probe_type:string()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -Returns a short string describing the low level probe handler type for the current probe point. This is for informational purposes only. Depending on the low level probe handler different context functions can or cannot provide information about the current event (for example some probe handlers only trigger in user space and have no associated kernel context). High-level probes might map to the same or different low-level probes (depending on systemtap version and/or kernel used). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::probefunc.3stap.html b/man/function::probefunc.3stap.html deleted file mode 100644 index 84e4639f..00000000 --- a/man/function::probefunc.3stap.html +++ /dev/null @@ -1,68 +0,0 @@ - -Manpage of FUNCTION::PROBEFUNC - -

FUNCTION::PROBEFUNC

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::probefunc - Return the probe point's function name, if known -  -

SYNOPSIS

- -

-

-    probefunc:string()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns the name of the function being probed based on the current address, as computed by symname(addr) or usymname(uaddr) depending on probe context (whether the probe is a user probe or a kernel probe). -  -

PLEASE NOTE

- -

- -this function's behaviour differs between SystemTap 2.0 and earlier versions. Prior to 2.0, -probefunc -obtained the function name from the probe point string as returned by -pp, and used the current address as a fallback. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
PLEASE NOTE
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::probemod.3stap.html b/man/function::probemod.3stap.html deleted file mode 100644 index f0cc83b2..00000000 --- a/man/function::probemod.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::PROBEMOD - -

FUNCTION::PROBEMOD

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::probemod - Return the probe point's kernel module name -  -

SYNOPSIS

- -

-

-    probemod:string()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns the name of the kernel module containing the probe point, if known. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::proc_mem_data.3stap.html b/man/function::proc_mem_data.3stap.html deleted file mode 100644 index fb5cde1c..00000000 --- a/man/function::proc_mem_data.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::PROC_MEM_D - -

FUNCTION::PROC_MEM_D

-Section: Memory Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::proc_mem_data - Program data size (data + stack) in pages -  -

SYNOPSIS

- -

-

-    proc_mem_data:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -Returns the current process data size (data + stack) in pages, or zero when there is no current process or the number of pages couldn't be retrieved. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::proc_mem_data_pid.3stap.html b/man/function::proc_mem_data_pid.3stap.html deleted file mode 100644 index 4e768082..00000000 --- a/man/function::proc_mem_data_pid.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::PROC_MEM_D - -

FUNCTION::PROC_MEM_D

-Section: Memory Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::proc_mem_data_pid - Program data size (data + stack) in pages -  -

SYNOPSIS

- -

-

-    proc_mem_data_pid:long(pid:long)
-
- -  -

ARGUMENTS

- -

- -pid -

-The pid of process to examine -
- -  -

DESCRIPTION

- -

- -Returns the given process data size (data + stack) in pages, or zero when the process doesn't exist or the number of pages couldn't be retrieved. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::proc_mem_rss.3stap.html b/man/function::proc_mem_rss.3stap.html deleted file mode 100644 index 2b50bbad..00000000 --- a/man/function::proc_mem_rss.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::PROC_MEM_R - -

FUNCTION::PROC_MEM_R

-Section: Memory Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::proc_mem_rss - Program resident set size in pages -  -

SYNOPSIS

- -

-

-    proc_mem_rss:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -Returns the resident set size in pages of the current process, or zero when there is no current process or the number of pages couldn't be retrieved. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::proc_mem_rss_pid.3stap.html b/man/function::proc_mem_rss_pid.3stap.html deleted file mode 100644 index 01ea3e51..00000000 --- a/man/function::proc_mem_rss_pid.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::PROC_MEM_R - -

FUNCTION::PROC_MEM_R

-Section: Memory Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::proc_mem_rss_pid - Program resident set size in pages -  -

SYNOPSIS

- -

-

-    proc_mem_rss_pid:long(pid:long)
-
- -  -

ARGUMENTS

- -

- -pid -

-The pid of process to examine -
- -  -

DESCRIPTION

- -

- -Returns the resident set size in pages of the given process, or zero when the process doesn't exist or the number of pages couldn't be retrieved. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::proc_mem_shr.3stap.html b/man/function::proc_mem_shr.3stap.html deleted file mode 100644 index fc94eeb8..00000000 --- a/man/function::proc_mem_shr.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::PROC_MEM_S - -

FUNCTION::PROC_MEM_S

-Section: Memory Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::proc_mem_shr - Program shared pages (from shared mappings) -  -

SYNOPSIS

- -

-

-    proc_mem_shr:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -Returns the shared pages (from shared mappings) of the current process, or zero when there is no current process or the number of pages couldn't be retrieved. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::proc_mem_shr_pid.3stap.html b/man/function::proc_mem_shr_pid.3stap.html deleted file mode 100644 index e08982a6..00000000 --- a/man/function::proc_mem_shr_pid.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::PROC_MEM_S - -

FUNCTION::PROC_MEM_S

-Section: Memory Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::proc_mem_shr_pid - Program shared pages (from shared mappings) -  -

SYNOPSIS

- -

-

-    proc_mem_shr_pid:long(pid:long)
-
- -  -

ARGUMENTS

- -

- -pid -

-The pid of process to examine -
- -  -

DESCRIPTION

- -

- -Returns the shared pages (from shared mappings) of the given process, or zero when the process doesn't exist or the number of pages couldn't be retrieved. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::proc_mem_size.3stap.html b/man/function::proc_mem_size.3stap.html deleted file mode 100644 index 0d890122..00000000 --- a/man/function::proc_mem_size.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::PROC_MEM_S - -

FUNCTION::PROC_MEM_S

-Section: Memory Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::proc_mem_size - Total program virtual memory size in pages -  -

SYNOPSIS

- -

-

-    proc_mem_size:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -Returns the total virtual memory size in pages of the current process, or zero when there is no current process or the number of pages couldn't be retrieved. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::proc_mem_size_pid.3stap.html b/man/function::proc_mem_size_pid.3stap.html deleted file mode 100644 index 1580d54c..00000000 --- a/man/function::proc_mem_size_pid.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::PROC_MEM_S - -

FUNCTION::PROC_MEM_S

-Section: Memory Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::proc_mem_size_pid - Total program virtual memory size in pages -  -

SYNOPSIS

- -

-

-    proc_mem_size_pid:long(pid:long)
-
- -  -

ARGUMENTS

- -

- -pid -

-The pid of process to examine -
- -  -

DESCRIPTION

- -

- -Returns the total virtual memory size in pages of the given process, or zero when that process doesn't exist or the number of pages couldn't be retrieved. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::proc_mem_string.3stap.html b/man/function::proc_mem_string.3stap.html deleted file mode 100644 index 74c9ef21..00000000 --- a/man/function::proc_mem_string.3stap.html +++ /dev/null @@ -1,59 +0,0 @@ - -Manpage of FUNCTION::PROC_MEM_S - -

FUNCTION::PROC_MEM_S

-Section: Memory Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::proc_mem_string - Human readable string of current proc memory usage -  -

SYNOPSIS

- -

-

-    proc_mem_string:string()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -Returns a human readable string showing the size, rss, shr, txt and data of the memory used by the current process. For example -lqsize: 301m, rss: 11m, shr: 8m, txt: 52k, data: 2248krq. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::proc_mem_string_pid.3stap.html b/man/function::proc_mem_string_pid.3stap.html deleted file mode 100644 index bc0cf7db..00000000 --- a/man/function::proc_mem_string_pid.3stap.html +++ /dev/null @@ -1,63 +0,0 @@ - -Manpage of FUNCTION::PROC_MEM_S - -

FUNCTION::PROC_MEM_S

-Section: Memory Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::proc_mem_string_pid - Human readable string of process memory usage -  -

SYNOPSIS

- -

-

-    proc_mem_string_pid:string(pid:long)
-
- -  -

ARGUMENTS

- -

- -pid -

-The pid of process to examine -
- -  -

DESCRIPTION

- -

- -Returns a human readable string showing the size, rss, shr, txt and data of the memory used by the given process. For example -lqsize: 301m, rss: 11m, shr: 8m, txt: 52k, data: 2248krq. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::proc_mem_txt.3stap.html b/man/function::proc_mem_txt.3stap.html deleted file mode 100644 index ff354095..00000000 --- a/man/function::proc_mem_txt.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::PROC_MEM_T - -

FUNCTION::PROC_MEM_T

-Section: Memory Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::proc_mem_txt - Program text (code) size in pages -  -

SYNOPSIS

- -

-

-    proc_mem_txt:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -Returns the current process text (code) size in pages, or zero when there is no current process or the number of pages couldn't be retrieved. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::proc_mem_txt_pid.3stap.html b/man/function::proc_mem_txt_pid.3stap.html deleted file mode 100644 index 6be98165..00000000 --- a/man/function::proc_mem_txt_pid.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::PROC_MEM_T - -

FUNCTION::PROC_MEM_T

-Section: Memory Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::proc_mem_txt_pid - Program text (code) size in pages -  -

SYNOPSIS

- -

-

-    proc_mem_txt_pid:long(pid:long)
-
- -  -

ARGUMENTS

- -

- -pid -

-The pid of process to examine -
- -  -

DESCRIPTION

- -

- -Returns the given process text (code) size in pages, or zero when the process doesn't exist or the number of pages couldn't be retrieved. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::pstrace.3stap.html b/man/function::pstrace.3stap.html deleted file mode 100644 index 75560362..00000000 --- a/man/function::pstrace.3stap.html +++ /dev/null @@ -1,64 +0,0 @@ - -Manpage of FUNCTION::PSTRACE - -

FUNCTION::PSTRACE

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::pstrace - Chain of processes and pids back to init(1) -  -

SYNOPSIS

- -

-

-    pstrace:string(task:long)
-
- -  -

ARGUMENTS

- -

- -task -

-Pointer to task struct of process -
- -  -

DESCRIPTION

- -

- -This function returns a string listing execname and pid for each process starting from -task -back to the process ancestor that init(1) spawned. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::qs_done.3stap.html b/man/function::qs_done.3stap.html deleted file mode 100644 index 259e500e..00000000 --- a/man/function::qs_done.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::QS_DONE - -

FUNCTION::QS_DONE

-Section: Queue Statistics Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::qs_done - Function to record finishing request -  -

SYNOPSIS

- -

-

-    qs_done(qname:string)
-
- -  -

ARGUMENTS

- -

- -qname -

-the name of the service that finished -
- -  -

DESCRIPTION

- -

- -This function records that a request originally from the given queue has completed being serviced. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::qs_run.3stap.html b/man/function::qs_run.3stap.html deleted file mode 100644 index c0e60d95..00000000 --- a/man/function::qs_run.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::QS_RUN - -

FUNCTION::QS_RUN

-Section: Queue Statistics Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::qs_run - Function to record being moved from wait queue to being serviced -  -

SYNOPSIS

- -

-

-    qs_run(qname:string)
-
- -  -

ARGUMENTS

- -

- -qname -

-the name of the service being moved and started -
- -  -

DESCRIPTION

- -

- -This function records that the previous enqueued request was removed from the given wait queue and is now being serviced. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::qs_wait.3stap.html b/man/function::qs_wait.3stap.html deleted file mode 100644 index 178c2346..00000000 --- a/man/function::qs_wait.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::QS_WAIT - -

FUNCTION::QS_WAIT

-Section: Queue Statistics Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::qs_wait - Function to record enqueue requests -  -

SYNOPSIS

- -

-

-    qs_wait(qname:string)
-
- -  -

ARGUMENTS

- -

- -qname -

-the name of the queue requesting enqueue -
- -  -

DESCRIPTION

- -

- -This function records that a new request was enqueued for the given queue name. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::qsq_blocked.3stap.html b/man/function::qsq_blocked.3stap.html deleted file mode 100644 index 344334ff..00000000 --- a/man/function::qsq_blocked.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of FUNCTION::QSQ_BLOCKE - -

FUNCTION::QSQ_BLOCKE

-Section: Queue Statistics Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::qsq_blocked - Returns the time reqest was on the wait queue -  -

SYNOPSIS

- -

-

-    qsq_blocked:long(qname:string,scale:long)
-
- -  -

ARGUMENTS

- -

- -qname -

-queue name -
- -

- -scale -

-scale variable to take account for interval fraction -
- -  -

DESCRIPTION

- -

- -This function returns the fraction of elapsed time during which one or more requests were on the wait queue. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::qsq_print.3stap.html b/man/function::qsq_print.3stap.html deleted file mode 100644 index 316ed8fa..00000000 --- a/man/function::qsq_print.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of FUNCTION::QSQ_PRINT - -

FUNCTION::QSQ_PRINT

-Section: Queue Statistics Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::qsq_print - Prints a line of statistics for the given queue -  -

SYNOPSIS

- -

-

-    qsq_print(qname:string)
-
- -  -

ARGUMENTS

- -

- -qname -

-queue name -
- -  -

DESCRIPTION

- -

- -This function prints a line containing the following -  -

STATISTICS FOR THE GIVEN QUEUE

- -

- -the queue name, the average rate of requests per second, the average wait queue length, the average time on the wait queue, the average time to service a request, the percentage of time the wait queue was used, and the percentage of time request was being serviced. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
STATISTICS FOR THE GIVEN QUEUE
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::qsq_service_time.3stap.html b/man/function::qsq_service_time.3stap.html deleted file mode 100644 index 80a79e80..00000000 --- a/man/function::qsq_service_time.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of FUNCTION::QSQ_SERVIC - -

FUNCTION::QSQ_SERVIC

-Section: Queue Statistics Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::qsq_service_time - Amount of time per request service -  -

SYNOPSIS

- -

-

-    qsq_service_time:long(qname:string,scale:long)
-
- -  -

ARGUMENTS

- -

- -qname -

-queue name -
- -

- -scale -

-scale variable to take account for interval fraction -
- -  -

DESCRIPTION

- -

- -This function returns the average time in microseconds required to service a request once it is removed from the wait queue. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::qsq_start.3stap.html b/man/function::qsq_start.3stap.html deleted file mode 100644 index 6ce9fa25..00000000 --- a/man/function::qsq_start.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::QSQ_START - -

FUNCTION::QSQ_START

-Section: Queue Statistics Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::qsq_start - Function to reset the stats for a queue -  -

SYNOPSIS

- -

-

-    qsq_start(qname:string)
-
- -  -

ARGUMENTS

- -

- -qname -

-the name of the service that finished -
- -  -

DESCRIPTION

- -

- -This function resets the statistics counters for the given queue, and restarts tracking from the moment the function was called. This function is also used to create intialize a queue. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::qsq_throughput.3stap.html b/man/function::qsq_throughput.3stap.html deleted file mode 100644 index 032f4491..00000000 --- a/man/function::qsq_throughput.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of FUNCTION::QSQ_THROUG - -

FUNCTION::QSQ_THROUG

-Section: Queue Statistics Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::qsq_throughput - Number of requests served per unit time -  -

SYNOPSIS

- -

-

-    qsq_throughput:long(qname:string,scale:long)
-
- -  -

ARGUMENTS

- -

- -qname -

-queue name -
- -

- -scale -

-scale variable to take account for interval fraction -
- -  -

DESCRIPTION

- -

- -This function returns the average number or requests served per microsecond. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::qsq_utilization.3stap.html b/man/function::qsq_utilization.3stap.html deleted file mode 100644 index 01fc20db..00000000 --- a/man/function::qsq_utilization.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of FUNCTION::QSQ_UTILIZ - -

FUNCTION::QSQ_UTILIZ

-Section: Queue Statistics Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::qsq_utilization - Fraction of time that any request was being serviced -  -

SYNOPSIS

- -

-

-    qsq_utilization:long(qname:string,scale:long)
-
- -  -

ARGUMENTS

- -

- -qname -

-queue name -
- -

- -scale -

-scale variable to take account for interval fraction -
- -  -

DESCRIPTION

- -

- -This function returns the average time in microseconds that at least one request was being serviced. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::qsq_wait_queue_length.3stap.html b/man/function::qsq_wait_queue_length.3stap.html deleted file mode 100644 index 69e90c1a..00000000 --- a/man/function::qsq_wait_queue_length.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of FUNCTION::QSQ_WAIT_Q - -

FUNCTION::QSQ_WAIT_Q

-Section: Queue Statistics Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::qsq_wait_queue_length - length of wait queue -  -

SYNOPSIS

- -

-

-    qsq_wait_queue_length:long(qname:string,scale:long)
-
- -  -

ARGUMENTS

- -

- -qname -

-queue name -
- -

- -scale -

-scale variable to take account for interval fraction -
- -  -

DESCRIPTION

- -

- -This function returns the average length of the wait queue -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::qsq_wait_time.3stap.html b/man/function::qsq_wait_time.3stap.html deleted file mode 100644 index 185105e9..00000000 --- a/man/function::qsq_wait_time.3stap.html +++ /dev/null @@ -1,71 +0,0 @@ - -Manpage of FUNCTION::QSQ_WAIT_T - -

FUNCTION::QSQ_WAIT_T

-Section: Queue Statistics Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::qsq_wait_time - Amount of time in queue + service per request -  -

SYNOPSIS

- -

-

-    qsq_wait_time:long(qname:string,scale:long)
-
- -  -

ARGUMENTS

- -

- -qname -

-queue name -
- -

- -scale -

-scale variable to take account for interval fraction -
- -  -

DESCRIPTION

- -

- -This function returns the average time in microseconds that it took for a request to be serviced (qs_wait -to -qa_done). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::randint.3stap.html b/man/function::randint.3stap.html deleted file mode 100644 index 337d0cac..00000000 --- a/man/function::randint.3stap.html +++ /dev/null @@ -1,55 +0,0 @@ - -Manpage of FUNCTION::RANDINT - -

FUNCTION::RANDINT

-Section: Random functions Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::randint - Return a random number between [0,n) -  -

SYNOPSIS

- -

-

-    randint:long(n:long)
-
- -  -

ARGUMENTS

- -

- -n -

-Number past upper limit of range, not larger than 2**20. -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::read_stopwatch_ms.3stap.html b/man/function::read_stopwatch_ms.3stap.html deleted file mode 100644 index beb624ee..00000000 --- a/man/function::read_stopwatch_ms.3stap.html +++ /dev/null @@ -1,65 +0,0 @@ - -Manpage of FUNCTION::READ_STOPW - -

FUNCTION::READ_STOPW

-Section: Timestamp Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::read_stopwatch_ms - Reads the time in milliseconds for a stopwatch -  -

SYNOPSIS

- -

-

-    read_stopwatch_ms:long(name:string)
-
- -  -

ARGUMENTS

- -

- -name -

-stopwatch name -
- -  -

DESCRIPTION

- -

- -Returns time in milliseconds for stopwatch -name. Creates stopwatch -name -if it does not currently exist. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::read_stopwatch_ns.3stap.html b/man/function::read_stopwatch_ns.3stap.html deleted file mode 100644 index 0583706a..00000000 --- a/man/function::read_stopwatch_ns.3stap.html +++ /dev/null @@ -1,65 +0,0 @@ - -Manpage of FUNCTION::READ_STOPW - -

FUNCTION::READ_STOPW

-Section: Timestamp Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::read_stopwatch_ns - Reads the time in nanoseconds for a stopwatch -  -

SYNOPSIS

- -

-

-    read_stopwatch_ns:long(name:string)
-
- -  -

ARGUMENTS

- -

- -name -

-stopwatch name -
- -  -

DESCRIPTION

- -

- -Returns time in nanoseconds for stopwatch -name. Creates stopwatch -name -if it does not currently exist. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::read_stopwatch_s.3stap.html b/man/function::read_stopwatch_s.3stap.html deleted file mode 100644 index cb76f67d..00000000 --- a/man/function::read_stopwatch_s.3stap.html +++ /dev/null @@ -1,65 +0,0 @@ - -Manpage of FUNCTION::READ_STOPW - -

FUNCTION::READ_STOPW

-Section: Timestamp Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::read_stopwatch_s - Reads the time in seconds for a stopwatch -  -

SYNOPSIS

- -

-

-    read_stopwatch_s:long(name:string)
-
- -  -

ARGUMENTS

- -

- -name -

-stopwatch name -
- -  -

DESCRIPTION

- -

- -Returns time in seconds for stopwatch -name. Creates stopwatch -name -if it does not currently exist. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::read_stopwatch_us.3stap.html b/man/function::read_stopwatch_us.3stap.html deleted file mode 100644 index 1e50d6c1..00000000 --- a/man/function::read_stopwatch_us.3stap.html +++ /dev/null @@ -1,65 +0,0 @@ - -Manpage of FUNCTION::READ_STOPW - -

FUNCTION::READ_STOPW

-Section: Timestamp Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::read_stopwatch_us - Reads the time in microseconds for a stopwatch -  -

SYNOPSIS

- -

-

-    read_stopwatch_us:long(name:string)
-
- -  -

ARGUMENTS

- -

- -name -

-stopwatch name -
- -  -

DESCRIPTION

- -

- -Returns time in microseconds for stopwatch -name. Creates stopwatch -name -if it does not currently exist. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::real_mount.3stap.html b/man/function::real_mount.3stap.html deleted file mode 100644 index 2e04a13c..00000000 --- a/man/function::real_mount.3stap.html +++ /dev/null @@ -1,64 +0,0 @@ - -Manpage of FUNCTION::REAL_MOUNT - -

FUNCTION::REAL_MOUNT

-Section: Directory-entry (dentry) Tapse (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::real_mount - get the 'struct mount' pointer -  -

SYNOPSIS

- -

-

-    real_mount:long(vfsmnt:long)
-
- -  -

ARGUMENTS

- -

- -vfsmnt -

-Pointer to 'struct vfsmount' -
- -  -

DESCRIPTION

- -

- -

- -Returns the 'struct mount' pointer value for a 'struct vfsmount' pointer. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::register.3stap.html b/man/function::register.3stap.html deleted file mode 100644 index a52767a1..00000000 --- a/man/function::register.3stap.html +++ /dev/null @@ -1,74 +0,0 @@ - -Manpage of FUNCTION::REGISTER - -

FUNCTION::REGISTER

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::register - Return the signed value of the named CPU register -  -

SYNOPSIS

- -

-

-    register:long(name:string)
-
- -  -

ARGUMENTS

- -

- -name -

-Name of the register to return -
- -  -

DESCRIPTION

- -

- -Return the value of the named CPU register, as it was saved when the current probe point was hit. If the register is 32 bits, it is sign-extended to 64 bits. -

- -For the i386 architecture, the following names are recognized. (name1/name2 indicates that name1 and name2 are alternative names for the same register.) eax/ax, ebp/bp, ebx/bx, ecx/cx, edi/di, edx/dx, eflags/flags, eip/ip, esi/si, esp/sp, orig_eax/orig_ax, xcs/cs, xds/ds, xes/es, xfs/fs, xss/ss. -

- -For the x86_64 architecture, the following names are recognized: 64-bit registers: r8, r9, r10, r11, r12, r13, r14, r15, rax/ax, rbp/bp, rbx/bx, rcx/cx, rdi/di, rdx/dx, rip/ip, rsi/si, rsp/sp; 32-bit registers: eax, ebp, ebx, ecx, edx, edi, edx, eip, esi, esp, flags/eflags, orig_eax; segment registers: xcs/cs, xss/ss. -

- -For powerpc, the following names are recognized: r0, r1, ... r31, nip, msr, orig_gpr3, ctr, link, xer, ccr, softe, trap, dar, dsisr, result. -

- -For s390x, the following names are recognized: r0, r1, ... r15, args, psw.mask, psw.addr, orig_gpr2, ilc, trap. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::registers_valid.3stap.html b/man/function::registers_valid.3stap.html deleted file mode 100644 index ee90cac9..00000000 --- a/man/function::registers_valid.3stap.html +++ /dev/null @@ -1,64 +0,0 @@ - -Manpage of FUNCTION::REGISTERS_ - -

FUNCTION::REGISTERS_

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::registers_valid - Determines validity of register and u_register in current context -  -

SYNOPSIS

- -

-

-    registers_valid:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns 1 if -register -and -u_register -can be used in the current context, or 0 otherwise. For example, -registers_valid -returns 0 when called from a begin or end probe. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::regparm.3stap.html b/man/function::regparm.3stap.html deleted file mode 100644 index 200c7436..00000000 --- a/man/function::regparm.3stap.html +++ /dev/null @@ -1,65 +0,0 @@ - -Manpage of FUNCTION::REGPARM - -

FUNCTION::REGPARM

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::regparm - Specify regparm value used to compile function -  -

SYNOPSIS

- -

-

-    regparm(n:long)
-
- -  -

ARGUMENTS

- -

- -n -

-original regparm value -
- -  -

DESCRIPTION

- -

- -Call this function with argument n before accessing function arguments using the *_arg function is the function was build with the gcc -mregparm=n option. -

- -(The i386 kernel is built with \-mregparm=3, so systemtap considers regparm(3) the default for kernel functions on that architecture.) Only valid on i386 and x86_64 (when probing 32bit applications). Produces an error on other architectures. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::remote_id.3stap.html b/man/function::remote_id.3stap.html deleted file mode 100644 index 389770bf..00000000 --- a/man/function::remote_id.3stap.html +++ /dev/null @@ -1,63 +0,0 @@ - -Manpage of FUNCTION::REMOTE_ID - -

FUNCTION::REMOTE_ID

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::remote_id - The index of this instance in a remote execution. -  -

SYNOPSIS

- -

-

-    remote_id:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns a number 0..N, which is the unique index of this particular script execution from a swarm of -lqstap --remote A --remote B ...rq -runs, and is the same number -lqstap --remote-prefixrq -would print. The function returns -1 if the script was not launched with -lqstap --remoterq, or if the remote staprun/stapsh are older than version 1.7. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::remote_uri.3stap.html b/man/function::remote_uri.3stap.html deleted file mode 100644 index a6ec97b3..00000000 --- a/man/function::remote_uri.3stap.html +++ /dev/null @@ -1,61 +0,0 @@ - -Manpage of FUNCTION::REMOTE_URI - -

FUNCTION::REMOTE_URI

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::remote_uri - The name of this instance in a remote execution. -  -

SYNOPSIS

- -

-

-    remote_uri:string()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns the remote host used to invoke this particular script execution from a swarm of -lqstap --remoterq -runs. It may not be unique among the swarm. The function returns an empty string if the script was not launched with -lqstap --remoterq. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::return_str.3stap.html b/man/function::return_str.3stap.html deleted file mode 100644 index 0f83bb28..00000000 --- a/man/function::return_str.3stap.html +++ /dev/null @@ -1,74 +0,0 @@ - -Manpage of FUNCTION::RETURN_STR - -

FUNCTION::RETURN_STR

-Section: Errno Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::return_str - Formats the return value as a string -  -

SYNOPSIS

- -

-

-    return_str:string(format:long,ret:long)
-
- -  -

ARGUMENTS

- -

- -format -

-Variable to determine return type base value -
- -

- -ret -

-Return value (typically -$return) -
- -  -

DESCRIPTION

- -

- -This function is used by the syscall tapset, and returns a string. Set format equal to 1 for a decimal, 2 for hex, 3 for octal. -

- -Note that this function is preferred over -returnstr. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::returnstr.3stap.html b/man/function::returnstr.3stap.html deleted file mode 100644 index 170baf1b..00000000 --- a/man/function::returnstr.3stap.html +++ /dev/null @@ -1,66 +0,0 @@ - -Manpage of FUNCTION::RETURNSTR - -

FUNCTION::RETURNSTR

-Section: Errno Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::returnstr - Formats the return value as a string -  -

SYNOPSIS

- -

-

-    returnstr:string(format:long)
-
- -  -

ARGUMENTS

- -

- -format -

-Variable to determine return type base value -
- -  -

DESCRIPTION

- -

- -This function is used by the nd_syscall tapset, and returns a string. Set format equal to 1 for a decimal, 2 for hex, 3 for octal. -

- -Note that this function should only be used in dwarfless probes (i.e. 'kprobe.function(lqfoorq)'). Other probes should use -return_str. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::returnval.3stap.html b/man/function::returnval.3stap.html deleted file mode 100644 index e2beb9fe..00000000 --- a/man/function::returnval.3stap.html +++ /dev/null @@ -1,60 +0,0 @@ - -Manpage of FUNCTION::RETURNVAL - -

FUNCTION::RETURNVAL

-Section: Errno Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::returnval - Possible return value of probed function -  -

SYNOPSIS

- -

-

-    returnval:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -Return the value of the register in which function values are typically returned. Can be used in probes where -$return -isn't available. This is only a guess of the actual return value and can be totally wrong. Normally only used in dwarfless probes. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::reverse_path_walk.3stap.html b/man/function::reverse_path_walk.3stap.html deleted file mode 100644 index 5b768182..00000000 --- a/man/function::reverse_path_walk.3stap.html +++ /dev/null @@ -1,64 +0,0 @@ - -Manpage of FUNCTION::REVERSE_PA - -

FUNCTION::REVERSE_PA

-Section: Directory-entry (dentry) Tapse (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::reverse_path_walk - get the full dirent path -  -

SYNOPSIS

- -

-

-    reverse_path_walk:string(dentry:long)
-
- -  -

ARGUMENTS

- -

- -dentry -

-Pointer to dentry. -
- -  -

DESCRIPTION

- -

- -

- -Returns the path name (partial path to mount point). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::s32_arg.3stap.html b/man/function::s32_arg.3stap.html deleted file mode 100644 index 0c0c13c1..00000000 --- a/man/function::s32_arg.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::S32_ARG - -

FUNCTION::S32_ARG

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::s32_arg - Return function argument as signed 32-bit value -  -

SYNOPSIS

- -

-

-    s32_arg:long(n:long)
-
- -  -

ARGUMENTS

- -

- -n -

-index of argument to return -
- -  -

DESCRIPTION

- -

- -Return the signed 32-bit value of argument n, same as int_arg. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::s64_arg.3stap.html b/man/function::s64_arg.3stap.html deleted file mode 100644 index 729a7627..00000000 --- a/man/function::s64_arg.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::S64_ARG - -

FUNCTION::S64_ARG

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::s64_arg - Return function argument as signed 64-bit value -  -

SYNOPSIS

- -

-

-    s64_arg:long(n:long)
-
- -  -

ARGUMENTS

- -

- -n -

-index of argument to return -
- -  -

DESCRIPTION

- -

- -Return the signed 64-bit value of argument n, same as longlong_arg. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::sa_flags_str.3stap.html b/man/function::sa_flags_str.3stap.html deleted file mode 100644 index 685c4e30..00000000 --- a/man/function::sa_flags_str.3stap.html +++ /dev/null @@ -1,55 +0,0 @@ - -Manpage of FUNCTION::SA_FLAGS_S - -

FUNCTION::SA_FLAGS_S

-Section: Signal Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::sa_flags_str - Returns the string representation of sa_flags -  -

SYNOPSIS

- -

-

-    sa_flags_str:string(sa_flags:long)
-
- -  -

ARGUMENTS

- -

- -sa_flags -

-the set of flags to convert to string. -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::sa_handler_str.3stap.html b/man/function::sa_handler_str.3stap.html deleted file mode 100644 index 80496342..00000000 --- a/man/function::sa_handler_str.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::SA_HANDLER - -

FUNCTION::SA_HANDLER

-Section: Signal Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::sa_handler_str - Returns the string representation of an sa_handler -  -

SYNOPSIS

- -

-

-    sa_handler_str(handler:)
-
- -  -

ARGUMENTS

- -

- -handler -

-the sa_handler to convert to string. -
- -  -

DESCRIPTION

- -

- -Returns the string representation of an sa_handler. If it is not SIG_DFL, SIG_IGN or SIG_ERR, it will return the address of the handler. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::set_kernel_char.3stap.html b/man/function::set_kernel_char.3stap.html deleted file mode 100644 index ef1fa34a..00000000 --- a/man/function::set_kernel_char.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of FUNCTION::SET_KERNEL - -

FUNCTION::SET_KERNEL

-Section: String and data writing functi (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::set_kernel_char - Writes a char value to kernel memory -  -

SYNOPSIS

- -

-

-    set_kernel_char(addr:long,val:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-The kernel address to write the char to -
- -

- -val -

-The char which is to be written -
- -  -

DESCRIPTION

- -

- -Writes the char value to a given kernel memory address. Reports an error when writing to the given address fails. Requires the use of guru mode (-g). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::set_kernel_int.3stap.html b/man/function::set_kernel_int.3stap.html deleted file mode 100644 index cd13a437..00000000 --- a/man/function::set_kernel_int.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of FUNCTION::SET_KERNEL - -

FUNCTION::SET_KERNEL

-Section: String and data writing functi (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::set_kernel_int - Writes an int value to kernel memory -  -

SYNOPSIS

- -

-

-    set_kernel_int(addr:long,val:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-The kernel address to write the int to -
- -

- -val -

-The int which is to be written -
- -  -

DESCRIPTION

- -

- -Writes the int value to a given kernel memory address. Reports an error when writing to the given address fails. Requires the use of guru mode (-g). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::set_kernel_long.3stap.html b/man/function::set_kernel_long.3stap.html deleted file mode 100644 index 91554aa5..00000000 --- a/man/function::set_kernel_long.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of FUNCTION::SET_KERNEL - -

FUNCTION::SET_KERNEL

-Section: String and data writing functi (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::set_kernel_long - Writes a long value to kernel memory -  -

SYNOPSIS

- -

-

-    set_kernel_long(addr:long,val:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-The kernel address to write the long to -
- -

- -val -

-The long which is to be written -
- -  -

DESCRIPTION

- -

- -Writes the long value to a given kernel memory address. Reports an error when writing to the given address fails. Requires the use of guru mode (-g). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::set_kernel_pointer.3stap.html b/man/function::set_kernel_pointer.3stap.html deleted file mode 100644 index c1507f5f..00000000 --- a/man/function::set_kernel_pointer.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of FUNCTION::SET_KERNEL - -

FUNCTION::SET_KERNEL

-Section: String and data writing functi (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::set_kernel_pointer - Writes a pointer value to kernel memory. -  -

SYNOPSIS

- -

-

-    set_kernel_pointer(addr:long,val:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-The kernel address to write the pointer to -
- -

- -val -

-The pointer which is to be written -
- -  -

DESCRIPTION

- -

- -Writes the pointer value to a given kernel memory address. Reports an error when writing to the given address fails. Requires the use of guru mode (-g). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::set_kernel_short.3stap.html b/man/function::set_kernel_short.3stap.html deleted file mode 100644 index 3b82ae8a..00000000 --- a/man/function::set_kernel_short.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of FUNCTION::SET_KERNEL - -

FUNCTION::SET_KERNEL

-Section: String and data writing functi (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::set_kernel_short - Writes a short value to kernel memory -  -

SYNOPSIS

- -

-

-    set_kernel_short(addr:long,val:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-The kernel address to write the short to -
- -

- -val -

-The short which is to be written -
- -  -

DESCRIPTION

- -

- -Writes the short value to a given kernel memory address. Reports an error when writing to the given address fails. Requires the use of guru mode (-g). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::set_kernel_string.3stap.html b/man/function::set_kernel_string.3stap.html deleted file mode 100644 index 2692b5f4..00000000 --- a/man/function::set_kernel_string.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of FUNCTION::SET_KERNEL - -

FUNCTION::SET_KERNEL

-Section: String and data writing functi (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::set_kernel_string - Writes a string to kernel memory -  -

SYNOPSIS

- -

-

-    set_kernel_string(addr:long,val:string)
-
- -  -

ARGUMENTS

- -

- -addr -

-The kernel address to write the string to -
- -

- -val -

-The string which is to be written -
- -  -

DESCRIPTION

- -

- -Writes the given string to a given kernel memory address. Reports an error on string copy fault. Requires the use of guru mode (-g). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::set_kernel_string_n.3stap.html b/man/function::set_kernel_string_n.3stap.html deleted file mode 100644 index 656eaa1b..00000000 --- a/man/function::set_kernel_string_n.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of FUNCTION::SET_KERNEL - -

FUNCTION::SET_KERNEL

-Section: String and data writing functi (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::set_kernel_string_n - Writes a string of given length to kernel memory -  -

SYNOPSIS

- -

-

-    set_kernel_string_n(addr:long,n:long,val:string)
-
- -  -

ARGUMENTS

- -

- -addr -

-The kernel address to write the string to -
- -

- -n -

-The maximum length of the string -
- -

- -val -

-The string which is to be written -
- -  -

DESCRIPTION

- -

- -Writes the given string up to a maximum given length to a given kernel memory address. Reports an error on string copy fault. Requires the use of guru mode (-g). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::sid.3stap.html b/man/function::sid.3stap.html deleted file mode 100644 index 584c5232..00000000 --- a/man/function::sid.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::SID - -

FUNCTION::SID

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::sid - Returns the session ID of the current process -  -

SYNOPSIS

- -

-

-    sid:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -The session ID of a process is the process group ID of the session leader. Session ID is stored in the signal_struct since Kernel 2.6.0. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::signal_str.3stap.html b/man/function::signal_str.3stap.html deleted file mode 100644 index 147083c6..00000000 --- a/man/function::signal_str.3stap.html +++ /dev/null @@ -1,55 +0,0 @@ - -Manpage of FUNCTION::SIGNAL_STR - -

FUNCTION::SIGNAL_STR

-Section: Signal Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::signal_str - Returns the string representation of a signal number -  -

SYNOPSIS

- -

-

-    signal_str(num:)
-
- -  -

ARGUMENTS

- -

- -num -

-the signal number to convert to string. -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::sigset_mask_str.3stap.html b/man/function::sigset_mask_str.3stap.html deleted file mode 100644 index d5b37e05..00000000 --- a/man/function::sigset_mask_str.3stap.html +++ /dev/null @@ -1,55 +0,0 @@ - -Manpage of FUNCTION::SIGSET_MAS - -

FUNCTION::SIGSET_MAS

-Section: Signal Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::sigset_mask_str - Returns the string representation of a sigset -  -

SYNOPSIS

- -

-

-    sigset_mask_str:string(mask:long)
-
- -  -

ARGUMENTS

- -

- -mask -

-the sigset to convert to string. -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::sock_fam_num2str.3stap.html b/man/function::sock_fam_num2str.3stap.html deleted file mode 100644 index e60f4904..00000000 --- a/man/function::sock_fam_num2str.3stap.html +++ /dev/null @@ -1,55 +0,0 @@ - -Manpage of FUNCTION::SOCK_FAM_N - -

FUNCTION::SOCK_FAM_N

-Section: Socket Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::sock_fam_num2str - Given a protocol family number, return a string representation -  -

SYNOPSIS

- -

-

-    sock_fam_num2str:string(family:long)
-
- -  -

ARGUMENTS

- -

- -family -

-The family number -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::sock_fam_str2num.3stap.html b/man/function::sock_fam_str2num.3stap.html deleted file mode 100644 index 88b16bd5..00000000 --- a/man/function::sock_fam_str2num.3stap.html +++ /dev/null @@ -1,55 +0,0 @@ - -Manpage of FUNCTION::SOCK_FAM_S - -

FUNCTION::SOCK_FAM_S

-Section: Socket Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::sock_fam_str2num - Given a protocol family name (string), return the corresponding protocol family number -  -

SYNOPSIS

- -

-

-    sock_fam_str2num:long(family:string)
-
- -  -

ARGUMENTS

- -

- -family -

-The family name -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::sock_prot_num2str.3stap.html b/man/function::sock_prot_num2str.3stap.html deleted file mode 100644 index b2153135..00000000 --- a/man/function::sock_prot_num2str.3stap.html +++ /dev/null @@ -1,55 +0,0 @@ - -Manpage of FUNCTION::SOCK_PROT_ - -

FUNCTION::SOCK_PROT_

-Section: Socket Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::sock_prot_num2str - Given a protocol number, return a string representation -  -

SYNOPSIS

- -

-

-    sock_prot_num2str:string(proto:long)
-
- -  -

ARGUMENTS

- -

- -proto -

-The protocol number -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::sock_prot_str2num.3stap.html b/man/function::sock_prot_str2num.3stap.html deleted file mode 100644 index a53b01a7..00000000 --- a/man/function::sock_prot_str2num.3stap.html +++ /dev/null @@ -1,55 +0,0 @@ - -Manpage of FUNCTION::SOCK_PROT_ - -

FUNCTION::SOCK_PROT_

-Section: Socket Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::sock_prot_str2num - Given a protocol name (string), return the corresponding protocol number -  -

SYNOPSIS

- -

-

-    sock_prot_str2num:long(proto:string)
-
- -  -

ARGUMENTS

- -

- -proto -

-The protocol name -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::sock_state_num2str.3stap.html b/man/function::sock_state_num2str.3stap.html deleted file mode 100644 index 0a33464b..00000000 --- a/man/function::sock_state_num2str.3stap.html +++ /dev/null @@ -1,55 +0,0 @@ - -Manpage of FUNCTION::SOCK_STATE - -

FUNCTION::SOCK_STATE

-Section: Socket Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::sock_state_num2str - Given a socket state number, return a string representation -  -

SYNOPSIS

- -

-

-    sock_state_num2str:string(state:long)
-
- -  -

ARGUMENTS

- -

- -state -

-The state number -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::sock_state_str2num.3stap.html b/man/function::sock_state_str2num.3stap.html deleted file mode 100644 index 87b3eb21..00000000 --- a/man/function::sock_state_str2num.3stap.html +++ /dev/null @@ -1,55 +0,0 @@ - -Manpage of FUNCTION::SOCK_STATE - -

FUNCTION::SOCK_STATE

-Section: Socket Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::sock_state_str2num - Given a socket state string, return the corresponding state number -  -

SYNOPSIS

- -

-

-    sock_state_str2num:long(state:string)
-
- -  -

ARGUMENTS

- -

- -state -

-The state name -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::speculate.3stap.html b/man/function::speculate.3stap.html deleted file mode 100644 index 2c5cbdb8..00000000 --- a/man/function::speculate.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of FUNCTION::SPECULATE - -

FUNCTION::SPECULATE

-Section: Speculation (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::speculate - Store a string for possible output later -  -

SYNOPSIS

- -

-

-    speculate(id:long,output:string)
-
- -  -

ARGUMENTS

- -

- -id -

-buffer id to store the information in -
- -

- -output -

-string to write out when commit occurs -
- -  -

DESCRIPTION

- -

- -Add a string to the speculaive buffer for id. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::speculation.3stap.html b/man/function::speculation.3stap.html deleted file mode 100644 index 8a4a2aeb..00000000 --- a/man/function::speculation.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::SPECULATIO - -

FUNCTION::SPECULATIO

-Section: Speculation (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::speculation - Allocate a new id for speculative output -  -

SYNOPSIS

- -

-

-    speculation:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -

- -The -speculation -function is called when a new speculation buffer is needed. It returns an id for the speculative output. There can be multiple threads being speculated on concurrently. This id is used by other speculation functions to keep the threads separate. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::sprint_backtrace.3stap.html b/man/function::sprint_backtrace.3stap.html deleted file mode 100644 index d31da521..00000000 --- a/man/function::sprint_backtrace.3stap.html +++ /dev/null @@ -1,61 +0,0 @@ - -Manpage of FUNCTION::SPRINT_BAC - -

FUNCTION::SPRINT_BAC

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::sprint_backtrace - Return stack back trace as string -  -

SYNOPSIS

- -

-

-    sprint_backtrace:string()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -

- -Returns a simple (kernel) backtrace. One line per address. Includes the symbol name (or hex address if symbol couldn't be resolved) and module name (if found). Includes the offset from the start of the function if found, otherwise the offset will be added to the module (if found, between brackets). Returns the backtrace as string (each line terminated by a newline character). Note that the returned stack will be truncated to MAXSTRINGLEN, to print fuller and richer stacks use -print_backtrace. Equivalent to sprint_stack(backtrace), but more efficient (no need to translate between hex strings and final backtrace string). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::sprint_stack.3stap.html b/man/function::sprint_stack.3stap.html deleted file mode 100644 index 9a8839bc..00000000 --- a/man/function::sprint_stack.3stap.html +++ /dev/null @@ -1,75 +0,0 @@ - -Manpage of FUNCTION::SPRINT_STA - -

FUNCTION::SPRINT_STA

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::sprint_stack - Return stack for kernel addresses from string -  -

SYNOPSIS

- -

-

-    sprint_stack:string(stk:string)
-
- -  -

ARGUMENTS

- -

- -stk -

-String with list of hexadecimal (kernel) addresses -
- -  -

DESCRIPTION

- -

- -Perform a symbolic lookup of the addresses in the given string, which is assumed to be the result of a prior call to -backtrace. -

- -Returns a simple backtrace from the given hex string. One line per address. Includes the symbol name (or hex address if symbol couldn't be resolved) and module name (if found). Includes the offset from the start of the function if found, otherwise the offset will be added to the module (if found, between brackets). Returns the backtrace as string (each line terminated by a newline character). Note that the returned stack will be truncated to MAXSTRINGLEN, to print fuller and richer stacks use print_stack. -  -

NOTE

- -

- -it is recommended to use -sprint_syms -instead of this function. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
NOTE
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::sprint_syms.3stap.html b/man/function::sprint_syms.3stap.html deleted file mode 100644 index 06860626..00000000 --- a/man/function::sprint_syms.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of FUNCTION::SPRINT_SYM - -

FUNCTION::SPRINT_SYM

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::sprint_syms - Return stack for kernel addresses from string -  -

SYNOPSIS

- -

-

-    sprint_syms(callers:string)
-
- -  -

ARGUMENTS

- -

- -callers -

-String with list of hexadecimal (kernel) addresses -
- -  -

DESCRIPTION

- -

- -Perform a symbolic lookup of the addresses in the given string, which are assumed to be the result of a prior calls to -stack, -callers, and similar functions. -

- -Returns a simple backtrace from the given hex string. One line per address. Includes the symbol name (or hex address if symbol couldn't be resolved) and module name (if found), as obtained from -symdata. Includes the offset from the start of the function if found, otherwise the offset will be added to the module (if found, between brackets). Returns the backtrace as string (each line terminated by a newline character). Note that the returned stack will be truncated to MAXSTRINGLEN, to print fuller and richer stacks use -print_syms. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::sprint_ubacktrace.3stap.html b/man/function::sprint_ubacktrace.3stap.html deleted file mode 100644 index 35bac60a..00000000 --- a/man/function::sprint_ubacktrace.3stap.html +++ /dev/null @@ -1,68 +0,0 @@ - -Manpage of FUNCTION::SPRINT_UBA - -

FUNCTION::SPRINT_UBA

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::sprint_ubacktrace - Return stack back trace for current user-space task as string. -  -

SYNOPSIS

- -

-

-    sprint_ubacktrace:string()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -

- -Returns a simple backtrace for the current task. One line per address. Includes the symbol name (or hex address if symbol couldn't be resolved) and module name (if found). Includes the offset from the start of the function if found, otherwise the offset will be added to the module (if found, between brackets). Returns the backtrace as string (each line terminated by a newline character). Note that the returned stack will be truncated to MAXSTRINGLEN, to print fuller and richer stacks use -print_ubacktrace. Equivalent to sprint_ustack(ubacktrace), but more efficient (no need to translate between hex strings and final backtrace string). -  -

NOTE

- -

- -To get (full) backtraces for user space applications and shared shared libraries not mentioned in the current script run stap with -d /path/to/exe-or-so and/or add --ldd to load all needed unwind data. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
NOTE
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::sprint_ustack.3stap.html b/man/function::sprint_ustack.3stap.html deleted file mode 100644 index bd9f6b5c..00000000 --- a/man/function::sprint_ustack.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of FUNCTION::SPRINT_UST - -

FUNCTION::SPRINT_UST

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::sprint_ustack - Return stack for the current task from string. -  -

SYNOPSIS

- -

-

-    sprint_ustack:string(stk:string)
-
- -  -

ARGUMENTS

- -

- -stk -

-String with list of hexadecimal addresses for the current task. -
- -  -

DESCRIPTION

- -

- -Perform a symbolic lookup of the addresses in the given string, which is assumed to be the result of a prior call to -ubacktrace -for the current task. -

- -Returns a simple backtrace from the given hex string. One line per address. Includes the symbol name (or hex address if symbol couldn't be resolved) and module name (if found). Includes the offset from the start of the function if found, otherwise the offset will be added to the module (if found, between brackets). Returns the backtrace as string (each line terminated by a newline character). Note that the returned stack will be truncated to MAXSTRINGLEN, to print fuller and richer stacks use print_ustack. -  -

NOTE

- -

- -it is recommended to use -sprint_usyms -instead of this function. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
NOTE
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::sprint_usyms.3stap.html b/man/function::sprint_usyms.3stap.html deleted file mode 100644 index bc61de38..00000000 --- a/man/function::sprint_usyms.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of FUNCTION::SPRINT_USY - -

FUNCTION::SPRINT_USY

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::sprint_usyms - Return stack for user addresses from string -  -

SYNOPSIS

- -

-

-    sprint_usyms(callers:string)
-
- -  -

ARGUMENTS

- -

- -callers -

-String with list of hexadecimal (user) addresses -
- -  -

DESCRIPTION

- -

- -Perform a symbolic lookup of the addresses in the given string, which are assumed to be the result of a prior calls to -ustack, -ucallers, and similar functions. -

- -Returns a simple backtrace from the given hex string. One line per address. Includes the symbol name (or hex address if symbol couldn't be resolved) and module name (if found), as obtained from -usymdata. Includes the offset from the start of the function if found, otherwise the offset will be added to the module (if found, between brackets). Returns the backtrace as string (each line terminated by a newline character). Note that the returned stack will be truncated to MAXSTRINGLEN, to print fuller and richer stacks use -print_usyms. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::stack.3stap.html b/man/function::stack.3stap.html deleted file mode 100644 index 7ecfd66e..00000000 --- a/man/function::stack.3stap.html +++ /dev/null @@ -1,64 +0,0 @@ - -Manpage of FUNCTION::STACK - -

FUNCTION::STACK

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::stack - Return address at given depth of kernel stack backtrace -  -

SYNOPSIS

- -

-

-    stack:long(n:long)
-
- -  -

ARGUMENTS

- -

- -n -

-number of levels to descend in the stack. -
- -  -

DESCRIPTION

- -

- -Performs a simple (kernel) backtrace, and returns the element at the specified position. The results of the backtrace itself are cached, so that the backtrace computation is performed at most once no matter how many times -stack -is called, or in what order. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::stack_size.3stap.html b/man/function::stack_size.3stap.html deleted file mode 100644 index 810e2674..00000000 --- a/man/function::stack_size.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::STACK_SIZE - -

FUNCTION::STACK_SIZE

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::stack_size - Return the size of the kernel stack -  -

SYNOPSIS

- -

-

-    stack_size:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns the size of the kernel stack. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::stack_unused.3stap.html b/man/function::stack_unused.3stap.html deleted file mode 100644 index c0d26a4e..00000000 --- a/man/function::stack_unused.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::STACK_UNUS - -

FUNCTION::STACK_UNUS

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::stack_unused - Returns the amount of kernel stack currently available -  -

SYNOPSIS

- -

-

-    stack_unused:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function determines how many bytes are currently available in the kernel stack. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::stack_used.3stap.html b/man/function::stack_used.3stap.html deleted file mode 100644 index b6b77c9e..00000000 --- a/man/function::stack_used.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::STACK_USED - -

FUNCTION::STACK_USED

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::stack_used - Returns the amount of kernel stack used -  -

SYNOPSIS

- -

-

-    stack_used:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function determines how many bytes are currently used in the kernel stack. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::start_stopwatch.3stap.html b/man/function::start_stopwatch.3stap.html deleted file mode 100644 index 1f0f9e00..00000000 --- a/man/function::start_stopwatch.3stap.html +++ /dev/null @@ -1,65 +0,0 @@ - -Manpage of FUNCTION::START_STOP - -

FUNCTION::START_STOP

-Section: Timestamp Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::start_stopwatch - Start a stopwatch -  -

SYNOPSIS

- -

-

-    start_stopwatch(name:string)
-
- -  -

ARGUMENTS

- -

- -name -

-the stopwatch name -
- -  -

DESCRIPTION

- -

- -Start stopwatch -name. Creates stopwatch -name -if it does not currently exist. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::stop_stopwatch.3stap.html b/man/function::stop_stopwatch.3stap.html deleted file mode 100644 index cc6a567f..00000000 --- a/man/function::stop_stopwatch.3stap.html +++ /dev/null @@ -1,65 +0,0 @@ - -Manpage of FUNCTION::STOP_STOPW - -

FUNCTION::STOP_STOPW

-Section: Timestamp Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::stop_stopwatch - Stop a stopwatch -  -

SYNOPSIS

- -

-

-    stop_stopwatch(name:string)
-
- -  -

ARGUMENTS

- -

- -name -

-the stopwatch name -
- -  -

DESCRIPTION

- -

- -Stop stopwatch -name. Creates stopwatch -name -if it does not currently exist. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::stp_pid.3stap.html b/man/function::stp_pid.3stap.html deleted file mode 100644 index 0ad927b7..00000000 --- a/man/function::stp_pid.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::STP_PID - -

FUNCTION::STP_PID

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::stp_pid - The process id of the stapio process -  -

SYNOPSIS

- -

-

-    stp_pid:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns the process id of the stapio process that launched this script. There could be other SystemTap scripts and stapio processes running on the system. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::str_replace.3stap.html b/man/function::str_replace.3stap.html deleted file mode 100644 index 602980fa..00000000 --- a/man/function::str_replace.3stap.html +++ /dev/null @@ -1,79 +0,0 @@ - -Manpage of FUNCTION::STR_REPLAC - -

FUNCTION::STR_REPLAC

-Section: A collection of standard strin (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::str_replace - str_replace Replaces all instances of a substring with another -  -

SYNOPSIS

- -

-

-    str_replace:string(prnt_str:string,srch_str:string,rplc_str:string)
-
- -  -

ARGUMENTS

- -

- -prnt_str -

-the string to search and replace in -
- -

- -srch_str -

-the substring which is used to search in -prnt_str -string -
- -

- -rplc_str -

-the substring which is used to replace -srch_str -
- -  -

DESCRIPTION

- -

- -This function returns the given string with substrings replaced. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::stringat.3stap.html b/man/function::stringat.3stap.html deleted file mode 100644 index c3fed658..00000000 --- a/man/function::stringat.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of FUNCTION::STRINGAT - -

FUNCTION::STRINGAT

-Section: A collection of standard strin (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::stringat - Returns the char at a given position in the string -  -

SYNOPSIS

- -

-

-    stringat:long(str:string,pos:long)
-
- -  -

ARGUMENTS

- -

- -str -

-the string to fetch the character from -
- -

- -pos -

-the position to get the character from (first character is 0) -
- -  -

DESCRIPTION

- -

- -This function returns the character at a given position in the string or zero if thestring doesn't have as many characters. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::strlen.3stap.html b/man/function::strlen.3stap.html deleted file mode 100644 index 2870bd1c..00000000 --- a/man/function::strlen.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::STRLEN - -

FUNCTION::STRLEN

-Section: A collection of standard strin (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::strlen - Returns the length of a string -  -

SYNOPSIS

- -

-

-    strlen:long(s:string)
-
- -  -

ARGUMENTS

- -

- -s -

-the string -
- -  -

DESCRIPTION

- -

- -This function returns the length of the string, which can be zero up to MAXSTRINGLEN. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::strtol.3stap.html b/man/function::strtol.3stap.html deleted file mode 100644 index 3990f6a6..00000000 --- a/man/function::strtol.3stap.html +++ /dev/null @@ -1,71 +0,0 @@ - -Manpage of FUNCTION::STRTOL - -

FUNCTION::STRTOL

-Section: A collection of standard strin (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::strtol - strtol - Convert a string to a long -  -

SYNOPSIS

- -

-

-    strtol:long(str:string,base:long)
-
- -  -

ARGUMENTS

- -

- -str -

-string to convert -
- -

- -base -

-the base to use -
- -  -

DESCRIPTION

- -

- -This function converts the string representation of a number to an integer. The -base -parameter indicates the number base to assume for the string (eg. 16 for hex, 8 for octal, 2 for binary). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::substr.3stap.html b/man/function::substr.3stap.html deleted file mode 100644 index 2d669b20..00000000 --- a/man/function::substr.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of FUNCTION::SUBSTR - -

FUNCTION::SUBSTR

-Section: A collection of standard strin (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::substr - Returns a substring -  -

SYNOPSIS

- -

-

-    substr:string(str:string,start:long,length:long)
-
- -  -

ARGUMENTS

- -

- -str -

-the string to take a substring from -
- -

- -start -

-starting position of the extracted string (first character is 0) -
- -

- -length -

-length of string to return -
- -  -

DESCRIPTION

- -

- -Returns the substring of the given string at the given start position with the given length (or smaller if the length of the original string is less than start + length, or length is bigger than MAXSTRINGLEN). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::symdata.3stap.html b/man/function::symdata.3stap.html deleted file mode 100644 index 463927dd..00000000 --- a/man/function::symdata.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::SYMDATA - -

FUNCTION::SYMDATA

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::symdata - Return the kernel symbol and module offset for the address -  -

SYNOPSIS

- -

-

-    symdata:string(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-The address to translate -
- -  -

DESCRIPTION

- -

- -Returns the (function) symbol name associated with the given address if known, the offset from the start and size of the symbol, plus module name (between brackets). If symbol is unknown, but module is known, the offset inside the module, plus the size of the module is added. If any element is not known it will be omitted and if the symbol name is unknown it will return the hex string for the given address. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::symname.3stap.html b/man/function::symname.3stap.html deleted file mode 100644 index 3a5c83a5..00000000 --- a/man/function::symname.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::SYMNAME - -

FUNCTION::SYMNAME

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::symname - Return the kernel symbol associated with the given address -  -

SYNOPSIS

- -

-

-    symname:string(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-The address to translate -
- -  -

DESCRIPTION

- -

- -Returns the (function) symbol name associated with the given address if known. If not known it will return the hex string representation of addr. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::system.3stap.html b/man/function::system.3stap.html deleted file mode 100644 index 1aa15a8c..00000000 --- a/man/function::system.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::SYSTEM - -

FUNCTION::SYSTEM

-Section: Shell command functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::system - Issue a command to the system -  -

SYNOPSIS

- -

-

-    system(cmd:string)
-
- -  -

ARGUMENTS

- -

- -cmd -

-the command to issue to the system -
- -  -

DESCRIPTION

- -

- -This function runs a command on the system. The command is started in the background some time after the current probe completes. The command is run with the same UID as the user running the stap or staprun command. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::target.3stap.html b/man/function::target.3stap.html deleted file mode 100644 index 93613073..00000000 --- a/man/function::target.3stap.html +++ /dev/null @@ -1,68 +0,0 @@ - -Manpage of FUNCTION::TARGET - -

FUNCTION::TARGET

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::target - Return the process ID of the target process -  -

SYNOPSIS

- -

-

-    target:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns the process ID of the target process. This is useful in conjunction with the -x PID or -c CMD command-line options to stap. An example of its use is to create scripts that filter on a specific process. -

- --x <pid> -target -returns the pid specified by -x -

- --c <command> -target -returns the pid for the executed command specified by -c -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::target_set_pid.3stap.html b/man/function::target_set_pid.3stap.html deleted file mode 100644 index 8ce9806d..00000000 --- a/man/function::target_set_pid.3stap.html +++ /dev/null @@ -1,65 +0,0 @@ - -Manpage of FUNCTION::TARGET_SET - -

FUNCTION::TARGET_SET

-Section: Kernel Process Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::target_set_pid - Does pid descend from target process? -  -

SYNOPSIS

- -

-

-    target_set_pid(pid:)
-
- -  -

ARGUMENTS

- -

- -pid -

-The pid of the process to query -
- -  -

DESCRIPTION

- -

- -This function returns whether the given process-id is within the -lqtarget setrq, that is whether it is a descendant of the top-level -target -process. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::target_set_report.3stap.html b/man/function::target_set_report.3stap.html deleted file mode 100644 index 4c56fb0b..00000000 --- a/man/function::target_set_report.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::TARGET_SET - -

FUNCTION::TARGET_SET

-Section: Kernel Process Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::target_set_report - Print a report about the target set -  -

SYNOPSIS

- -

-

-    target_set_report()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function prints a report about the processes in the target set, and their ancestry. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::task_backtrace.3stap.html b/man/function::task_backtrace.3stap.html deleted file mode 100644 index 4b6eab35..00000000 --- a/man/function::task_backtrace.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::TASK_BACKT - -

FUNCTION::TASK_BACKT

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::task_backtrace - Hex backtrace of an arbitrary task -  -

SYNOPSIS

- -

-

-    task_backtrace:string(task:long)
-
- -  -

ARGUMENTS

- -

- -task -

-pointer to task_struct -
- -  -

DESCRIPTION

- -

- -This function returns a string of hex addresses that are a backtrace of the stack of a particular task Output may be truncated as per maximum string length. Deprecated in SystemTap 1.6. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::task_cpu.3stap.html b/man/function::task_cpu.3stap.html deleted file mode 100644 index 01042e15..00000000 --- a/man/function::task_cpu.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::TASK_CPU - -

FUNCTION::TASK_CPU

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::task_cpu - The scheduled cpu of the task -  -

SYNOPSIS

- -

-

-    task_cpu:long(task:long)
-
- -  -

ARGUMENTS

- -

- -task -

-task_struct pointer -
- -  -

DESCRIPTION

- -

- -This function returns the scheduled cpu for the given task. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::task_current.3stap.html b/man/function::task_current.3stap.html deleted file mode 100644 index 0c9838d3..00000000 --- a/man/function::task_current.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::TASK_CURRE - -

FUNCTION::TASK_CURRE

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::task_current - The current task_struct of the current task -  -

SYNOPSIS

- -

-

-    task_current:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns the task_struct representing the current process. This address can be passed to the various task_*() functions to extract more task-specific data. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::task_dentry_path.3stap.html b/man/function::task_dentry_path.3stap.html deleted file mode 100644 index c473bf1c..00000000 --- a/man/function::task_dentry_path.3stap.html +++ /dev/null @@ -1,78 +0,0 @@ - -Manpage of FUNCTION::TASK_DENTR - -

FUNCTION::TASK_DENTR

-Section: Directory-entry (dentry) Tapse (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::task_dentry_path - get the full dentry path -  -

SYNOPSIS

- -

-

-    task_dentry_path:string(task:long,dentry:long,vfsmnt:long)
-
- -  -

ARGUMENTS

- -

- -task -

-task_struct pointer. -
- -

- -dentry -

-direntry pointer. -
- -

- -vfsmnt -

-vfsmnt pointer. -
- -  -

DESCRIPTION

- -

- -

- -Returns the full dirent name (full path to the root), like the kernel d_path function. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::task_egid.3stap.html b/man/function::task_egid.3stap.html deleted file mode 100644 index 78366355..00000000 --- a/man/function::task_egid.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::TASK_EGID - -

FUNCTION::TASK_EGID

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::task_egid - The effective group identifier of the task -  -

SYNOPSIS

- -

-

-    task_egid:long(task:long)
-
- -  -

ARGUMENTS

- -

- -task -

-task_struct pointer -
- -  -

DESCRIPTION

- -

- -This function returns the effective group id of the given task. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::task_euid.3stap.html b/man/function::task_euid.3stap.html deleted file mode 100644 index a7a5976f..00000000 --- a/man/function::task_euid.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::TASK_EUID - -

FUNCTION::TASK_EUID

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::task_euid - The effective user identifier of the task -  -

SYNOPSIS

- -

-

-    task_euid:long(task:long)
-
- -  -

ARGUMENTS

- -

- -task -

-task_struct pointer -
- -  -

DESCRIPTION

- -

- -This function returns the effective user id of the given task. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::task_execname.3stap.html b/man/function::task_execname.3stap.html deleted file mode 100644 index a0ed9214..00000000 --- a/man/function::task_execname.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::TASK_EXECN - -

FUNCTION::TASK_EXECN

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::task_execname - The name of the task -  -

SYNOPSIS

- -

-

-    task_execname:string(task:long)
-
- -  -

ARGUMENTS

- -

- -task -

-task_struct pointer -
- -  -

DESCRIPTION

- -

- -Return the name of the given task. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::task_gid.3stap.html b/man/function::task_gid.3stap.html deleted file mode 100644 index 8cd65ceb..00000000 --- a/man/function::task_gid.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::TASK_GID - -

FUNCTION::TASK_GID

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::task_gid - The group identifier of the task -  -

SYNOPSIS

- -

-

-    task_gid:long(task:long)
-
- -  -

ARGUMENTS

- -

- -task -

-task_struct pointer -
- -  -

DESCRIPTION

- -

- -This function returns the group id of the given task. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::task_max_file_handles.3stap.html b/man/function::task_max_file_handles.3stap.html deleted file mode 100644 index 1c6dcddf..00000000 --- a/man/function::task_max_file_handles.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::TASK_MAX_F - -

FUNCTION::TASK_MAX_F

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::task_max_file_handles - The max number of open files for the task -  -

SYNOPSIS

- -

-

-    task_max_file_handles:long(task:long)
-
- -  -

ARGUMENTS

- -

- -task -

-task_struct pointer -
- -  -

DESCRIPTION

- -

- -This function returns the maximum number of file handlers for the given task. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::task_nice.3stap.html b/man/function::task_nice.3stap.html deleted file mode 100644 index ea211dca..00000000 --- a/man/function::task_nice.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::TASK_NICE - -

FUNCTION::TASK_NICE

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::task_nice - The nice value of the task -  -

SYNOPSIS

- -

-

-    task_nice:long(task:long)
-
- -  -

ARGUMENTS

- -

- -task -

-task_struct pointer -
- -  -

DESCRIPTION

- -

- -This function returns the nice value of the given task. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::task_open_file_handles.3stap.html b/man/function::task_open_file_handles.3stap.html deleted file mode 100644 index 48486169..00000000 --- a/man/function::task_open_file_handles.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::TASK_OPEN_ - -

FUNCTION::TASK_OPEN_

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::task_open_file_handles - The number of open files of the task -  -

SYNOPSIS

- -

-

-    task_open_file_handles:long(task:long)
-
- -  -

ARGUMENTS

- -

- -task -

-task_struct pointer -
- -  -

DESCRIPTION

- -

- -This function returns the number of open file handlers for the given task. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:16 GMT, March 20, 2013 - - diff --git a/man/function::task_parent.3stap.html b/man/function::task_parent.3stap.html deleted file mode 100644 index 2c0303c9..00000000 --- a/man/function::task_parent.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::TASK_PAREN - -

FUNCTION::TASK_PAREN

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::task_parent - The task_struct of the parent task -  -

SYNOPSIS

- -

-

-    task_parent:long(task:long)
-
- -  -

ARGUMENTS

- -

- -task -

-task_struct pointer -
- -  -

DESCRIPTION

- -

- -This function returns the parent task_struct of the given task. This address can be passed to the various task_*() functions to extract more task-specific data. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::task_pid.3stap.html b/man/function::task_pid.3stap.html deleted file mode 100644 index b8f9c126..00000000 --- a/man/function::task_pid.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::TASK_PID - -

FUNCTION::TASK_PID

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::task_pid - The process identifier of the task -  -

SYNOPSIS

- -

-

-    task_pid:long(task:long)
-
- -  -

ARGUMENTS

- -

- -task -

-task_struct pointer -
- -  -

DESCRIPTION

- -

- -This fucntion returns the process id of the given task. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::task_prio.3stap.html b/man/function::task_prio.3stap.html deleted file mode 100644 index e191fc9f..00000000 --- a/man/function::task_prio.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::TASK_PRIO - -

FUNCTION::TASK_PRIO

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::task_prio - The priority value of the task -  -

SYNOPSIS

- -

-

-    task_prio:long(task:long)
-
- -  -

ARGUMENTS

- -

- -task -

-task_struct pointer -
- -  -

DESCRIPTION

- -

- -This function returns the priority value of the given task. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::task_state.3stap.html b/man/function::task_state.3stap.html deleted file mode 100644 index d7aec5f1..00000000 --- a/man/function::task_state.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::TASK_STATE - -

FUNCTION::TASK_STATE

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::task_state - The state of the task -  -

SYNOPSIS

- -

-

-    task_state:long(task:long)
-
- -  -

ARGUMENTS

- -

- -task -

-task_struct pointer -
- -  -

DESCRIPTION

- -

- -Return the state of the given task, one of: TASK_RUNNING (0), TASK_INTERRUPTIBLE (1), TASK_UNINTERRUPTIBLE (2), TASK_STOPPED (4), TASK_TRACED (8), EXIT_ZOMBIE (16), or EXIT_DEAD (32). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::task_stime.3stap.html b/man/function::task_stime.3stap.html deleted file mode 100644 index b4100e0a..00000000 --- a/man/function::task_stime.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::TASK_STIME - -

FUNCTION::TASK_STIME

-Section: Task Time Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::task_stime - System time of the current task -  -

SYNOPSIS

- -

-

-    task_stime:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -Returns the system time of the current task in cputime. Does not include any time used by other tasks in this process, nor does it include any time of the children of this task. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::task_stime_tid.3stap.html b/man/function::task_stime_tid.3stap.html deleted file mode 100644 index d4f5e399..00000000 --- a/man/function::task_stime_tid.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::TASK_STIME - -

FUNCTION::TASK_STIME

-Section: Task Time Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::task_stime_tid - System time of the given task -  -

SYNOPSIS

- -

-

-    task_stime_tid:long(tid:long)
-
- -  -

ARGUMENTS

- -

- -tid -

-Thread id of the given task -
- -  -

DESCRIPTION

- -

- -Returns the system time of the given task in cputime, or zero if the task doesn't exist. Does not include any time used by other tasks in this process, nor does it include any time of the children of this task. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::task_tid.3stap.html b/man/function::task_tid.3stap.html deleted file mode 100644 index 411936ed..00000000 --- a/man/function::task_tid.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::TASK_TID - -

FUNCTION::TASK_TID

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::task_tid - The thread identifier of the task -  -

SYNOPSIS

- -

-

-    task_tid:long(task:long)
-
- -  -

ARGUMENTS

- -

- -task -

-task_struct pointer -
- -  -

DESCRIPTION

- -

- -This function returns the thread id of the given task. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::task_time_string.3stap.html b/man/function::task_time_string.3stap.html deleted file mode 100644 index a516caac..00000000 --- a/man/function::task_time_string.3stap.html +++ /dev/null @@ -1,59 +0,0 @@ - -Manpage of FUNCTION::TASK_TIME_ - -

FUNCTION::TASK_TIME_

-Section: Task Time Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::task_time_string - Human readable string of task time usage -  -

SYNOPSIS

- -

-

-    task_time_string:string()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -Returns a human readable string showing the user and system time the current task has used up to now. For example -lqusr: 0m12.908s, sys: 1m6.851srq. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::task_time_string_tid.3stap.html b/man/function::task_time_string_tid.3stap.html deleted file mode 100644 index d1061738..00000000 --- a/man/function::task_time_string_tid.3stap.html +++ /dev/null @@ -1,63 +0,0 @@ - -Manpage of FUNCTION::TASK_TIME_ - -

FUNCTION::TASK_TIME_

-Section: Task Time Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::task_time_string_tid - Human readable string of task time usage -  -

SYNOPSIS

- -

-

-    task_time_string_tid:string(tid:long)
-
- -  -

ARGUMENTS

- -

- -tid -

-Thread id of the given task -
- -  -

DESCRIPTION

- -

- -Returns a human readable string showing the user and system time the given task has used up to now. For example -lqusr: 0m12.908s, sys: 1m6.851srq. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::task_uid.3stap.html b/man/function::task_uid.3stap.html deleted file mode 100644 index 759c3a23..00000000 --- a/man/function::task_uid.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::TASK_UID - -

FUNCTION::TASK_UID

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::task_uid - The user identifier of the task -  -

SYNOPSIS

- -

-

-    task_uid:long(task:long)
-
- -  -

ARGUMENTS

- -

- -task -

-task_struct pointer -
- -  -

DESCRIPTION

- -

- -This function returns the user id of the given task. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::task_utime.3stap.html b/man/function::task_utime.3stap.html deleted file mode 100644 index 6ae34e39..00000000 --- a/man/function::task_utime.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::TASK_UTIME - -

FUNCTION::TASK_UTIME

-Section: Task Time Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::task_utime - User time of the current task -  -

SYNOPSIS

- -

-

-    task_utime:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -Returns the user time of the current task in cputime. Does not include any time used by other tasks in this process, nor does it include any time of the children of this task. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::task_utime_tid.3stap.html b/man/function::task_utime_tid.3stap.html deleted file mode 100644 index 63d41b44..00000000 --- a/man/function::task_utime_tid.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::TASK_UTIME - -

FUNCTION::TASK_UTIME

-Section: Task Time Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::task_utime_tid - User time of the given task -  -

SYNOPSIS

- -

-

-    task_utime_tid:long(tid:long)
-
- -  -

ARGUMENTS

- -

- -tid -

-Thread id of the given task -
- -  -

DESCRIPTION

- -

- -Returns the user time of the given task in cputime, or zero if the task doesn't exist. Does not include any time used by other tasks in this process, nor does it include any time of the children of this task. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::tcpmib_filter_key.3stap.html b/man/function::tcpmib_filter_key.3stap.html deleted file mode 100644 index 4df95de8..00000000 --- a/man/function::tcpmib_filter_key.3stap.html +++ /dev/null @@ -1,74 +0,0 @@ - -Manpage of FUNCTION::TCPMIB_FIL - -

FUNCTION::TCPMIB_FIL

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::tcpmib_filter_key - Default filter function for tcpmib.* probes -  -

SYNOPSIS

- -

-

-    tcpmib_filter_key:long(sk:long,op:long)
-
- -  -

ARGUMENTS

- -

- -sk -

-pointer to the struct sock being acted on -
- -

- -op -

-value to be counted if -sk -passes the filter -
- -  -

DESCRIPTION

- -

- -This function is a default filter function. The user can replace this function with their own. The user-supplied filter function returns an index key based on the values in -sk. A return value of 0 means this particular -sk -should be not be counted. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::tcpmib_get_state.3stap.html b/man/function::tcpmib_get_state.3stap.html deleted file mode 100644 index 390e691a..00000000 --- a/man/function::tcpmib_get_state.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::TCPMIB_GET - -

FUNCTION::TCPMIB_GET

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::tcpmib_get_state - Get a socket's state -  -

SYNOPSIS

- -

-

-    tcpmib_get_state:long(sk:long)
-
- -  -

ARGUMENTS

- -

- -sk -

-pointer to a struct sock -
- -  -

DESCRIPTION

- -

- -Returns the sk_state from a struct sock. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::tcpmib_local_addr.3stap.html b/man/function::tcpmib_local_addr.3stap.html deleted file mode 100644 index 8fd2768d..00000000 --- a/man/function::tcpmib_local_addr.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::TCPMIB_LOC - -

FUNCTION::TCPMIB_LOC

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::tcpmib_local_addr - Get the source address -  -

SYNOPSIS

- -

-

-    tcpmib_local_addr:long(sk:long)
-
- -  -

ARGUMENTS

- -

- -sk -

-pointer to a struct inet_sock -
- -  -

DESCRIPTION

- -

- -Returns the saddr from a struct inet_sock in host order. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::tcpmib_local_port.3stap.html b/man/function::tcpmib_local_port.3stap.html deleted file mode 100644 index b352333c..00000000 --- a/man/function::tcpmib_local_port.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::TCPMIB_LOC - -

FUNCTION::TCPMIB_LOC

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::tcpmib_local_port - Get the local port -  -

SYNOPSIS

- -

-

-    tcpmib_local_port:long(sk:long)
-
- -  -

ARGUMENTS

- -

- -sk -

-pointer to a struct inet_sock -
- -  -

DESCRIPTION

- -

- -Returns the sport from a struct inet_sock in host order. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::tcpmib_remote_addr.3stap.html b/man/function::tcpmib_remote_addr.3stap.html deleted file mode 100644 index 52dfd751..00000000 --- a/man/function::tcpmib_remote_addr.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::TCPMIB_REM - -

FUNCTION::TCPMIB_REM

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::tcpmib_remote_addr - Get the remote address -  -

SYNOPSIS

- -

-

-    tcpmib_remote_addr:long(sk:long)
-
- -  -

ARGUMENTS

- -

- -sk -

-pointer to a struct inet_sock -
- -  -

DESCRIPTION

- -

- -Returns the daddr from a struct inet_sock in host order. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::tcpmib_remote_port.3stap.html b/man/function::tcpmib_remote_port.3stap.html deleted file mode 100644 index e33d3d0d..00000000 --- a/man/function::tcpmib_remote_port.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::TCPMIB_REM - -

FUNCTION::TCPMIB_REM

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::tcpmib_remote_port - Get the remote port -  -

SYNOPSIS

- -

-

-    tcpmib_remote_port:long(sk:long)
-
- -  -

ARGUMENTS

- -

- -sk -

-pointer to a struct inet_sock -
- -  -

DESCRIPTION

- -

- -Returns the dport from a struct inet_sock in host order. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::text_str.3stap.html b/man/function::text_str.3stap.html deleted file mode 100644 index a4040bb4..00000000 --- a/man/function::text_str.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::TEXT_STR - -

FUNCTION::TEXT_STR

-Section: A collection of standard strin (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::text_str - Escape any non-printable chars in a string -  -

SYNOPSIS

- -

-

-    text_str:string(input:string)
-
- -  -

ARGUMENTS

- -

- -input -

-the string to escape -
- -  -

DESCRIPTION

- -

- -This function accepts a string argument, and any ASCII characters that are not printable are replaced by the corresponding escape sequence in the returned string. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::text_strn.3stap.html b/man/function::text_strn.3stap.html deleted file mode 100644 index 4a9fb9e9..00000000 --- a/man/function::text_strn.3stap.html +++ /dev/null @@ -1,78 +0,0 @@ - -Manpage of FUNCTION::TEXT_STRN - -

FUNCTION::TEXT_STRN

-Section: A collection of standard strin (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::text_strn - Escape any non-printable chars in a string -  -

SYNOPSIS

- -

-

-    text_strn:string(input:string,len:long,quoted:long)
-
- -  -

ARGUMENTS

- -

- -input -

-the string to escape -
- -

- -len -

-maximum length of string to return (0 implies MAXSTRINGLEN) -
- -

- -quoted -

-put double quotes around the string. If input string is truncated it will have -lq...rq -after the second quote -
- -  -

DESCRIPTION

- -

- -This function accepts a string of designated length, and any ASCII characters that are not printable are replaced by the corresponding escape sequence in the returned string. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::thread_indent.3stap.html b/man/function::thread_indent.3stap.html deleted file mode 100644 index 64fc0f1c..00000000 --- a/man/function::thread_indent.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::THREAD_IND - -

FUNCTION::THREAD_IND

-Section: Utility functions for using an (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::thread_indent - returns an amount of space with the current task information -  -

SYNOPSIS

- -

-

-    thread_indent:string(delta:long)
-
- -  -

ARGUMENTS

- -

- -delta -

-the amount of space added/removed for each call -
- -  -

DESCRIPTION

- -

- -This function returns a string with appropriate indentation for a thread. Call it with a small positive or matching negative delta. If this is the real outermost, initial level of indentation, then the function resets the relative timestamp base to zero. An example is shown at the end of this file. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::tid.3stap.html b/man/function::tid.3stap.html deleted file mode 100644 index b04f8f13..00000000 --- a/man/function::tid.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::TID - -

FUNCTION::TID

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::tid - Returns the thread ID of a target process -  -

SYNOPSIS

- -

-

-    tid:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns the thread ID of the target process. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::tokenize.3stap.html b/man/function::tokenize.3stap.html deleted file mode 100644 index 609be833..00000000 --- a/man/function::tokenize.3stap.html +++ /dev/null @@ -1,70 +0,0 @@ - -Manpage of FUNCTION::TOKENIZE - -

FUNCTION::TOKENIZE

-Section: A collection of standard strin (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::tokenize - Return the next non-empty token in a string -  -

SYNOPSIS

- -

-

-    tokenize:string(input:string,delim:string)
-
- -  -

ARGUMENTS

- -

- -input -

-string to tokenize. If empty, returns the next non-empty token in the string passed in the previous call to -tokenize. -
- -

- -delim -

-set of characters that delimit the tokens -
- -  -

DESCRIPTION

- -

- -This function returns the next non-empty token in the given input string, where the tokens are delimited by characters in the delim string. If the input string is non-empty, it returns the first token. If the input string is empty, it returns the next token in the string passed in the previous call to tokenize. If no delimiter is found, the entire remaining input string is returned. It returns empty when no more tokens are available. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::tz_ctime.3stap.html b/man/function::tz_ctime.3stap.html deleted file mode 100644 index a81f6738..00000000 --- a/man/function::tz_ctime.3stap.html +++ /dev/null @@ -1,65 +0,0 @@ - -Manpage of FUNCTION::TZ_CTIME - -

FUNCTION::TZ_CTIME

-Section: Time utility functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::tz_ctime - Convert seconds since epoch into human readable date/time string, with local time zone -  -

SYNOPSIS

- -

-

-    tz_ctime(epochsecs:)
-
- -  -

ARGUMENTS

- -

- -epochsecs -

-number of seconds since epoch (as returned by -gettimeofday_s) -
- -  -

DESCRIPTION

- -

- -Takes an argument of seconds since the epoch as returned by -gettimeofday_s. Returns a string of the same form as -ctime, but offsets the epoch time for the local time zone, and appends the name of the local time zone. The string length may vary. The time zone information is passed by staprun at script startup only. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::tz_gmtoff.3stap.html b/man/function::tz_gmtoff.3stap.html deleted file mode 100644 index b2e48ef3..00000000 --- a/man/function::tz_gmtoff.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::TZ_GMTOFF - -

FUNCTION::TZ_GMTOFF

-Section: Time utility functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::tz_gmtoff - Return local time zone offset -  -

SYNOPSIS

- -

-

-    tz_gmtoff()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -Returns the local time zone offset (seconds west of UTC), as passed by staprun at script startup only. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::tz_name.3stap.html b/man/function::tz_name.3stap.html deleted file mode 100644 index b6e19486..00000000 --- a/man/function::tz_name.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::TZ_NAME - -

FUNCTION::TZ_NAME

-Section: Time utility functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::tz_name - Return local time zone name -  -

SYNOPSIS

- -

-

-    tz_name()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -Returns the local time zone name, as passed by staprun at script startup only. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::u32_arg.3stap.html b/man/function::u32_arg.3stap.html deleted file mode 100644 index 74e5fa40..00000000 --- a/man/function::u32_arg.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::U32_ARG - -

FUNCTION::U32_ARG

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::u32_arg - Return function argument as unsigned 32-bit value -  -

SYNOPSIS

- -

-

-    u32_arg:long(n:long)
-
- -  -

ARGUMENTS

- -

- -n -

-index of argument to return -
- -  -

DESCRIPTION

- -

- -Return the unsigned 32-bit value of argument n, same as uint_arg. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::u64_arg.3stap.html b/man/function::u64_arg.3stap.html deleted file mode 100644 index b3e7bdc9..00000000 --- a/man/function::u64_arg.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::U64_ARG - -

FUNCTION::U64_ARG

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::u64_arg - Return function argument as unsigned 64-bit value -  -

SYNOPSIS

- -

-

-    u64_arg:long(n:long)
-
- -  -

ARGUMENTS

- -

- -n -

-index of argument to return -
- -  -

DESCRIPTION

- -

- -Return the unsigned 64-bit value of argument n, same as ulonglong_arg. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::u_register.3stap.html b/man/function::u_register.3stap.html deleted file mode 100644 index 9d619e68..00000000 --- a/man/function::u_register.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::U_REGISTER - -

FUNCTION::U_REGISTER

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::u_register - Return the unsigned value of the named CPU register -  -

SYNOPSIS

- -

-

-    u_register:long(name:string)
-
- -  -

ARGUMENTS

- -

- -name -

-Name of the register to return -
- -  -

DESCRIPTION

- -

- -Same as register(name), except that if the register is 32 bits wide, it is zero-extended to 64 bits. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::uaddr.3stap.html b/man/function::uaddr.3stap.html deleted file mode 100644 index 1dae5a04..00000000 --- a/man/function::uaddr.3stap.html +++ /dev/null @@ -1,61 +0,0 @@ - -Manpage of FUNCTION::UADDR - -

FUNCTION::UADDR

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::uaddr - User space address of current running task -  -

SYNOPSIS

- -

-

-    uaddr:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -Returns the address in userspace that the current task was at when the probe occurred. When the current running task isn't a user space thread, or the address cannot be found, zero is returned. Can be used to see where the current task is combined with -usymname -or -usymdata. Often the task will be in the VDSO where it entered the kernel. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::ubacktrace.3stap.html b/man/function::ubacktrace.3stap.html deleted file mode 100644 index 1666b08a..00000000 --- a/man/function::ubacktrace.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of FUNCTION::UBACKTRACE - -

FUNCTION::UBACKTRACE

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::ubacktrace - Hex backtrace of current user-space task stack. -  -

SYNOPSIS

- -

-

-    ubacktrace:string()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -

- -Return a string of hex addresses that are a backtrace of the stack of the current task. Output may be truncated as per maximum string length. Returns empty string when current probe point cannot determine user backtrace. See -backtrace -for kernel traceback. -  -

NOTE

- -

- -To get (full) backtraces for user space applications and shared shared libraries not mentioned in the current script run stap with -d /path/to/exe-or-so and/or add --ldd to load all needed unwind data. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
NOTE
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::ucallers.3stap.html b/man/function::ucallers.3stap.html deleted file mode 100644 index 8815aabe..00000000 --- a/man/function::ucallers.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of FUNCTION::UCALLERS - -

FUNCTION::UCALLERS

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::ucallers - Return first n elements of user stack backtrace -  -

SYNOPSIS

- -

-

-    ucallers:string(n:long)
-
- -  -

ARGUMENTS

- -

- -n -

-number of levels to descend in the stack (not counting the top level). If n is -1, print the entire stack. -
- -  -

DESCRIPTION

- -

- -This function returns a string of the first n hex addresses from the backtrace of the user stack. Output may be truncated as per maximum string length (MAXSTRINGLEN). -  -

NOTE

- -

- -To get (full) backtraces for user space applications and shared shared libraries not mentioned in the current script run stap with -d /path/to/exe-or-so and/or add --ldd to load all needed unwind data. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
NOTE
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::udelay.3stap.html b/man/function::udelay.3stap.html deleted file mode 100644 index 1f36a183..00000000 --- a/man/function::udelay.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::UDELAY - -

FUNCTION::UDELAY

-Section: Guru tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::udelay - microsecond delay -  -

SYNOPSIS

- -

-

-    udelay(us:long)
-
- -  -

ARGUMENTS

- -

- -us -

-Number of microseconds to delay. -
- -  -

DESCRIPTION

- -

- -This function inserts a multi-microsecond busy-delay into a probe handler. It requires guru mode. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::uid.3stap.html b/man/function::uid.3stap.html deleted file mode 100644 index 664c93e7..00000000 --- a/man/function::uid.3stap.html +++ /dev/null @@ -1,58 +0,0 @@ - -Manpage of FUNCTION::UID - -

FUNCTION::UID

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::uid - Returns the user ID of a target process -  -

SYNOPSIS

- -

-

-    uid:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -This function returns the user ID of the target process. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::uint_arg.3stap.html b/man/function::uint_arg.3stap.html deleted file mode 100644 index 01cd668d..00000000 --- a/man/function::uint_arg.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::UINT_ARG - -

FUNCTION::UINT_ARG

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::uint_arg - Return function argument as unsigned int -  -

SYNOPSIS

- -

-

-    uint_arg:long(n:long)
-
- -  -

ARGUMENTS

- -

- -n -

-index of argument to return -
- -  -

DESCRIPTION

- -

- -Return the value of argument n as an unsigned int (i.e., a 32-bit integer zero-extended to 64 bits). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::ulong_arg.3stap.html b/man/function::ulong_arg.3stap.html deleted file mode 100644 index e0a7d15f..00000000 --- a/man/function::ulong_arg.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::ULONG_ARG - -

FUNCTION::ULONG_ARG

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::ulong_arg - Return function argument as unsigned long -  -

SYNOPSIS

- -

-

-    ulong_arg:long(n:long)
-
- -  -

ARGUMENTS

- -

- -n -

-index of argument to return -
- -  -

DESCRIPTION

- -

- -Return the value of argument n as an unsigned long. On architectures where a long is 32 bits, the value is zero-extended to 64 bits. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::ulonglong_arg.3stap.html b/man/function::ulonglong_arg.3stap.html deleted file mode 100644 index 83113f40..00000000 --- a/man/function::ulonglong_arg.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::ULONGLONG_ - -

FUNCTION::ULONGLONG_

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::ulonglong_arg - Return function argument as 64-bit value -  -

SYNOPSIS

- -

-

-    ulonglong_arg:long(n:long)
-
- -  -

ARGUMENTS

- -

- -n -

-index of argument to return -
- -  -

DESCRIPTION

- -

- -Return the value of argument n as a 64-bit value. (Same as longlong_arg.) -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::umodname.3stap.html b/man/function::umodname.3stap.html deleted file mode 100644 index 64256018..00000000 --- a/man/function::umodname.3stap.html +++ /dev/null @@ -1,64 +0,0 @@ - -Manpage of FUNCTION::UMODNAME - -

FUNCTION::UMODNAME

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::umodname - Returns the (short) name of the user module. -  -

SYNOPSIS

- -

-

-    umodname:string(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-User-space address -
- -  -

DESCRIPTION

- -

- -Returns the short name of the user space module for the current task that that the given address is part of. Returns -lq<unknown>rq -when the address isn't in a (mapped in) module, or the module cannot be found for some reason. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::user_char.3stap.html b/man/function::user_char.3stap.html deleted file mode 100644 index 80ef9cc3..00000000 --- a/man/function::user_char.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::USER_CHAR - -

FUNCTION::USER_CHAR

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::user_char - Retrieves a char value stored in user space -  -

SYNOPSIS

- -

-

-    user_char:long(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-the user space address to retrieve the char from -
- -  -

DESCRIPTION

- -

- -Returns the char value from a given user space address. Returns zero when user space data is not accessible. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::user_char_warn.3stap.html b/man/function::user_char_warn.3stap.html deleted file mode 100644 index f0edd02d..00000000 --- a/man/function::user_char_warn.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::USER_CHAR_ - -

FUNCTION::USER_CHAR_

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::user_char_warn - Retrieves a char value stored in user space -  -

SYNOPSIS

- -

-

-    user_char_warn:long(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-the user space address to retrieve the char from -
- -  -

DESCRIPTION

- -

- -Returns the char value from a given user space address. Returns zero when user space and warns (but does not abort) about the failure. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::user_int.3stap.html b/man/function::user_int.3stap.html deleted file mode 100644 index 3dade392..00000000 --- a/man/function::user_int.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::USER_INT - -

FUNCTION::USER_INT

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::user_int - Retrieves an int value stored in user space -  -

SYNOPSIS

- -

-

-    user_int:long(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-the user space address to retrieve the int from -
- -  -

DESCRIPTION

- -

- -Returns the int value from a given user space address. Returns zero when user space data is not accessible. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::user_int16.3stap.html b/man/function::user_int16.3stap.html deleted file mode 100644 index d5ae29ca..00000000 --- a/man/function::user_int16.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::USER_INT16 - -

FUNCTION::USER_INT16

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::user_int16 - Retrieves a 16-bit integer value stored in user space -  -

SYNOPSIS

- -

-

-    user_int16:long(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-the user space address to retrieve the 16-bit integer from -
- -  -

DESCRIPTION

- -

- -Returns the 16-bit integer value from a given user space address. Returns zero when user space data is not accessible. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::user_int32.3stap.html b/man/function::user_int32.3stap.html deleted file mode 100644 index 0a076fe2..00000000 --- a/man/function::user_int32.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::USER_INT32 - -

FUNCTION::USER_INT32

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::user_int32 - Retrieves a 32-bit integer value stored in user space -  -

SYNOPSIS

- -

-

-    user_int32:long(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-the user space address to retrieve the 32-bit integer from -
- -  -

DESCRIPTION

- -

- -Returns the 32-bit integer value from a given user space address. Returns zero when user space data is not accessible. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::user_int64.3stap.html b/man/function::user_int64.3stap.html deleted file mode 100644 index 01b5a527..00000000 --- a/man/function::user_int64.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::USER_INT64 - -

FUNCTION::USER_INT64

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::user_int64 - Retrieves a 64-bit integer value stored in user space -  -

SYNOPSIS

- -

-

-    user_int64:long(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-the user space address to retrieve the 64-bit integer from -
- -  -

DESCRIPTION

- -

- -Returns the 64-bit integer value from a given user space address. Returns zero when user space data is not accessible. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::user_int8.3stap.html b/man/function::user_int8.3stap.html deleted file mode 100644 index 81cd1851..00000000 --- a/man/function::user_int8.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::USER_INT8 - -

FUNCTION::USER_INT8

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::user_int8 - Retrieves a 8-bit integer value stored in user space -  -

SYNOPSIS

- -

-

-    user_int8:long(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-the user space address to retrieve the 8-bit integer from -
- -  -

DESCRIPTION

- -

- -Returns the 8-bit integer value from a given user space address. Returns zero when user space data is not accessible. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::user_int_warn.3stap.html b/man/function::user_int_warn.3stap.html deleted file mode 100644 index e89084e9..00000000 --- a/man/function::user_int_warn.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::USER_INT_W - -

FUNCTION::USER_INT_W

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::user_int_warn - Retrieves an int value stored in user space -  -

SYNOPSIS

- -

-

-    user_int_warn:long(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-the user space address to retrieve the int from -
- -  -

DESCRIPTION

- -

- -Returns the int value from a given user space address. Returns zero when user space and warns (but does not abort) about the failure. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::user_long.3stap.html b/man/function::user_long.3stap.html deleted file mode 100644 index 81a2653b..00000000 --- a/man/function::user_long.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::USER_LONG - -

FUNCTION::USER_LONG

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::user_long - Retrieves a long value stored in user space -  -

SYNOPSIS

- -

-

-    user_long:long(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-the user space address to retrieve the long from -
- -  -

DESCRIPTION

- -

- -Returns the long value from a given user space address. Returns zero when user space data is not accessible. Note that the size of the long depends on the architecture of the current user space task (for those architectures that support both 64/32 bit compat tasks). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::user_long_warn.3stap.html b/man/function::user_long_warn.3stap.html deleted file mode 100644 index 0848e689..00000000 --- a/man/function::user_long_warn.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::USER_LONG_ - -

FUNCTION::USER_LONG_

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::user_long_warn - Retrieves a long value stored in user space -  -

SYNOPSIS

- -

-

-    user_long_warn:long(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-the user space address to retrieve the long from -
- -  -

DESCRIPTION

- -

- -Returns the long value from a given user space address. Returns zero when user space and warns (but does not abort) about the failure. Note that the size of the long depends on the architecture of the current user space task (for those architectures that support both 64/32 bit compat tasks). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::user_mode.3stap.html b/man/function::user_mode.3stap.html deleted file mode 100644 index 27e73680..00000000 --- a/man/function::user_mode.3stap.html +++ /dev/null @@ -1,60 +0,0 @@ - -Manpage of FUNCTION::USER_MODE - -

FUNCTION::USER_MODE

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::user_mode - Determines if probe point occurs in user-mode -  -

SYNOPSIS

- -

-

-    user_mode:long()
-
- -  -

ARGUMENTS

- -

- -None -  -

DESCRIPTION

- -

- -

- -Return 1 if the probe point occurred in user-mode. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::user_short.3stap.html b/man/function::user_short.3stap.html deleted file mode 100644 index c5f0a566..00000000 --- a/man/function::user_short.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::USER_SHORT - -

FUNCTION::USER_SHORT

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::user_short - Retrieves a short value stored in user space -  -

SYNOPSIS

- -

-

-    user_short:long(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-the user space address to retrieve the short from -
- -  -

DESCRIPTION

- -

- -Returns the short value from a given user space address. Returns zero when user space data is not accessible. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::user_short_warn.3stap.html b/man/function::user_short_warn.3stap.html deleted file mode 100644 index 63d3b8c5..00000000 --- a/man/function::user_short_warn.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::USER_SHORT - -

FUNCTION::USER_SHORT

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::user_short_warn - Retrieves a short value stored in user space -  -

SYNOPSIS

- -

-

-    user_short_warn:long(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-the user space address to retrieve the short from -
- -  -

DESCRIPTION

- -

- -Returns the short value from a given user space address. Returns zero when user space and warns (but does not abort) about the failure. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::user_string.3stap.html b/man/function::user_string.3stap.html deleted file mode 100644 index 053e1c8c..00000000 --- a/man/function::user_string.3stap.html +++ /dev/null @@ -1,64 +0,0 @@ - -Manpage of FUNCTION::USER_STRIN - -

FUNCTION::USER_STRIN

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::user_string - Retrieves string from user space -  -

SYNOPSIS

- -

-

-    user_string:string(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-the user space address to retrieve the string from -
- -  -

DESCRIPTION

- -

- -Returns the null terminated C string from a given user space memory address. Reports -lq<unknown>rq -on the rare cases when userspace data is not accessible. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::user_string2.3stap.html b/man/function::user_string2.3stap.html deleted file mode 100644 index 38994786..00000000 --- a/man/function::user_string2.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of FUNCTION::USER_STRIN - -

FUNCTION::USER_STRIN

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::user_string2 - Retrieves string from user space with alternative error string -  -

SYNOPSIS

- -

-

-    user_string2:string(addr:long,err_msg:string)
-
- -  -

ARGUMENTS

- -

- -addr -

-the user space address to retrieve the string from -
- -

- -err_msg -

-the error message to return when data isn't available -
- -  -

DESCRIPTION

- -

- -Returns the null terminated C string from a given user space memory address. Reports the given error message on the rare cases when userspace data is not accessible. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::user_string2_utf16.3stap.html b/man/function::user_string2_utf16.3stap.html deleted file mode 100644 index 50ac62b7..00000000 --- a/man/function::user_string2_utf16.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of FUNCTION::USER_STRIN - -

FUNCTION::USER_STRIN

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::user_string2_utf16 - Retrieves UTF-16 string from user memory with alternative error string -  -

SYNOPSIS

- -

-

-    user_string2_utf16:string(addr:long,err_msg:string)
-
- -  -

ARGUMENTS

- -

- -addr -

-The user address to retrieve the string from -
- -

- -err_msg -

-The error message to return when data isn't available -
- -  -

DESCRIPTION

- -

- -This function returns a null terminated UTF-8 string converted from the UTF-16 string at a given user memory address. Reports the given error message on string copy fault or conversion error. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::user_string2_utf32.3stap.html b/man/function::user_string2_utf32.3stap.html deleted file mode 100644 index 51dfbd85..00000000 --- a/man/function::user_string2_utf32.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of FUNCTION::USER_STRIN - -

FUNCTION::USER_STRIN

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::user_string2_utf32 - Retrieves UTF-32 string from user memory with alternative error string -  -

SYNOPSIS

- -

-

-    user_string2_utf32:string(addr:long,err_msg:string)
-
- -  -

ARGUMENTS

- -

- -addr -

-The user address to retrieve the string from -
- -

- -err_msg -

-The error message to return when data isn't available -
- -  -

DESCRIPTION

- -

- -This function returns a null terminated UTF-8 string converted from the UTF-32 string at a given user memory address. Reports the given error message on string copy fault or conversion error. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::user_string_n.3stap.html b/man/function::user_string_n.3stap.html deleted file mode 100644 index 157ff1f6..00000000 --- a/man/function::user_string_n.3stap.html +++ /dev/null @@ -1,71 +0,0 @@ - -Manpage of FUNCTION::USER_STRIN - -

FUNCTION::USER_STRIN

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::user_string_n - Retrieves string of given length from user space -  -

SYNOPSIS

- -

-

-    user_string_n:string(addr:long,n:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-the user space address to retrieve the string from -
- -

- -n -

-the maximum length of the string (if not null terminated) -
- -  -

DESCRIPTION

- -

- -Returns the C string of a maximum given length from a given user space address. Returns -lq<unknown>rq -on the rare cases when userspace data is not accessible at the given address. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::user_string_n2.3stap.html b/man/function::user_string_n2.3stap.html deleted file mode 100644 index 5e688841..00000000 --- a/man/function::user_string_n2.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of FUNCTION::USER_STRIN - -

FUNCTION::USER_STRIN

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::user_string_n2 - Retrieves string of given length from user space -  -

SYNOPSIS

- -

-

-    user_string_n2:string(addr:long,n:long,err_msg:string)
-
- -  -

ARGUMENTS

- -

- -addr -

-the user space address to retrieve the string from -
- -

- -n -

-the maximum length of the string (if not null terminated) -
- -

- -err_msg -

-the error message to return when data isn't available -
- -  -

DESCRIPTION

- -

- -Returns the C string of a maximum given length from a given user space address. Returns the given error message string on the rare cases when userspace data is not accessible at the given address. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::user_string_n_quoted.3stap.html b/man/function::user_string_n_quoted.3stap.html deleted file mode 100644 index 8fbf012c..00000000 --- a/man/function::user_string_n_quoted.3stap.html +++ /dev/null @@ -1,73 +0,0 @@ - -Manpage of FUNCTION::USER_STRIN - -

FUNCTION::USER_STRIN

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::user_string_n_quoted - Retrieves and quotes string from user space -  -

SYNOPSIS

- -

-

-    user_string_n_quoted:string(addr:long,n:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-the user space address to retrieve the string from -
- -

- -n -

-the maximum length of the string (if not null terminated) -
- -  -

DESCRIPTION

- -

- -Returns up to n characters of a C string from the given user space memory address where any ASCII characters that are not printable are replaced by the corresponding escape sequence in the returned string. Reports -lqNULLrq -for address zero. Returns -lq<unknown>rq -on the rare cases when userspace data is not accessible at the given address. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::user_string_n_warn.3stap.html b/man/function::user_string_n_warn.3stap.html deleted file mode 100644 index fdd50065..00000000 --- a/man/function::user_string_n_warn.3stap.html +++ /dev/null @@ -1,71 +0,0 @@ - -Manpage of FUNCTION::USER_STRIN - -

FUNCTION::USER_STRIN

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::user_string_n_warn - Retrieves string from user space -  -

SYNOPSIS

- -

-

-    user_string_n_warn:string(addr:long,n:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-the user space address to retrieve the string from -
- -

- -n -

-the maximum length of the string (if not null terminated) -
- -  -

DESCRIPTION

- -

- -Returns up to n characters of a C string from a given user space memory address. Reports -lq<unknown>rq -on the rare cases when userspace data is not accessible and warns (but does not abort) about the failure. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::user_string_quoted.3stap.html b/man/function::user_string_quoted.3stap.html deleted file mode 100644 index f53c6fed..00000000 --- a/man/function::user_string_quoted.3stap.html +++ /dev/null @@ -1,66 +0,0 @@ - -Manpage of FUNCTION::USER_STRIN - -

FUNCTION::USER_STRIN

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::user_string_quoted - Retrieves and quotes string from user space -  -

SYNOPSIS

- -

-

-    user_string_quoted:string(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-the user space address to retrieve the string from -
- -  -

DESCRIPTION

- -

- -Returns the null terminated C string from a given user space memory address where any ASCII characters that are not printable are replaced by the corresponding escape sequence in the returned string. Reports -lqNULLrq -for address zero. Returns -lq<unknown>rq -on the rare cases when userspace data is not accessible at the given address. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::user_string_utf16.3stap.html b/man/function::user_string_utf16.3stap.html deleted file mode 100644 index 4f484fbc..00000000 --- a/man/function::user_string_utf16.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::USER_STRIN - -

FUNCTION::USER_STRIN

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::user_string_utf16 - Retrieves UTF-16 string from user memory -  -

SYNOPSIS

- -

-

-    user_string_utf16:string(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-The user address to retrieve the string from -
- -  -

DESCRIPTION

- -

- -This function returns a null terminated UTF-8 string converted from the UTF-16 string at a given user memory address. Reports an error on string copy fault or conversion error. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::user_string_utf32.3stap.html b/man/function::user_string_utf32.3stap.html deleted file mode 100644 index 5b732f93..00000000 --- a/man/function::user_string_utf32.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::USER_STRIN - -

FUNCTION::USER_STRIN

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::user_string_utf32 - Retrieves UTF-32 string from user memory -  -

SYNOPSIS

- -

-

-    user_string_utf32:string(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-The user address to retrieve the string from -
- -  -

DESCRIPTION

- -

- -This function returns a null terminated UTF-8 string converted from the UTF-32 string at a given user memory address. Reports an error on string copy fault or conversion error. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::user_string_warn.3stap.html b/man/function::user_string_warn.3stap.html deleted file mode 100644 index 145f5bcb..00000000 --- a/man/function::user_string_warn.3stap.html +++ /dev/null @@ -1,64 +0,0 @@ - -Manpage of FUNCTION::USER_STRIN - -

FUNCTION::USER_STRIN

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::user_string_warn - Retrieves string from user space -  -

SYNOPSIS

- -

-

-    user_string_warn:string(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-the user space address to retrieve the string from -
- -  -

DESCRIPTION

- -

- -Returns the null terminated C string from a given user space memory address. Reports -lq<unknown>rq -on the rare cases when userspace data is not accessible and warns (but does not abort) about the failure. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::user_uint16.3stap.html b/man/function::user_uint16.3stap.html deleted file mode 100644 index a485eb9e..00000000 --- a/man/function::user_uint16.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::USER_UINT1 - -

FUNCTION::USER_UINT1

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::user_uint16 - Retrieves an unsigned 16-bit integer value stored in user space -  -

SYNOPSIS

- -

-

-    user_uint16:long(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-the user space address to retrieve the unsigned 16-bit integer from -
- -  -

DESCRIPTION

- -

- -Returns the unsigned 16-bit integer value from a given user space address. Returns zero when user space data is not accessible. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::user_uint32.3stap.html b/man/function::user_uint32.3stap.html deleted file mode 100644 index af868af3..00000000 --- a/man/function::user_uint32.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::USER_UINT3 - -

FUNCTION::USER_UINT3

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::user_uint32 - Retrieves an unsigned 32-bit integer value stored in user space -  -

SYNOPSIS

- -

-

-    user_uint32:long(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-the user space address to retrieve the unsigned 32-bit integer from -
- -  -

DESCRIPTION

- -

- -Returns the unsigned 32-bit integer value from a given user space address. Returns zero when user space data is not accessible. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::user_uint64.3stap.html b/man/function::user_uint64.3stap.html deleted file mode 100644 index af4bcaea..00000000 --- a/man/function::user_uint64.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::USER_UINT6 - -

FUNCTION::USER_UINT6

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::user_uint64 - Retrieves an unsigned 64-bit integer value stored in user space -  -

SYNOPSIS

- -

-

-    user_uint64:long(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-the user space address to retrieve the unsigned 64-bit integer from -
- -  -

DESCRIPTION

- -

- -Returns the unsigned 64-bit integer value from a given user space address. Returns zero when user space data is not accessible. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::user_uint8.3stap.html b/man/function::user_uint8.3stap.html deleted file mode 100644 index 860dbad9..00000000 --- a/man/function::user_uint8.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::USER_UINT8 - -

FUNCTION::USER_UINT8

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::user_uint8 - Retrieves an unsigned 8-bit integer value stored in user space -  -

SYNOPSIS

- -

-

-    user_uint8:long(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-the user space address to retrieve the unsigned 8-bit integer from -
- -  -

DESCRIPTION

- -

- -Returns the unsigned 8-bit integer value from a given user space address. Returns zero when user space data is not accessible. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::user_ushort.3stap.html b/man/function::user_ushort.3stap.html deleted file mode 100644 index 5e409137..00000000 --- a/man/function::user_ushort.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::USER_USHOR - -

FUNCTION::USER_USHOR

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::user_ushort - Retrieves an unsigned short value stored in user space -  -

SYNOPSIS

- -

-

-    user_ushort:long(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-the user space address to retrieve the unsigned short from -
- -  -

DESCRIPTION

- -

- -Returns the unsigned short value from a given user space address. Returns zero when user space data is not accessible. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::user_ushort_warn.3stap.html b/man/function::user_ushort_warn.3stap.html deleted file mode 100644 index 93535c33..00000000 --- a/man/function::user_ushort_warn.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::USER_USHOR - -

FUNCTION::USER_USHOR

-Section: String and data retrieving fun (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::user_ushort_warn - Retrieves an unsigned short value stored in user space -  -

SYNOPSIS

- -

-

-    user_ushort_warn:long(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-the user space address to retrieve the unsigned short from -
- -  -

DESCRIPTION

- -

- -Returns the unsigned short value from a given user space address. Returns zero when user space and warns (but does not abort) about the failure. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::usrdev2kerndev.3stap.html b/man/function::usrdev2kerndev.3stap.html deleted file mode 100644 index c2145485..00000000 --- a/man/function::usrdev2kerndev.3stap.html +++ /dev/null @@ -1,55 +0,0 @@ - -Manpage of FUNCTION::USRDEV2KER - -

FUNCTION::USRDEV2KER

-Section: Device Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::usrdev2kerndev - Converts a user-space device number into the format used in the kernel -  -

SYNOPSIS

- -

-

-    usrdev2kerndev:long(dev:long)
-
- -  -

ARGUMENTS

- -

- -dev -

-Device number in user-space format. -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::ustack.3stap.html b/man/function::ustack.3stap.html deleted file mode 100644 index 88249f66..00000000 --- a/man/function::ustack.3stap.html +++ /dev/null @@ -1,64 +0,0 @@ - -Manpage of FUNCTION::USTACK - -

FUNCTION::USTACK

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::ustack - Return address at given depth of user stack backtrace -  -

SYNOPSIS

- -

-

-    ustack:long(n:long)
-
- -  -

ARGUMENTS

- -

- -n -

-number of levels to descend in the stack. -
- -  -

DESCRIPTION

- -

- -Performs a simple (user space) backtrace, and returns the element at the specified position. The results of the backtrace itself are cached, so that the backtrace computation is performed at most once no matter how many times -ustack -is called, or in what order. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::usymdata.3stap.html b/man/function::usymdata.3stap.html deleted file mode 100644 index da57a114..00000000 --- a/man/function::usymdata.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::USYMDATA - -

FUNCTION::USYMDATA

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::usymdata - Return the symbol and module offset of an address. -  -

SYNOPSIS

- -

-

-    usymdata:string(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-The address to translate. -
- -  -

DESCRIPTION

- -

- -Returns the (function) symbol name associated with the given address in the current task if known, the offset from the start and the size of the symbol, plus the module name (between brackets). If symbol is unknown, but module is known, the offset inside the module, plus the size of the module is added. If any element is not known it will be omitted and if the symbol name is unknown it will return the hex string for the given address. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::usymname.3stap.html b/man/function::usymname.3stap.html deleted file mode 100644 index 5c8a6ffb..00000000 --- a/man/function::usymname.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::USYMNAME - -

FUNCTION::USYMNAME

-Section: Context Functions (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::usymname - Return the symbol of an address in the current task. -  -

SYNOPSIS

- -

-

-    usymname:string(addr:long)
-
- -  -

ARGUMENTS

- -

- -addr -

-The address to translate. -
- -  -

DESCRIPTION

- -

- -Returns the (function) symbol name associated with the given address if known. If not known it will return the hex string representation of addr. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::vm_fault_contains.3stap.html b/man/function::vm_fault_contains.3stap.html deleted file mode 100644 index c8677250..00000000 --- a/man/function::vm_fault_contains.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::VM_FAULT_C - -

FUNCTION::VM_FAULT_C

-Section: Memory Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::vm_fault_contains - Test return value for page fault reason -  -

SYNOPSIS

- -

-

-    vm_fault_contains:long(value:long,test:long)
-
- -  -

ARGUMENTS

- -

- -value -

-the fault_type returned by vm.page_fault.return -
- -

- -test -

-the type of fault to test for (VM_FAULT_OOM or similar) -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/function::warn.3stap.html b/man/function::warn.3stap.html deleted file mode 100644 index 669806ae..00000000 --- a/man/function::warn.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of FUNCTION::WARN - -

FUNCTION::WARN

-Section: Logging Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -function::warn - Send a line to the warning stream -  -

SYNOPSIS

- -

-

-    warn(msg:string)
-
- -  -

ARGUMENTS

- -

- -msg -

-The formatted message string -
- -  -

DESCRIPTION

- -

- -This function sends a warning message immediately to staprun. It is also sent over the bulk transport (relayfs) if it is being used. If the last characater is not a newline, the one is added. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
ARGUMENTS
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/index.html b/man/index.html deleted file mode 100644 index 40e7a97f..00000000 --- a/man/index.html +++ /dev/null @@ -1,686 +0,0 @@ -systemtap man page index diff --git a/man/probe::ioblock.end.3stap.html b/man/probe::ioblock.end.3stap.html deleted file mode 100644 index f910d3a0..00000000 --- a/man/probe::ioblock.end.3stap.html +++ /dev/null @@ -1,93 +0,0 @@ - -Manpage of PROBE::IOBLOCK\&.END - -

PROBE::IOBLOCK\&.END

-Section: IO Scheduler and block IO Taps (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::ioblock.end - Fires whenever a block I/O transfer is complete. -  -

SYNOPSIS

- -

-

-ioblock.end 
-
- -  -

VALUES

- -

- -None -  -

DESCRIPTION

- -

- -

- -

-name -- name of the probe point -devname -- block device name -ino -- i-node number of the mapped file -bytes_done -- number of bytes transferred -sector -- beginning sector for the entire bio -flags -- see below BIO_UPTODATE 0 ok after I/O completion BIO_RW_BLOCK 1 RW_AHEAD set, and read/write would block BIO_EOF 2 out-out-bounds error BIO_SEG_VALID 3 nr_hw_seg valid BIO_CLONED 4 doesn't own data BIO_BOUNCED 5 bio is a bounce bio BIO_USER_MAPPED 6 contains user pages BIO_EOPNOTSUPP 7 not supported -error -- 0 on success -rw -- binary trace for read/write request -vcnt -- bio vector count which represents number of array element (page, offset, length) which makes up this I/O request -idx -- offset into the bio vector array -phys_segments -- number of segments in this bio after physical address coalescing is performed. -hw_segments -- number of segments after physical and DMA remapping hardware coalescing is performed -size -- total size in bytes -  -

CONTEXT

- -

- -The process signals the transfer is done. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
CONTEXT
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::ioblock.request.3stap.html b/man/probe::ioblock.request.3stap.html deleted file mode 100644 index 6c0dcca1..00000000 --- a/man/probe::ioblock.request.3stap.html +++ /dev/null @@ -1,98 +0,0 @@ - -Manpage of PROBE::IOBLOCK\&.REQ - -

PROBE::IOBLOCK\&.REQ

-Section: IO Scheduler and block IO Taps (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::ioblock.request - Fires whenever making a generic block I/O request. -  -

SYNOPSIS

- -

-

-ioblock.request 
-
- -  -

VALUES

- -

- -None -  -

DESCRIPTION

- -

- -

- -

-name -- name of the probe point -devname -- block device name -ino -- i-node number of the mapped file -sector -- beginning sector for the entire bio -flags -- see below BIO_UPTODATE 0 ok after I/O completion BIO_RW_BLOCK 1 RW_AHEAD set, and read/write would block BIO_EOF 2 out-out-bounds error BIO_SEG_VALID 3 nr_hw_seg valid BIO_CLONED 4 doesn't own data BIO_BOUNCED 5 bio is a bounce bio BIO_USER_MAPPED 6 contains user pages BIO_EOPNOTSUPP 7 not supported -

- -

-rw -- binary trace for read/write request -vcnt -- bio vector count which represents number of array element (page, offset, length) which make up this I/O request -idx -- offset into the bio vector array -phys_segments -- number of segments in this bio after physical address coalescing is performed -hw_segments -- number of segments after physical and DMA remapping hardware coalescing is performed -size -- total size in bytes -bdev -- target block device -bdev_contains -- points to the device object which contains the partition (when bio structure represents a partition) -p_start_sect -- points to the start sector of the partition structure of the device -  -

CONTEXT

- -

- -The process makes block I/O request -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
CONTEXT
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::ioblock_trace.bounce.3stap.html b/man/probe::ioblock_trace.bounce.3stap.html deleted file mode 100644 index d6da4056..00000000 --- a/man/probe::ioblock_trace.bounce.3stap.html +++ /dev/null @@ -1,97 +0,0 @@ - -Manpage of PROBE::IOBLOCK_TRACE - -

PROBE::IOBLOCK_TRACE

-Section: IO Scheduler and block IO Taps (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::ioblock_trace.bounce - Fires whenever a buffer bounce is needed for at least one page of a block IO request. -  -

SYNOPSIS

- -

-

-ioblock_trace.bounce 
-
- -  -

VALUES

- -

- -None -  -

DESCRIPTION

- -

- -

- -

-name -- name of the probe point -q -- request queue on which this bio was queued. -devname -- device for which a buffer bounce was needed. -ino -- i-node number of the mapped file -bytes_done -- number of bytes transferred -sector -- beginning sector for the entire bio -flags -- see below BIO_UPTODATE 0 ok after I/O completion BIO_RW_BLOCK 1 RW_AHEAD set, and read/write would block BIO_EOF 2 out-out-bounds error BIO_SEG_VALID 3 nr_hw_seg valid BIO_CLONED 4 doesn't own data BIO_BOUNCED 5 bio is a bounce bio BIO_USER_MAPPED 6 contains user pages BIO_EOPNOTSUPP 7 not supported -rw -- binary trace for read/write request -vcnt -- bio vector count which represents number of array element (page, offset, length) which makes up this I/O request -idx -- offset into the bio vector array -phys_segments -- number of segments in this bio after physical address coalescing is performed. -size -- total size in bytes -bdev -- target block device -bdev_contains -- points to the device object which contains the partition (when bio structure represents a partition) -p_start_sect -- points to the start sector of the partition structure of the device -  -

CONTEXT

- -

- -The process creating a block IO request. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
CONTEXT
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::ioblock_trace.end.3stap.html b/man/probe::ioblock_trace.end.3stap.html deleted file mode 100644 index 962bd7ae..00000000 --- a/man/probe::ioblock_trace.end.3stap.html +++ /dev/null @@ -1,100 +0,0 @@ - -Manpage of PROBE::IOBLOCK_TRACE - -

PROBE::IOBLOCK_TRACE

-Section: IO Scheduler and block IO Taps (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::ioblock_trace.end - Fires whenever a block I/O transfer is complete. -  -

SYNOPSIS

- -

-

-ioblock_trace.end 
-
- -  -

VALUES

- -

- -None -  -

DESCRIPTION

- -

- -

- -

-name -- name of the probe point -q -- request queue on which this bio was queued. -devname -- block device name -ino -- i-node number of the mapped file -bytes_done -- number of bytes transferred -sector -- beginning sector for the entire bio -flags -- see below BIO_UPTODATE 0 ok after I/O completion BIO_RW_BLOCK 1 RW_AHEAD set, and read/write would block BIO_EOF 2 out-out-bounds error BIO_SEG_VALID 3 nr_hw_seg valid BIO_CLONED 4 doesn't own data BIO_BOUNCED 5 bio is a bounce bio BIO_USER_MAPPED 6 contains user pages BIO_EOPNOTSUPP 7 not supported -

- -

-rw -- binary trace for read/write request -vcnt -- bio vector count which represents number of array element (page, offset, length) which makes up this I/O request -idx -- offset into the bio vector array -phys_segments -- number of segments in this bio after physical address coalescing is performed. -size -- total size in bytes -bdev -- target block device -bdev_contains -- points to the device object which contains the partition (when bio structure represents a partition) -p_start_sect -- points to the start sector of the partition structure of the device -  -

CONTEXT

- -

- -The process signals the transfer is done. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
CONTEXT
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::ioblock_trace.request.3stap.html b/man/probe::ioblock_trace.request.3stap.html deleted file mode 100644 index f2cd0284..00000000 --- a/man/probe::ioblock_trace.request.3stap.html +++ /dev/null @@ -1,100 +0,0 @@ - -Manpage of PROBE::IOBLOCK_TRACE - -

PROBE::IOBLOCK_TRACE

-Section: IO Scheduler and block IO Taps (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::ioblock_trace.request - Fires just as a generic block I/O request is created for a bio. -  -

SYNOPSIS

- -

-

-ioblock_trace.request 
-
- -  -

VALUES

- -

- -None -  -

DESCRIPTION

- -

- -

- -

-name -- name of the probe point -q -- request queue on which this bio was queued. -devname -- block device name -ino -- i-node number of the mapped file -bytes_done -- number of bytes transferred -sector -- beginning sector for the entire bio -flags -- see below BIO_UPTODATE 0 ok after I/O completion BIO_RW_BLOCK 1 RW_AHEAD set, and read/write would block BIO_EOF 2 out-out-bounds error BIO_SEG_VALID 3 nr_hw_seg valid BIO_CLONED 4 doesn't own data BIO_BOUNCED 5 bio is a bounce bio BIO_USER_MAPPED 6 contains user pages BIO_EOPNOTSUPP 7 not supported -

- -

-rw -- binary trace for read/write request -vcnt -- bio vector count which represents number of array element (page, offset, length) which make up this I/O request -idx -- offset into the bio vector array -phys_segments -- number of segments in this bio after physical address coalescing is performed. -size -- total size in bytes -bdev -- target block device -bdev_contains -- points to the device object which contains the partition (when bio structure represents a partition) -p_start_sect -- points to the start sector of the partition structure of the device -  -

CONTEXT

- -

- -The process makes block I/O request -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
CONTEXT
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::ioscheduler.elv_add_request.3stap.html b/man/probe::ioscheduler.elv_add_request.3stap.html deleted file mode 100644 index 5c9e6db5..00000000 --- a/man/probe::ioscheduler.elv_add_request.3stap.html +++ /dev/null @@ -1,90 +0,0 @@ - -Manpage of PROBE::IOSCHEDULER\& - -

PROBE::IOSCHEDULER\&

-Section: IO Scheduler and block IO Taps (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::ioscheduler.elv_add_request - probe to indicate request is added to the request queue. -  -

SYNOPSIS

- -

-

-ioscheduler.elv_add_request 
-
- -  -

VALUES

- -

- -disk_major -

-Disk major no of request. -
- -

- -rq -

-Address of request. -
- -

- -q -

-Pointer to request queue. -
- -

- -elevator_name -

-The type of I/O elevator currently enabled. -
- -

- -disk_minor -

-Disk minor number of request. -
- -

- -rq_flags -

-Request flags. -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::ioscheduler.elv_add_request.kp.3stap.html b/man/probe::ioscheduler.elv_add_request.kp.3stap.html deleted file mode 100644 index c4b25bfc..00000000 --- a/man/probe::ioscheduler.elv_add_request.kp.3stap.html +++ /dev/null @@ -1,97 +0,0 @@ - -Manpage of PROBE::IOSCHEDULER\& - -

PROBE::IOSCHEDULER\&

-Section: IO Scheduler and block IO Taps (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::ioscheduler.elv_add_request.kp - kprobe based probe to indicate that a request was added to the request queue -  -

SYNOPSIS

- -

-

-ioscheduler.elv_add_request.kp 
-
- -  -

VALUES

- -

- -disk_major -

-Disk major number of the request -
- -

- -rq -

-Address of the request -
- -

- -q -

-pointer to request queue -
- -

- -name -

-Name of the probe point -
- -

- -elevator_name -

-The type of I/O elevator currently enabled -
- -

- -disk_minor -

-Disk minor number of the request -
- -

- -rq_flags -

-Request flags -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::ioscheduler.elv_add_request.tp.3stap.html b/man/probe::ioscheduler.elv_add_request.tp.3stap.html deleted file mode 100644 index 1ab3e256..00000000 --- a/man/probe::ioscheduler.elv_add_request.tp.3stap.html +++ /dev/null @@ -1,97 +0,0 @@ - -Manpage of PROBE::IOSCHEDULER\& - -

PROBE::IOSCHEDULER\&

-Section: IO Scheduler and block IO Taps (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::ioscheduler.elv_add_request.tp - tracepoint based probe to indicate a request is added to the request queue. -  -

SYNOPSIS

- -

-

-ioscheduler.elv_add_request.tp 
-
- -  -

VALUES

- -

- -disk_major -

-Disk major no of request. -
- -

- -rq -

-Address of request. -
- -

- -q -

-Pointer to request queue. -
- -

- -name -

-Name of the probe point -
- -

- -elevator_name -

-The type of I/O elevator currently enabled. -
- -

- -disk_minor -

-Disk minor number of request. -
- -

- -rq_flags -

-Request flags. -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::ioscheduler.elv_completed_request.3stap.html b/man/probe::ioscheduler.elv_completed_request.3stap.html deleted file mode 100644 index 6735fdaa..00000000 --- a/man/probe::ioscheduler.elv_completed_request.3stap.html +++ /dev/null @@ -1,90 +0,0 @@ - -Manpage of PROBE::IOSCHEDULER\& - -

PROBE::IOSCHEDULER\&

-Section: IO Scheduler and block IO Taps (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::ioscheduler.elv_completed_request - Fires when a request is completed -  -

SYNOPSIS

- -

-

-ioscheduler.elv_completed_request 
-
- -  -

VALUES

- -

- -disk_major -

-Disk major number of the request -
- -

- -rq -

-Address of the request -
- -

- -name -

-Name of the probe point -
- -

- -elevator_name -

-The type of I/O elevator currently enabled -
- -

- -disk_minor -

-Disk minor number of the request -
- -

- -rq_flags -

-Request flags -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::ioscheduler.elv_next_request.3stap.html b/man/probe::ioscheduler.elv_next_request.3stap.html deleted file mode 100644 index dc805569..00000000 --- a/man/probe::ioscheduler.elv_next_request.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of PROBE::IOSCHEDULER\& - -

PROBE::IOSCHEDULER\&

-Section: IO Scheduler and block IO Taps (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::ioscheduler.elv_next_request - Fires when a request is retrieved from the request queue -  -

SYNOPSIS

- -

-

-ioscheduler.elv_next_request 
-
- -  -

VALUES

- -

- -name -

-Name of the probe point -
- -

- -elevator_name -

-The type of I/O elevator currently enabled -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::ioscheduler.elv_next_request.return.3stap.html b/man/probe::ioscheduler.elv_next_request.return.3stap.html deleted file mode 100644 index 22733b68..00000000 --- a/man/probe::ioscheduler.elv_next_request.return.3stap.html +++ /dev/null @@ -1,83 +0,0 @@ - -Manpage of PROBE::IOSCHEDULER\& - -

PROBE::IOSCHEDULER\&

-Section: IO Scheduler and block IO Taps (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::ioscheduler.elv_next_request.return - Fires when a request retrieval issues a return signal -  -

SYNOPSIS

- -

-

-ioscheduler.elv_next_request.return 
-
- -  -

VALUES

- -

- -disk_major -

-Disk major number of the request -
- -

- -rq -

-Address of the request -
- -

- -name -

-Name of the probe point -
- -

- -disk_minor -

-Disk minor number of the request -
- -

- -rq_flags -

-Request flags -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::ioscheduler_trace.elv_abort_request.3stap.html b/man/probe::ioscheduler_trace.elv_abort_request.3stap.html deleted file mode 100644 index e64f1af7..00000000 --- a/man/probe::ioscheduler_trace.elv_abort_request.3stap.html +++ /dev/null @@ -1,90 +0,0 @@ - -Manpage of PROBE::IOSCHEDULER_T - -

PROBE::IOSCHEDULER_T

-Section: IO Scheduler and block IO Taps (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::ioscheduler_trace.elv_abort_request - Fires when a request is aborted. -  -

SYNOPSIS

- -

-

-ioscheduler_trace.elv_abort_request 
-
- -  -

VALUES

- -

- -disk_major -

-Disk major no of request. -
- -

- -rq -

-Address of request. -
- -

- -name -

-Name of the probe point -
- -

- -elevator_name -

-The type of I/O elevator currently enabled. -
- -

- -disk_minor -

-Disk minor number of request. -
- -

- -rq_flags -

-Request flags. -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::ioscheduler_trace.elv_completed_request.3stap.html b/man/probe::ioscheduler_trace.elv_completed_request.3stap.html deleted file mode 100644 index 59a983a1..00000000 --- a/man/probe::ioscheduler_trace.elv_completed_request.3stap.html +++ /dev/null @@ -1,97 +0,0 @@ - -Manpage of PROBE::IOSCHEDULER_T - -

PROBE::IOSCHEDULER_T

-Section: IO Scheduler and block IO Taps (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::ioscheduler_trace.elv_completed_request - Fires when a request is -  -

SYNOPSIS

- -

-

-ioscheduler_trace.elv_completed_request 
-
- -  -

VALUES

- -

- -disk_major -

-Disk major no of request. -
- -

- -rq -

-Address of request. -
- -

- -name -

-Name of the probe point -
- -

- -elevator_name -

-The type of I/O elevator currently enabled. -
- -

- -disk_minor -

-Disk minor number of request. -
- -

- -rq_flags -

-Request flags. -
- -  -

DESCRIPTION

- -

- -completed. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::ioscheduler_trace.elv_issue_request.3stap.html b/man/probe::ioscheduler_trace.elv_issue_request.3stap.html deleted file mode 100644 index 7b6fad6a..00000000 --- a/man/probe::ioscheduler_trace.elv_issue_request.3stap.html +++ /dev/null @@ -1,97 +0,0 @@ - -Manpage of PROBE::IOSCHEDULER_T - -

PROBE::IOSCHEDULER_T

-Section: IO Scheduler and block IO Taps (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::ioscheduler_trace.elv_issue_request - Fires when a request is -  -

SYNOPSIS

- -

-

-ioscheduler_trace.elv_issue_request 
-
- -  -

VALUES

- -

- -disk_major -

-Disk major no of request. -
- -

- -rq -

-Address of request. -
- -

- -name -

-Name of the probe point -
- -

- -elevator_name -

-The type of I/O elevator currently enabled. -
- -

- -disk_minor -

-Disk minor number of request. -
- -

- -rq_flags -

-Request flags. -
- -  -

DESCRIPTION

- -

- -scheduled. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::ioscheduler_trace.elv_requeue_request.3stap.html b/man/probe::ioscheduler_trace.elv_requeue_request.3stap.html deleted file mode 100644 index 0c6e4287..00000000 --- a/man/probe::ioscheduler_trace.elv_requeue_request.3stap.html +++ /dev/null @@ -1,97 +0,0 @@ - -Manpage of PROBE::IOSCHEDULER_T - -

PROBE::IOSCHEDULER_T

-Section: IO Scheduler and block IO Taps (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::ioscheduler_trace.elv_requeue_request - Fires when a request is -  -

SYNOPSIS

- -

-

-ioscheduler_trace.elv_requeue_request 
-
- -  -

VALUES

- -

- -disk_major -

-Disk major no of request. -
- -

- -rq -

-Address of request. -
- -

- -name -

-Name of the probe point -
- -

- -elevator_name -

-The type of I/O elevator currently enabled. -
- -

- -disk_minor -

-Disk minor number of request. -
- -

- -rq_flags -

-Request flags. -
- -  -

DESCRIPTION

- -

- -put back on the queue, when the hadware cannot accept more requests. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::ioscheduler_trace.plug.3stap.html b/man/probe::ioscheduler_trace.plug.3stap.html deleted file mode 100644 index fcadf2eb..00000000 --- a/man/probe::ioscheduler_trace.plug.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of PROBE::IOSCHEDULER_T - -

PROBE::IOSCHEDULER_T

-Section: IO Scheduler and block IO Taps (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::ioscheduler_trace.plug - Fires when a request queue is plugged; -  -

SYNOPSIS

- -

-

-ioscheduler_trace.plug 
-
- -  -

VALUES

- -

- -name -

-Name of the probe point -
- -

- -rq_queue -

-request queue -
- -  -

DESCRIPTION

- -

- -ie, requests in the queue cannot be serviced by block driver. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::ioscheduler_trace.unplug_io.3stap.html b/man/probe::ioscheduler_trace.unplug_io.3stap.html deleted file mode 100644 index 81e5aa25..00000000 --- a/man/probe::ioscheduler_trace.unplug_io.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of PROBE::IOSCHEDULER_T - -

PROBE::IOSCHEDULER_T

-Section: IO Scheduler and block IO Taps (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::ioscheduler_trace.unplug_io - Fires when a request queue is unplugged; -  -

SYNOPSIS

- -

-

-ioscheduler_trace.unplug_io 
-
- -  -

VALUES

- -

- -name -

-Name of the probe point -
- -

- -rq_queue -

-request queue -
- -  -

DESCRIPTION

- -

- -Either, when number of pending requests in the queue exceeds threshold or, upon expiration of timer that was activated when queue was plugged. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::ioscheduler_trace.unplug_timer.3stap.html b/man/probe::ioscheduler_trace.unplug_timer.3stap.html deleted file mode 100644 index 62c4cb16..00000000 --- a/man/probe::ioscheduler_trace.unplug_timer.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of PROBE::IOSCHEDULER_T - -

PROBE::IOSCHEDULER_T

-Section: IO Scheduler and block IO Taps (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::ioscheduler_trace.unplug_timer - Fires when unplug timer associated -  -

SYNOPSIS

- -

-

-ioscheduler_trace.unplug_timer 
-
- -  -

VALUES

- -

- -name -

-Name of the probe point -
- -

- -rq_queue -

-request queue -
- -  -

DESCRIPTION

- -

- -with a request queue expires. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::ipmib.ForwDatagrams.3stap.html b/man/probe::ipmib.ForwDatagrams.3stap.html deleted file mode 100644 index 61d64331..00000000 --- a/man/probe::ipmib.ForwDatagrams.3stap.html +++ /dev/null @@ -1,74 +0,0 @@ - -Manpage of PROBE::IPMIB\&.FORWD - -

PROBE::IPMIB\&.FORWD

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::ipmib.ForwDatagrams - Count forwarded packet -  -

SYNOPSIS

- -

-

-ipmib.ForwDatagrams 
-
- -  -

VALUES

- -

- -skb -

-pointer to the struct sk_buff being acted on -
- -

- -op -

-value to be added to the counter (default value of 1) -
- -  -

DESCRIPTION

- -

- -The packet pointed to by -skb -is filtered by the function -ipmib_filter_key. If the packet passes the filter is is counted in the global -ForwDatagrams -(equivalent to SNMP's MIB IPSTATS_MIB_OUTFORWDATAGRAMS) -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::ipmib.FragFails.3stap.html b/man/probe::ipmib.FragFails.3stap.html deleted file mode 100644 index 7b20907c..00000000 --- a/man/probe::ipmib.FragFails.3stap.html +++ /dev/null @@ -1,74 +0,0 @@ - -Manpage of PROBE::IPMIB\&.FRAGF - -

PROBE::IPMIB\&.FRAGF

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::ipmib.FragFails - Count datagram fragmented unsuccessfully -  -

SYNOPSIS

- -

-

-ipmib.FragFails 
-
- -  -

VALUES

- -

- -skb -

-pointer to the struct sk_buff being acted on -
- -

- -op -

-Value to be added to the counter (default value of 1) -
- -  -

DESCRIPTION

- -

- -The packet pointed to by -skb -is filtered by the function -ipmib_filter_key. If the packet passes the filter is is counted in the global -FragFails -(equivalent to SNMP's MIB IPSTATS_MIB_FRAGFAILS) -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::ipmib.FragOKs.3stap.html b/man/probe::ipmib.FragOKs.3stap.html deleted file mode 100644 index ef99c0a4..00000000 --- a/man/probe::ipmib.FragOKs.3stap.html +++ /dev/null @@ -1,74 +0,0 @@ - -Manpage of PROBE::IPMIB\&.FRAGO - -

PROBE::IPMIB\&.FRAGO

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::ipmib.FragOKs - Count datagram fragmented successfully -  -

SYNOPSIS

- -

-

-ipmib.FragOKs 
-
- -  -

VALUES

- -

- -skb -

-pointer to the struct sk_buff being acted on -
- -

- -op -

-value to be added to the counter (default value of 1) -
- -  -

DESCRIPTION

- -

- -The packet pointed to by -skb -is filtered by the function -ipmib_filter_key. If the packet passes the filter is is counted in the global -FragOKs -(equivalent to SNMP's MIB IPSTATS_MIB_FRAGOKS) -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::ipmib.InAddrErrors.3stap.html b/man/probe::ipmib.InAddrErrors.3stap.html deleted file mode 100644 index e0f7b8dd..00000000 --- a/man/probe::ipmib.InAddrErrors.3stap.html +++ /dev/null @@ -1,74 +0,0 @@ - -Manpage of PROBE::IPMIB\&.INADD - -

PROBE::IPMIB\&.INADD

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::ipmib.InAddrErrors - Count arriving packets with an incorrect address -  -

SYNOPSIS

- -

-

-ipmib.InAddrErrors 
-
- -  -

VALUES

- -

- -skb -

-pointer to the struct sk_buff being acted on -
- -

- -op -

-value to be added to the counter (default value of 1) -
- -  -

DESCRIPTION

- -

- -The packet pointed to by -skb -is filtered by the function -ipmib_filter_key. If the packet passes the filter is is counted in the global -InAddrErrors -(equivalent to SNMP's MIB IPSTATS_MIB_INADDRERRORS) -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::ipmib.InDiscards.3stap.html b/man/probe::ipmib.InDiscards.3stap.html deleted file mode 100644 index 41d103fa..00000000 --- a/man/probe::ipmib.InDiscards.3stap.html +++ /dev/null @@ -1,74 +0,0 @@ - -Manpage of PROBE::IPMIB\&.INDIS - -

PROBE::IPMIB\&.INDIS

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::ipmib.InDiscards - Count discarded inbound packets -  -

SYNOPSIS

- -

-

-ipmib.InDiscards 
-
- -  -

VALUES

- -

- -skb -

-pointer to the struct sk_buff being acted on -
- -

- -op -

-value to be added to the counter (default value of 1) -
- -  -

DESCRIPTION

- -

- -The packet pointed to by -skb -is filtered by the function -ipmib_filter_key. If the packet passes the filter is is counted in the global -InDiscards -(equivalent to SNMP's MIB STATS_MIB_INDISCARDS) -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::ipmib.InNoRoutes.3stap.html b/man/probe::ipmib.InNoRoutes.3stap.html deleted file mode 100644 index 3de3f194..00000000 --- a/man/probe::ipmib.InNoRoutes.3stap.html +++ /dev/null @@ -1,74 +0,0 @@ - -Manpage of PROBE::IPMIB\&.INNOR - -

PROBE::IPMIB\&.INNOR

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::ipmib.InNoRoutes - Count an arriving packet with no matching socket -  -

SYNOPSIS

- -

-

-ipmib.InNoRoutes 
-
- -  -

VALUES

- -

- -skb -

-pointer to the struct sk_buff being acted on -
- -

- -op -

-value to be added to the counter (default value of 1) -
- -  -

DESCRIPTION

- -

- -The packet pointed to by -skb -is filtered by the function -ipmib_filter_key. If the packet passes the filter is is counted in the global -InNoRoutes -(equivalent to SNMP's MIB IPSTATS_MIB_INNOROUTES) -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::ipmib.InReceives.3stap.html b/man/probe::ipmib.InReceives.3stap.html deleted file mode 100644 index c912a0c5..00000000 --- a/man/probe::ipmib.InReceives.3stap.html +++ /dev/null @@ -1,74 +0,0 @@ - -Manpage of PROBE::IPMIB\&.INREC - -

PROBE::IPMIB\&.INREC

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::ipmib.InReceives - Count an arriving packet -  -

SYNOPSIS

- -

-

-ipmib.InReceives 
-
- -  -

VALUES

- -

- -skb -

-pointer to the struct sk_buff being acted on -
- -

- -op -

-value to be added to the counter (default value of 1) -
- -  -

DESCRIPTION

- -

- -The packet pointed to by -skb -is filtered by the function -ipmib_filter_key. If the packet passes the filter is is counted in the global -InReceives -(equivalent to SNMP's MIB IPSTATS_MIB_INRECEIVES) -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::ipmib.InUnknownProtos.3stap.html b/man/probe::ipmib.InUnknownProtos.3stap.html deleted file mode 100644 index 70754646..00000000 --- a/man/probe::ipmib.InUnknownProtos.3stap.html +++ /dev/null @@ -1,74 +0,0 @@ - -Manpage of PROBE::IPMIB\&.INUNK - -

PROBE::IPMIB\&.INUNK

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::ipmib.InUnknownProtos - Count arriving packets with an unbound proto -  -

SYNOPSIS

- -

-

-ipmib.InUnknownProtos 
-
- -  -

VALUES

- -

- -skb -

-pointer to the struct sk_buff being acted on -
- -

- -op -

-value to be added to the counter (default value of 1) -
- -  -

DESCRIPTION

- -

- -The packet pointed to by -skb -is filtered by the function -ipmib_filter_key. If the packet passes the filter is is counted in the global -InUnknownProtos -(equivalent to SNMP's MIB IPSTATS_MIB_INUNKNOWNPROTOS) -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::ipmib.OutRequests.3stap.html b/man/probe::ipmib.OutRequests.3stap.html deleted file mode 100644 index a505ad90..00000000 --- a/man/probe::ipmib.OutRequests.3stap.html +++ /dev/null @@ -1,74 +0,0 @@ - -Manpage of PROBE::IPMIB\&.OUTRE - -

PROBE::IPMIB\&.OUTRE

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::ipmib.OutRequests - Count a request to send a packet -  -

SYNOPSIS

- -

-

-ipmib.OutRequests 
-
- -  -

VALUES

- -

- -skb -

-pointer to the struct sk_buff being acted on -
- -

- -op -

-value to be added to the counter (default value of 1) -
- -  -

DESCRIPTION

- -

- -The packet pointed to by -skb -is filtered by the function -ipmib_filter_key. If the packet passes the filter is is counted in the global -OutRequests -(equivalent to SNMP's MIB IPSTATS_MIB_OUTREQUESTS) -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::ipmib.ReasmReqds.3stap.html b/man/probe::ipmib.ReasmReqds.3stap.html deleted file mode 100644 index fb406f13..00000000 --- a/man/probe::ipmib.ReasmReqds.3stap.html +++ /dev/null @@ -1,74 +0,0 @@ - -Manpage of PROBE::IPMIB\&.REASM - -

PROBE::IPMIB\&.REASM

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::ipmib.ReasmReqds - Count number of packet fragments reassembly requests -  -

SYNOPSIS

- -

-

-ipmib.ReasmReqds 
-
- -  -

VALUES

- -

- -skb -

-pointer to the struct sk_buff being acted on -
- -

- -op -

-value to be added to the counter (default value of 1) -
- -  -

DESCRIPTION

- -

- -The packet pointed to by -skb -is filtered by the function -ipmib_filter_key. If the packet passes the filter is is counted in the global -ReasmReqds -(equivalent to SNMP's MIB IPSTATS_MIB_REASMREQDS) -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::ipmib.ReasmTimeout.3stap.html b/man/probe::ipmib.ReasmTimeout.3stap.html deleted file mode 100644 index 5cd5fb32..00000000 --- a/man/probe::ipmib.ReasmTimeout.3stap.html +++ /dev/null @@ -1,74 +0,0 @@ - -Manpage of PROBE::IPMIB\&.REASM - -

PROBE::IPMIB\&.REASM

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::ipmib.ReasmTimeout - Count Reassembly Timeouts -  -

SYNOPSIS

- -

-

-ipmib.ReasmTimeout 
-
- -  -

VALUES

- -

- -skb -

-pointer to the struct sk_buff being acted on -
- -

- -op -

-value to be added to the counter (default value of 1) -
- -  -

DESCRIPTION

- -

- -The packet pointed to by -skb -is filtered by the function -ipmib_filter_key. If the packet passes the filter is is counted in the global -ReasmTimeout -(equivalent to SNMP's MIB IPSTATS_MIB_REASMTIMEOUT) -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::irq_handler.entry.3stap.html b/man/probe::irq_handler.entry.3stap.html deleted file mode 100644 index 0b2c4b00..00000000 --- a/man/probe::irq_handler.entry.3stap.html +++ /dev/null @@ -1,132 +0,0 @@ - -Manpage of PROBE::IRQ_HANDLER\& - -

PROBE::IRQ_HANDLER\&

-Section: Interrupt Request (IRQ) Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::irq_handler.entry - Execution of interrupt handler starting -  -

SYNOPSIS

- -

-

-irq_handler.entry 
-
- -  -

VALUES

- -

- -dev_name -

-name of device -
- -

- -flags -

-Flags for IRQ handler -
- -

- -dev_id -

-Cookie to identify device -
- -

- -dir -

-pointer to the proc/irq/NN/name entry -
- -

- -irq -

-irq number -
- -

- -next_irqaction -

-pointer to next irqaction for shared interrupts -
- -

- -thread_flags -

-Flags related to thread -
- -

- -thread -

-thread pointer for threaded interrupts -
- -

- -thread_fn -

-interrupt handler function for threaded interrupts -
- -

- -handler -

-interrupt handler function -
- -

- -flags_str -

-symbolic string representation of IRQ flags -
- -

- -action -

-struct irqaction* for this interrupt num -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::irq_handler.exit.3stap.html b/man/probe::irq_handler.exit.3stap.html deleted file mode 100644 index a63d803e..00000000 --- a/man/probe::irq_handler.exit.3stap.html +++ /dev/null @@ -1,139 +0,0 @@ - -Manpage of PROBE::IRQ_HANDLER\& - -

PROBE::IRQ_HANDLER\&

-Section: Interrupt Request (IRQ) Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::irq_handler.exit - Execution of interrupt handler completed -  -

SYNOPSIS

- -

-

-irq_handler.exit 
-
- -  -

VALUES

- -

- -dev_name -

-name of device -
- -

- -ret -

-return value of the handler -
- -

- -flags -

-flags for IRQ handler -
- -

- -dev_id -

-Cookie to identify device -
- -

- -dir -

-pointer to the proc/irq/NN/name entry -
- -

- -next_irqaction -

-pointer to next irqaction for shared interrupts -
- -

- -irq -

-interrupt number -
- -

- -thread_flags -

-Flags related to thread -
- -

- -thread -

-thread pointer for threaded interrupts -
- -

- -thread_fn -

-interrupt handler function for threaded interrupts -
- -

- -flags_str -

-symbolic string representation of IRQ flags -
- -

- -handler -

-interrupt handler function that was executed -
- -

- -action -

-struct irqaction* -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::kprocess.create.3stap.html b/man/probe::kprocess.create.3stap.html deleted file mode 100644 index bc4734ce..00000000 --- a/man/probe::kprocess.create.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of PROBE::KPROCESS\&.CR - -

PROBE::KPROCESS\&.CR

-Section: Kernel Process Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::kprocess.create - Fires whenever a new process or thread is successfully created -  -

SYNOPSIS

- -

-

-kprocess.create 
-
- -  -

VALUES

- -

- -new_tid -

-The TID of the newly created task -
- -

- -new_pid -

-The PID of the newly created process -
- -  -

CONTEXT

- -

- -Parent of the created process. -  -

DESCRIPTION

- -

- -Fires whenever a new process is successfully created, either as a result of fork (or one of its syscall variants), or a new kernel thread. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::kprocess.exec.3stap.html b/man/probe::kprocess.exec.3stap.html deleted file mode 100644 index 0c36ebd0..00000000 --- a/man/probe::kprocess.exec.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of PROBE::KPROCESS\&.EX - -

PROBE::KPROCESS\&.EX

-Section: Kernel Process Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::kprocess.exec - Attempt to exec to a new program -  -

SYNOPSIS

- -

-

-kprocess.exec 
-
- -  -

VALUES

- -

- -filename -

-The path to the new executable -
- -  -

CONTEXT

- -

- -The caller of exec. -  -

DESCRIPTION

- -

- -Fires whenever a process attempts to exec to a new program. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::kprocess.exec_complete.3stap.html b/man/probe::kprocess.exec_complete.3stap.html deleted file mode 100644 index e0f81b22..00000000 --- a/man/probe::kprocess.exec_complete.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of PROBE::KPROCESS\&.EX - -

PROBE::KPROCESS\&.EX

-Section: Kernel Process Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::kprocess.exec_complete - Return from exec to a new program -  -

SYNOPSIS

- -

-

-kprocess.exec_complete 
-
- -  -

VALUES

- -

- -success -

-A boolean indicating whether the exec was successful -
- -

- -errno -

-The error number resulting from the exec -
- -  -

CONTEXT

- -

- -On success, the context of the new executable. On failure, remains in the context of the caller. -  -

DESCRIPTION

- -

- -Fires at the completion of an exec call. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::kprocess.exit.3stap.html b/man/probe::kprocess.exit.3stap.html deleted file mode 100644 index 10c8c97e..00000000 --- a/man/probe::kprocess.exit.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of PROBE::KPROCESS\&.EX - -

PROBE::KPROCESS\&.EX

-Section: Kernel Process Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::kprocess.exit - Exit from process -  -

SYNOPSIS

- -

-

-kprocess.exit 
-
- -  -

VALUES

- -

- -code -

-The exit code of the process -
- -  -

CONTEXT

- -

- -The process which is terminating. -  -

DESCRIPTION

- -

- -Fires when a process terminates. This will always be followed by a kprocess.release, though the latter may be delayed if the process waits in a zombie state. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::kprocess.release.3stap.html b/man/probe::kprocess.release.3stap.html deleted file mode 100644 index 12eef876..00000000 --- a/man/probe::kprocess.release.3stap.html +++ /dev/null @@ -1,92 +0,0 @@ - -Manpage of PROBE::KPROCESS\&.RE - -

PROBE::KPROCESS\&.RE

-Section: Kernel Process Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::kprocess.release - Process released -  -

SYNOPSIS

- -

-

-kprocess.release 
-
- -  -

VALUES

- -

- -pid -

-Same as -released_pid -for compatibility (deprecated) -
- -

- -released_pid -

-PID of the process being released -
- -

- -released_tid -

-TID of the task being released -
- -

- -task -

-A task handle to the process being released -
- -  -

CONTEXT

- -

- -The context of the parent, if it wanted notification of this process' termination, else the context of the process itself. -  -

DESCRIPTION

- -

- -Fires when a process is released from the kernel. This always follows a kprocess.exit, though it may be delayed somewhat if the process waits in a zombie state. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::kprocess.start.3stap.html b/man/probe::kprocess.start.3stap.html deleted file mode 100644 index 8de8e773..00000000 --- a/man/probe::kprocess.start.3stap.html +++ /dev/null @@ -1,65 +0,0 @@ - -Manpage of PROBE::KPROCESS\&.ST - -

PROBE::KPROCESS\&.ST

-Section: Kernel Process Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::kprocess.start - Starting new process -  -

SYNOPSIS

- -

-

-kprocess.start 
-
- -  -

VALUES

- -

- -None -  -

CONTEXT

- -

- -Newly created process. -  -

DESCRIPTION

- -

- -Fires immediately before a new process begins execution. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::linuxmib.DelayedACKs.3stap.html b/man/probe::linuxmib.DelayedACKs.3stap.html deleted file mode 100644 index 49d8799c..00000000 --- a/man/probe::linuxmib.DelayedACKs.3stap.html +++ /dev/null @@ -1,74 +0,0 @@ - -Manpage of PROBE::LINUXMIB\&.DE - -

PROBE::LINUXMIB\&.DE

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::linuxmib.DelayedACKs - Count of delayed acks -  -

SYNOPSIS

- -

-

-linuxmib.DelayedACKs 
-
- -  -

VALUES

- -

- -sk -

-Pointer to the struct sock being acted on -
- -

- -op -

-Value to be added to the counter (default value of 1) -
- -  -

DESCRIPTION

- -

- -The packet pointed to by -skb -is filtered by the function -linuxmib_filter_key. If the packet passes the filter is is counted in the global -DelayedACKs -(equivalent to SNMP's MIB LINUX_MIB_DELAYEDACKS) -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::linuxmib.ListenDrops.3stap.html b/man/probe::linuxmib.ListenDrops.3stap.html deleted file mode 100644 index 14ea83a8..00000000 --- a/man/probe::linuxmib.ListenDrops.3stap.html +++ /dev/null @@ -1,74 +0,0 @@ - -Manpage of PROBE::LINUXMIB\&.LI - -

PROBE::LINUXMIB\&.LI

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::linuxmib.ListenDrops - Count of times conn request that were dropped -  -

SYNOPSIS

- -

-

-linuxmib.ListenDrops 
-
- -  -

VALUES

- -

- -sk -

-Pointer to the struct sock being acted on -
- -

- -op -

-Value to be added to the counter (default value of 1) -
- -  -

DESCRIPTION

- -

- -The packet pointed to by -skb -is filtered by the function -linuxmib_filter_key. If the packet passes the filter is is counted in the global -ListenDrops -(equivalent to SNMP's MIB LINUX_MIB_LISTENDROPS) -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::linuxmib.ListenOverflows.3stap.html b/man/probe::linuxmib.ListenOverflows.3stap.html deleted file mode 100644 index 996e2a6f..00000000 --- a/man/probe::linuxmib.ListenOverflows.3stap.html +++ /dev/null @@ -1,74 +0,0 @@ - -Manpage of PROBE::LINUXMIB\&.LI - -

PROBE::LINUXMIB\&.LI

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::linuxmib.ListenOverflows - Count of times a listen queue overflowed -  -

SYNOPSIS

- -

-

-linuxmib.ListenOverflows 
-
- -  -

VALUES

- -

- -sk -

-Pointer to the struct sock being acted on -
- -

- -op -

-Value to be added to the counter (default value of 1) -
- -  -

DESCRIPTION

- -

- -The packet pointed to by -skb -is filtered by the function -linuxmib_filter_key. If the packet passes the filter is is counted in the global -ListenOverflows -(equivalent to SNMP's MIB LINUX_MIB_LISTENOVERFLOWS) -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:17 GMT, March 20, 2013 - - diff --git a/man/probe::linuxmib.TCPMemoryPressures.3stap.html b/man/probe::linuxmib.TCPMemoryPressures.3stap.html deleted file mode 100644 index 0651bde6..00000000 --- a/man/probe::linuxmib.TCPMemoryPressures.3stap.html +++ /dev/null @@ -1,74 +0,0 @@ - -Manpage of PROBE::LINUXMIB\&.TC - -

PROBE::LINUXMIB\&.TC

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::linuxmib.TCPMemoryPressures - Count of times memory pressure was used -  -

SYNOPSIS

- -

-

-linuxmib.TCPMemoryPressures 
-
- -  -

VALUES

- -

- -sk -

-Pointer to the struct sock being acted on -
- -

- -op -

-Value to be added to the counter (default value of 1) -
- -  -

DESCRIPTION

- -

- -The packet pointed to by -skb -is filtered by the function -linuxmib_filter_key. If the packet passes the filter is is counted in the global -TCPMemoryPressures -(equivalent to SNMP's MIB LINUX_MIB_TCPMEMORYPRESSURES) -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::netdev.change_mac.3stap.html b/man/probe::netdev.change_mac.3stap.html deleted file mode 100644 index 9f76b581..00000000 --- a/man/probe::netdev.change_mac.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of PROBE::NETDEV\&.CHAN - -

PROBE::NETDEV\&.CHAN

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::netdev.change_mac - Called when the netdev_name has the MAC changed -  -

SYNOPSIS

- -

-

-netdev.change_mac 
-
- -  -

VALUES

- -

- -dev_name -

-The device that will have the MAC changed -
- -

- -new_mac -

-The new MAC address -
- -

- -mac_len -

-The MAC length -
- -

- -old_mac -

-The current MAC address -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::netdev.change_mtu.3stap.html b/man/probe::netdev.change_mtu.3stap.html deleted file mode 100644 index f726cacb..00000000 --- a/man/probe::netdev.change_mtu.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of PROBE::NETDEV\&.CHAN - -

PROBE::NETDEV\&.CHAN

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::netdev.change_mtu - Called when the netdev MTU is changed -  -

SYNOPSIS

- -

-

-netdev.change_mtu 
-
- -  -

VALUES

- -

- -dev_name -

-The device that will have the MTU changed -
- -

- -new_mtu -

-The new MTU -
- -

- -old_mtu -

-The current MTU -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::netdev.change_rx_flag.3stap.html b/man/probe::netdev.change_rx_flag.3stap.html deleted file mode 100644 index 444d7132..00000000 --- a/man/probe::netdev.change_rx_flag.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of PROBE::NETDEV\&.CHAN - -

PROBE::NETDEV\&.CHAN

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::netdev.change_rx_flag - Called when the device RX flag will be changed -  -

SYNOPSIS

- -

-

-netdev.change_rx_flag 
-
- -  -

VALUES

- -

- -dev_name -

-The device that will be changed -
- -

- -flags -

-The new flags -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::netdev.close.3stap.html b/man/probe::netdev.close.3stap.html deleted file mode 100644 index b144f1a0..00000000 --- a/man/probe::netdev.close.3stap.html +++ /dev/null @@ -1,55 +0,0 @@ - -Manpage of PROBE::NETDEV\&.CLOS - -

PROBE::NETDEV\&.CLOS

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::netdev.close - Called when the device is closed -  -

SYNOPSIS

- -

-

-netdev.close 
-
- -  -

VALUES

- -

- -dev_name -

-The device that is going to be closed -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::netdev.get_stats.3stap.html b/man/probe::netdev.get_stats.3stap.html deleted file mode 100644 index cbf83c29..00000000 --- a/man/probe::netdev.get_stats.3stap.html +++ /dev/null @@ -1,55 +0,0 @@ - -Manpage of PROBE::NETDEV\&.GET_ - -

PROBE::NETDEV\&.GET_

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::netdev.get_stats - Called when someone asks the device statistics -  -

SYNOPSIS

- -

-

-netdev.get_stats 
-
- -  -

VALUES

- -

- -dev_name -

-The device that is going to provide the statistics -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::netdev.hard_transmit.3stap.html b/man/probe::netdev.hard_transmit.3stap.html deleted file mode 100644 index 618faa56..00000000 --- a/man/probe::netdev.hard_transmit.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of PROBE::NETDEV\&.HARD - -

PROBE::NETDEV\&.HARD

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::netdev.hard_transmit - Called when the devices is going to TX (hard) -  -

SYNOPSIS

- -

-

-netdev.hard_transmit 
-
- -  -

VALUES

- -

- -protocol -

-The protocol used in the transmission -
- -

- -dev_name -

-The device scheduled to transmit -
- -

- -length -

-The length of the transmit buffer. -
- -

- -truesize -

-The size of the data to be transmitted. -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::netdev.ioctl.3stap.html b/man/probe::netdev.ioctl.3stap.html deleted file mode 100644 index 6befd6c8..00000000 --- a/man/probe::netdev.ioctl.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of PROBE::NETDEV\&.IOCT - -

PROBE::NETDEV\&.IOCT

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::netdev.ioctl - Called when the device suffers an IOCTL -  -

SYNOPSIS

- -

-

-netdev.ioctl 
-
- -  -

VALUES

- -

- -cmd -

-The IOCTL request -
- -

- -arg -

-The IOCTL argument (usually the netdev interface) -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::netdev.open.3stap.html b/man/probe::netdev.open.3stap.html deleted file mode 100644 index 10ed0c74..00000000 --- a/man/probe::netdev.open.3stap.html +++ /dev/null @@ -1,55 +0,0 @@ - -Manpage of PROBE::NETDEV\&.OPEN - -

PROBE::NETDEV\&.OPEN

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::netdev.open - Called when the device is opened -  -

SYNOPSIS

- -

-

-netdev.open 
-
- -  -

VALUES

- -

- -dev_name -

-The device that is going to be opened -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::netdev.receive.3stap.html b/man/probe::netdev.receive.3stap.html deleted file mode 100644 index 900de113..00000000 --- a/man/probe::netdev.receive.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of PROBE::NETDEV\&.RECE - -

PROBE::NETDEV\&.RECE

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::netdev.receive - Data received from network device. -  -

SYNOPSIS

- -

-

-netdev.receive 
-
- -  -

VALUES

- -

- -protocol -

-Protocol of received packet. -
- -

- -dev_name -

-The name of the device. e.g: eth0, ath1. -
- -

- -length -

-The length of the receiving buffer. -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::netdev.register.3stap.html b/man/probe::netdev.register.3stap.html deleted file mode 100644 index 5e2836c8..00000000 --- a/man/probe::netdev.register.3stap.html +++ /dev/null @@ -1,55 +0,0 @@ - -Manpage of PROBE::NETDEV\&.REGI - -

PROBE::NETDEV\&.REGI

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::netdev.register - Called when the device is registered -  -

SYNOPSIS

- -

-

-netdev.register 
-
- -  -

VALUES

- -

- -dev_name -

-The device that is going to be registered -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::netdev.rx.3stap.html b/man/probe::netdev.rx.3stap.html deleted file mode 100644 index 011cdbc3..00000000 --- a/man/probe::netdev.rx.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of PROBE::NETDEV\&.RX - -

PROBE::NETDEV\&.RX

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::netdev.rx - Called when the device is going to receive a packet -  -

SYNOPSIS

- -

-

-netdev.rx 
-
- -  -

VALUES

- -

- -protocol -

-The packet protocol -
- -

- -dev_name -

-The device received the packet -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::netdev.set_promiscuity.3stap.html b/man/probe::netdev.set_promiscuity.3stap.html deleted file mode 100644 index e6852f09..00000000 --- a/man/probe::netdev.set_promiscuity.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of PROBE::NETDEV\&.SET_ - -

PROBE::NETDEV\&.SET_

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::netdev.set_promiscuity - Called when the device enters/leaves promiscuity -  -

SYNOPSIS

- -

-

-netdev.set_promiscuity 
-
- -  -

VALUES

- -

- -dev_name -

-The device that is entering/leaving promiscuity mode -
- -

- -enable -

-If the device is entering promiscuity mode -
- -

- -inc -

-Count the number of promiscuity openers -
- -

- -disable -

-If the device is leaving promiscuity mode -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::netdev.transmit.3stap.html b/man/probe::netdev.transmit.3stap.html deleted file mode 100644 index 715c12c5..00000000 --- a/man/probe::netdev.transmit.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of PROBE::NETDEV\&.TRAN - -

PROBE::NETDEV\&.TRAN

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::netdev.transmit - Network device transmitting buffer -  -

SYNOPSIS

- -

-

-netdev.transmit 
-
- -  -

VALUES

- -

- -protocol -

-The protocol of this packet(defined in include/linux/if_ether.h). -
- -

- -dev_name -

-The name of the device. e.g: eth0, ath1. -
- -

- -length -

-The length of the transmit buffer. -
- -

- -truesize -

-The size of the data to be transmitted. -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::netdev.unregister.3stap.html b/man/probe::netdev.unregister.3stap.html deleted file mode 100644 index 8a68fb3b..00000000 --- a/man/probe::netdev.unregister.3stap.html +++ /dev/null @@ -1,55 +0,0 @@ - -Manpage of PROBE::NETDEV\&.UNRE - -

PROBE::NETDEV\&.UNRE

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::netdev.unregister - Called when the device is being unregistered -  -

SYNOPSIS

- -

-

-netdev.unregister 
-
- -  -

VALUES

- -

- -dev_name -

-The device that is going to be unregistered -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::netfilter.arp.forward.3stap.html b/man/probe::netfilter.arp.forward.3stap.html deleted file mode 100644 index 07eef2d2..00000000 --- a/man/probe::netfilter.arp.forward.3stap.html +++ /dev/null @@ -1,210 +0,0 @@ - -Manpage of PROBE::NETFILTER\&.A - -

PROBE::NETFILTER\&.A

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::netfilter.arp.forward - - Called for each ARP packet to be forwarded -  -

SYNOPSIS

- -

-

-netfilter.arp.forward 
-
- -  -

VALUES

- -

- -indev -

-Address of net_device representing input device, 0 if unknown -
- -

- -nf_accept -

-Constant used to signify an 'accept' verdict -
- -

- -ar_sha -

-Ethernet+IP only (ar_pro==0x800): source hardware (MAC) address -
- -

- -pf -

-Protocol family -- always -lqarprq -
- -

- -ar_sip -

-Ethernet+IP only (ar_pro==0x800): source IP address -
- -

- -nf_queue -

-Constant used to signify a 'queue' verdict -
- -

- -ar_op -

-ARP opcode (command) -
- -

- -nf_stolen -

-Constant used to signify a 'stolen' verdict -
- -

- -outdev_name -

-Name of network device packet will be routed to (if known) -
- -

- -nf_drop -

-Constant used to signify a 'drop' verdict -
- -

- -ar_hln -

-Length of hardware address -
- -

- -ar_pro -

-Format of protocol address -
- -

- -ar_pln -

-Length of protocol address -
- -

- -ar_tip -

-Ethernet+IP only (ar_pro==0x800): target IP address -
- -

- -nf_stop -

-Constant used to signify a 'stop' verdict -
- -

- -arphdr -

-Address of ARP header -
- -

- -length -

-The length of the packet buffer contents, in bytes -
- -

- -outdev -

-Address of net_device representing output device, 0 if unknown -
- -

- -ar_tha -

-Ethernet+IP only (ar_pro==0x800): target hardware (MAC) address -
- -

- -ar_data -

-Address of ARP packet data region (after the header) -
- -

- -nf_repeat -

-Constant used to signify a 'repeat' verdict -
- -

- -indev_name -

-Name of network device packet was received on (if known) -
- -

- -ar_hrd -

-Format of hardware address -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::netfilter.arp.in.3stap.html b/man/probe::netfilter.arp.in.3stap.html deleted file mode 100644 index 48b9e3a4..00000000 --- a/man/probe::netfilter.arp.in.3stap.html +++ /dev/null @@ -1,210 +0,0 @@ - -Manpage of PROBE::NETFILTER\&.A - -

PROBE::NETFILTER\&.A

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::netfilter.arp.in - - Called for each incoming ARP packet -  -

SYNOPSIS

- -

-

-netfilter.arp.in 
-
- -  -

VALUES

- -

- -indev -

-Address of net_device representing input device, 0 if unknown -
- -

- -nf_accept -

-Constant used to signify an 'accept' verdict -
- -

- -ar_sha -

-Ethernet+IP only (ar_pro==0x800): source hardware (MAC) address -
- -

- -pf -

-Protocol family -- always -lqarprq -
- -

- -ar_sip -

-Ethernet+IP only (ar_pro==0x800): source IP address -
- -

- -nf_queue -

-Constant used to signify a 'queue' verdict -
- -

- -ar_op -

-ARP opcode (command) -
- -

- -nf_stolen -

-Constant used to signify a 'stolen' verdict -
- -

- -outdev_name -

-Name of network device packet will be routed to (if known) -
- -

- -nf_drop -

-Constant used to signify a 'drop' verdict -
- -

- -ar_hln -

-Length of hardware address -
- -

- -ar_pro -

-Format of protocol address -
- -

- -ar_pln -

-Length of protocol address -
- -

- -ar_tip -

-Ethernet+IP only (ar_pro==0x800): target IP address -
- -

- -nf_stop -

-Constant used to signify a 'stop' verdict -
- -

- -arphdr -

-Address of ARP header -
- -

- -length -

-The length of the packet buffer contents, in bytes -
- -

- -outdev -

-Address of net_device representing output device, 0 if unknown -
- -

- -ar_tha -

-Ethernet+IP only (ar_pro==0x800): target hardware (MAC) address -
- -

- -ar_data -

-Address of ARP packet data region (after the header) -
- -

- -nf_repeat -

-Constant used to signify a 'repeat' verdict -
- -

- -indev_name -

-Name of network device packet was received on (if known) -
- -

- -ar_hrd -

-Format of hardware address -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::netfilter.arp.out.3stap.html b/man/probe::netfilter.arp.out.3stap.html deleted file mode 100644 index 89a399ac..00000000 --- a/man/probe::netfilter.arp.out.3stap.html +++ /dev/null @@ -1,210 +0,0 @@ - -Manpage of PROBE::NETFILTER\&.A - -

PROBE::NETFILTER\&.A

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::netfilter.arp.out - - Called for each outgoing ARP packet -  -

SYNOPSIS

- -

-

-netfilter.arp.out 
-
- -  -

VALUES

- -

- -indev -

-Address of net_device representing input device, 0 if unknown -
- -

- -nf_accept -

-Constant used to signify an 'accept' verdict -
- -

- -ar_sha -

-Ethernet+IP only (ar_pro==0x800): source hardware (MAC) address -
- -

- -pf -

-Protocol family -- always -lqarprq -
- -

- -ar_sip -

-Ethernet+IP only (ar_pro==0x800): source IP address -
- -

- -nf_queue -

-Constant used to signify a 'queue' verdict -
- -

- -ar_op -

-ARP opcode (command) -
- -

- -nf_stolen -

-Constant used to signify a 'stolen' verdict -
- -

- -outdev_name -

-Name of network device packet will be routed to (if known) -
- -

- -nf_drop -

-Constant used to signify a 'drop' verdict -
- -

- -ar_hln -

-Length of hardware address -
- -

- -ar_pro -

-Format of protocol address -
- -

- -ar_pln -

-Length of protocol address -
- -

- -ar_tip -

-Ethernet+IP only (ar_pro==0x800): target IP address -
- -

- -nf_stop -

-Constant used to signify a 'stop' verdict -
- -

- -arphdr -

-Address of ARP header -
- -

- -length -

-The length of the packet buffer contents, in bytes -
- -

- -outdev -

-Address of net_device representing output device, 0 if unknown -
- -

- -ar_tha -

-Ethernet+IP only (ar_pro==0x800): target hardware (MAC) address -
- -

- -ar_data -

-Address of ARP packet data region (after the header) -
- -

- -nf_repeat -

-Constant used to signify a 'repeat' verdict -
- -

- -indev_name -

-Name of network device packet was received on (if known) -
- -

- -ar_hrd -

-Format of hardware address -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::netfilter.bridge.forward.3stap.html b/man/probe::netfilter.bridge.forward.3stap.html deleted file mode 100644 index e69e6890..00000000 --- a/man/probe::netfilter.bridge.forward.3stap.html +++ /dev/null @@ -1,133 +0,0 @@ - -Manpage of PROBE::NETFILTER\&.B - -

PROBE::NETFILTER\&.B

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::netfilter.bridge.forward - Called on an incoming bridging packet destined for some other computer -  -

SYNOPSIS

- -

-

-netfilter.bridge.forward 
-
- -  -

VALUES

- -

- -indev -

-Address of net_device representing input device, 0 if unknown -
- -

- -nf_accept -

-Constant used to signify an 'accept' verdict -
- -

- -pf -

-Protocol family -- always -lqbridgerq -
- -

- -nf_queue -

-Constant used to signify a 'queue' verdict -
- -

- -nf_stolen -

-Constant used to signify a 'stolen' verdict -
- -

- -outdev_name -

-Name of network device packet will be routed to (if known) -
- -

- -nf_drop -

-Constant used to signify a 'drop' verdict -
- -

- -nf_stop -

-Constant used to signify a 'stop' verdict -
- -

- -length -

-The length of the packet buffer contents, in bytes -
- -

- -outdev -

-Address of net_device representing output device, 0 if unknown -
- -

- -nf_repeat -

-Constant used to signify a 'repeat' verdict -
- -

- -indev_name -

-Name of network device packet was received on (if known) -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::netfilter.bridge.local_in.3stap.html b/man/probe::netfilter.bridge.local_in.3stap.html deleted file mode 100644 index 56a721ed..00000000 --- a/man/probe::netfilter.bridge.local_in.3stap.html +++ /dev/null @@ -1,133 +0,0 @@ - -Manpage of PROBE::NETFILTER\&.B - -

PROBE::NETFILTER\&.B

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::netfilter.bridge.local_in - Called on a bridging packet destined for the local computer -  -

SYNOPSIS

- -

-

-netfilter.bridge.local_in 
-
- -  -

VALUES

- -

- -indev -

-Address of net_device representing input device, 0 if unknown -
- -

- -nf_accept -

-Constant used to signify an 'accept' verdict -
- -

- -pf -

-Protocol family -- always -lqbridgerq -
- -

- -nf_queue -

-Constant used to signify a 'queue' verdict -
- -

- -nf_stolen -

-Constant used to signify a 'stolen' verdict -
- -

- -outdev_name -

-Name of network device packet will be routed to (if known) -
- -

- -nf_drop -

-Constant used to signify a 'drop' verdict -
- -

- -nf_stop -

-Constant used to signify a 'stop' verdict -
- -

- -length -

-The length of the packet buffer contents, in bytes -
- -

- -outdev -

-Address of net_device representing output device, 0 if unknown -
- -

- -nf_repeat -

-Constant used to signify a 'repeat' verdict -
- -

- -indev_name -

-Name of network device packet was received on (if known) -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::netfilter.bridge.local_out.3stap.html b/man/probe::netfilter.bridge.local_out.3stap.html deleted file mode 100644 index 75a95b0e..00000000 --- a/man/probe::netfilter.bridge.local_out.3stap.html +++ /dev/null @@ -1,133 +0,0 @@ - -Manpage of PROBE::NETFILTER\&.B - -

PROBE::NETFILTER\&.B

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::netfilter.bridge.local_out - Called on a bridging packet coming from a local process -  -

SYNOPSIS

- -

-

-netfilter.bridge.local_out 
-
- -  -

VALUES

- -

- -indev -

-Address of net_device representing input device, 0 if unknown -
- -

- -nf_accept -

-Constant used to signify an 'accept' verdict -
- -

- -pf -

-Protocol family -- always -lqbridgerq -
- -

- -nf_queue -

-Constant used to signify a 'queue' verdict -
- -

- -nf_stolen -

-Constant used to signify a 'stolen' verdict -
- -

- -outdev_name -

-Name of network device packet will be routed to (if known) -
- -

- -nf_drop -

-Constant used to signify a 'drop' verdict -
- -

- -nf_stop -

-Constant used to signify a 'stop' verdict -
- -

- -length -

-The length of the packet buffer contents, in bytes -
- -

- -outdev -

-Address of net_device representing output device, 0 if unknown -
- -

- -nf_repeat -

-Constant used to signify a 'repeat' verdict -
- -

- -indev_name -

-Name of network device packet was received on (if known) -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::netfilter.bridge.post_routing.3stap.html b/man/probe::netfilter.bridge.post_routing.3stap.html deleted file mode 100644 index 3a67f1ab..00000000 --- a/man/probe::netfilter.bridge.post_routing.3stap.html +++ /dev/null @@ -1,133 +0,0 @@ - -Manpage of PROBE::NETFILTER\&.B - -

PROBE::NETFILTER\&.B

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::netfilter.bridge.post_routing - - Called before a bridging packet hits the wire -  -

SYNOPSIS

- -

-

-netfilter.bridge.post_routing 
-
- -  -

VALUES

- -

- -indev -

-Address of net_device representing input device, 0 if unknown -
- -

- -nf_accept -

-Constant used to signify an 'accept' verdict -
- -

- -pf -

-Protocol family -- always -lqbridgerq -
- -

- -nf_queue -

-Constant used to signify a 'queue' verdict -
- -

- -nf_stolen -

-Constant used to signify a 'stolen' verdict -
- -

- -outdev_name -

-Name of network device packet will be routed to (if known) -
- -

- -nf_drop -

-Constant used to signify a 'drop' verdict -
- -

- -nf_stop -

-Constant used to signify a 'stop' verdict -
- -

- -length -

-The length of the packet buffer contents, in bytes -
- -

- -outdev -

-Address of net_device representing output device, 0 if unknown -
- -

- -nf_repeat -

-Constant used to signify a 'repeat' verdict -
- -

- -indev_name -

-Name of network device packet was received on (if known) -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::netfilter.bridge.pre_routing.3stap.html b/man/probe::netfilter.bridge.pre_routing.3stap.html deleted file mode 100644 index a876177b..00000000 --- a/man/probe::netfilter.bridge.pre_routing.3stap.html +++ /dev/null @@ -1,133 +0,0 @@ - -Manpage of PROBE::NETFILTER\&.B - -

PROBE::NETFILTER\&.B

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::netfilter.bridge.pre_routing - - Called before a bridging packet is routed -  -

SYNOPSIS

- -

-

-netfilter.bridge.pre_routing 
-
- -  -

VALUES

- -

- -indev -

-Address of net_device representing input device, 0 if unknown -
- -

- -nf_accept -

-Constant used to signify an 'accept' verdict -
- -

- -pf -

-Protocol family -- always -lqbridgerq -
- -

- -nf_queue -

-Constant used to signify a 'queue' verdict -
- -

- -nf_stolen -

-Constant used to signify a 'stolen' verdict -
- -

- -outdev_name -

-Name of network device packet will be routed to (if known) -
- -

- -nf_drop -

-Constant used to signify a 'drop' verdict -
- -

- -nf_stop -

-Constant used to signify a 'stop' verdict -
- -

- -length -

-The length of the packet buffer contents, in bytes -
- -

- -outdev -

-Address of net_device representing output device, 0 if unknown -
- -

- -nf_repeat -

-Constant used to signify a 'repeat' verdict -
- -

- -indev_name -

-Name of network device packet was received on (if known) -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::netfilter.ip.forward.3stap.html b/man/probe::netfilter.ip.forward.3stap.html deleted file mode 100644 index d24f001c..00000000 --- a/man/probe::netfilter.ip.forward.3stap.html +++ /dev/null @@ -1,240 +0,0 @@ - -Manpage of PROBE::NETFILTER\&.I - -

PROBE::NETFILTER\&.I

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::netfilter.ip.forward - Called on an incoming IP packet addressed to some other computer -  -

SYNOPSIS

- -

-

-netfilter.ip.forward 
-
- -  -

VALUES

- -

- -urg -

-TCP URG flag (if protocol is TCP; ipv4 only) -
- -

- -protocol -

-Packet protocol from driver (ipv4 only) -
- -

- -indev -

-Address of net_device representing input device, 0 if unknown -
- -

- -nf_accept -

-Constant used to signify an 'accept' verdict -
- -

- -pf -

-Protocol family -- either -lqipv4rq -or -lqipv6rq -
- -

- -ipproto_tcp -

-Constant used to signify that the packet protocol is TCP -
- -

- -rst -

-TCP RST flag (if protocol is TCP; ipv4 only) -
- -

- -dport -

-TCP or UDP destination port (ipv4 only) -
- -

- -nf_queue -

-Constant used to signify a 'queue' verdict -
- -

- -nf_stolen -

-Constant used to signify a 'stolen' verdict -
- -

- -ipproto_udp -

-Constant used to signify that the packet protocol is UDP -
- -

- -outdev_name -

-Name of network device packet will be routed to (if known) -
- -

- -ack -

-TCP ACK flag (if protocol is TCP; ipv4 only) -
- -

- -fin -

-TCP FIN flag (if protocol is TCP; ipv4 only) -
- -

- -nf_drop -

-Constant used to signify a 'drop' verdict -
- -

- -psh -

-TCP PSH flag (if protocol is TCP; ipv4 only) -
- -

- -saddr -

-A string representing the source IP address -
- -

- -nf_stop -

-Constant used to signify a 'stop' verdict -
- -

- -length -

-The length of the packet buffer contents, in bytes -
- -

- -daddr -

-A string representing the destination IP address -
- -

- -outdev -

-Address of net_device representing output device, 0 if unknown -
- -

- -syn -

-TCP SYN flag (if protocol is TCP; ipv4 only) -
- -

- -sport -

-TCP or UDP source port (ipv4 only) -
- -

- -nf_repeat -

-Constant used to signify a 'repeat' verdict -
- -

- -indev_name -

-Name of network device packet was received on (if known) -
- -

- -family -

-IP address family -
- -

- -iphdr -

-Address of IP header -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::netfilter.ip.local_in.3stap.html b/man/probe::netfilter.ip.local_in.3stap.html deleted file mode 100644 index 8c37fe3a..00000000 --- a/man/probe::netfilter.ip.local_in.3stap.html +++ /dev/null @@ -1,240 +0,0 @@ - -Manpage of PROBE::NETFILTER\&.I - -

PROBE::NETFILTER\&.I

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::netfilter.ip.local_in - Called on an incoming IP packet addressed to the local computer -  -

SYNOPSIS

- -

-

-netfilter.ip.local_in 
-
- -  -

VALUES

- -

- -urg -

-TCP URG flag (if protocol is TCP; ipv4 only) -
- -

- -protocol -

-Packet protocol from driver (ipv4 only) -
- -

- -indev -

-Address of net_device representing input device, 0 if unknown -
- -

- -nf_accept -

-Constant used to signify an 'accept' verdict -
- -

- -pf -

-Protocol family -- either -lqipv4rq -or -lqipv6rq -
- -

- -ipproto_tcp -

-Constant used to signify that the packet protocol is TCP -
- -

- -rst -

-TCP RST flag (if protocol is TCP; ipv4 only) -
- -

- -dport -

-TCP or UDP destination port (ipv4 only) -
- -

- -nf_queue -

-Constant used to signify a 'queue' verdict -
- -

- -nf_stolen -

-Constant used to signify a 'stolen' verdict -
- -

- -ipproto_udp -

-Constant used to signify that the packet protocol is UDP -
- -

- -outdev_name -

-Name of network device packet will be routed to (if known) -
- -

- -ack -

-TCP ACK flag (if protocol is TCP; ipv4 only) -
- -

- -fin -

-TCP FIN flag (if protocol is TCP; ipv4 only) -
- -

- -nf_drop -

-Constant used to signify a 'drop' verdict -
- -

- -psh -

-TCP PSH flag (if protocol is TCP; ipv4 only) -
- -

- -saddr -

-A string representing the source IP address -
- -

- -nf_stop -

-Constant used to signify a 'stop' verdict -
- -

- -length -

-The length of the packet buffer contents, in bytes -
- -

- -daddr -

-A string representing the destination IP address -
- -

- -outdev -

-Address of net_device representing output device, 0 if unknown -
- -

- -syn -

-TCP SYN flag (if protocol is TCP; ipv4 only) -
- -

- -sport -

-TCP or UDP source port (ipv4 only) -
- -

- -nf_repeat -

-Constant used to signify a 'repeat' verdict -
- -

- -indev_name -

-Name of network device packet was received on (if known) -
- -

- -family -

-IP address family -
- -

- -iphdr -

-Address of IP header -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::netfilter.ip.local_out.3stap.html b/man/probe::netfilter.ip.local_out.3stap.html deleted file mode 100644 index ba375828..00000000 --- a/man/probe::netfilter.ip.local_out.3stap.html +++ /dev/null @@ -1,240 +0,0 @@ - -Manpage of PROBE::NETFILTER\&.I - -

PROBE::NETFILTER\&.I

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::netfilter.ip.local_out - Called on an outgoing IP packet -  -

SYNOPSIS

- -

-

-netfilter.ip.local_out 
-
- -  -

VALUES

- -

- -urg -

-TCP URG flag (if protocol is TCP; ipv4 only) -
- -

- -protocol -

-Packet protocol from driver (ipv4 only) -
- -

- -indev -

-Address of net_device representing input device, 0 if unknown -
- -

- -nf_accept -

-Constant used to signify an 'accept' verdict -
- -

- -pf -

-Protocol family -- either -lqipv4rq -or -lqipv6rq -
- -

- -ipproto_tcp -

-Constant used to signify that the packet protocol is TCP -
- -

- -rst -

-TCP RST flag (if protocol is TCP; ipv4 only) -
- -

- -dport -

-TCP or UDP destination port (ipv4 only) -
- -

- -nf_queue -

-Constant used to signify a 'queue' verdict -
- -

- -nf_stolen -

-Constant used to signify a 'stolen' verdict -
- -

- -ipproto_udp -

-Constant used to signify that the packet protocol is UDP -
- -

- -outdev_name -

-Name of network device packet will be routed to (if known) -
- -

- -ack -

-TCP ACK flag (if protocol is TCP; ipv4 only) -
- -

- -fin -

-TCP FIN flag (if protocol is TCP; ipv4 only) -
- -

- -nf_drop -

-Constant used to signify a 'drop' verdict -
- -

- -psh -

-TCP PSH flag (if protocol is TCP; ipv4 only) -
- -

- -saddr -

-A string representing the source IP address -
- -

- -nf_stop -

-Constant used to signify a 'stop' verdict -
- -

- -length -

-The length of the packet buffer contents, in bytes -
- -

- -daddr -

-A string representing the destination IP address -
- -

- -outdev -

-Address of net_device representing output device, 0 if unknown -
- -

- -syn -

-TCP SYN flag (if protocol is TCP; ipv4 only) -
- -

- -sport -

-TCP or UDP source port (ipv4 only) -
- -

- -nf_repeat -

-Constant used to signify a 'repeat' verdict -
- -

- -indev_name -

-Name of network device packet was received on (if known) -
- -

- -family -

-IP address family -
- -

- -iphdr -

-Address of IP header -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::netfilter.ip.post_routing.3stap.html b/man/probe::netfilter.ip.post_routing.3stap.html deleted file mode 100644 index 37b4eeb1..00000000 --- a/man/probe::netfilter.ip.post_routing.3stap.html +++ /dev/null @@ -1,240 +0,0 @@ - -Manpage of PROBE::NETFILTER\&.I - -

PROBE::NETFILTER\&.I

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::netfilter.ip.post_routing - Called immediately before an outgoing IP packet leaves the computer -  -

SYNOPSIS

- -

-

-netfilter.ip.post_routing 
-
- -  -

VALUES

- -

- -urg -

-TCP URG flag (if protocol is TCP; ipv4 only) -
- -

- -protocol -

-Packet protocol from driver (ipv4 only) -
- -

- -indev -

-Address of net_device representing input device, 0 if unknown -
- -

- -nf_accept -

-Constant used to signify an 'accept' verdict -
- -

- -pf -

-Protocol family -- either -lqipv4rq -or -lqipv6rq -
- -

- -ipproto_tcp -

-Constant used to signify that the packet protocol is TCP -
- -

- -rst -

-TCP RST flag (if protocol is TCP; ipv4 only) -
- -

- -dport -

-TCP or UDP destination port (ipv4 only) -
- -

- -nf_queue -

-Constant used to signify a 'queue' verdict -
- -

- -nf_stolen -

-Constant used to signify a 'stolen' verdict -
- -

- -ipproto_udp -

-Constant used to signify that the packet protocol is UDP -
- -

- -outdev_name -

-Name of network device packet will be routed to (if known) -
- -

- -ack -

-TCP ACK flag (if protocol is TCP; ipv4 only) -
- -

- -fin -

-TCP FIN flag (if protocol is TCP; ipv4 only) -
- -

- -nf_drop -

-Constant used to signify a 'drop' verdict -
- -

- -psh -

-TCP PSH flag (if protocol is TCP; ipv4 only) -
- -

- -saddr -

-A string representing the source IP address -
- -

- -nf_stop -

-Constant used to signify a 'stop' verdict -
- -

- -length -

-The length of the packet buffer contents, in bytes -
- -

- -daddr -

-A string representing the destination IP address -
- -

- -outdev -

-Address of net_device representing output device, 0 if unknown -
- -

- -syn -

-TCP SYN flag (if protocol is TCP; ipv4 only) -
- -

- -sport -

-TCP or UDP source port (ipv4 only) -
- -

- -nf_repeat -

-Constant used to signify a 'repeat' verdict -
- -

- -indev_name -

-Name of network device packet was received on (if known) -
- -

- -family -

-IP address family -
- -

- -iphdr -

-Address of IP header -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::netfilter.ip.pre_routing.3stap.html b/man/probe::netfilter.ip.pre_routing.3stap.html deleted file mode 100644 index d87741ac..00000000 --- a/man/probe::netfilter.ip.pre_routing.3stap.html +++ /dev/null @@ -1,237 +0,0 @@ - -Manpage of PROBE::NETFILTER\&.I - -

PROBE::NETFILTER\&.I

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::netfilter.ip.pre_routing - Called before an IP packet is routed -  -

SYNOPSIS

- -

-

-netfilter.ip.pre_routing 
-
- -  -

VALUES

- -

- -urg -

-TCP URG flag (if protocol is TCP; ipv4 only) -
- -

- -protocol -

-Packet protocol from driver (ipv4 only) -
- -

- -indev -

-Address of net_device representing input device, 0 if unknown -
- -

- -nf_accept -

-Constant used to signify an 'accept' verdict -
- -

- -pf -

-Protocol family - either 'ipv4' or 'ipv6' -
- -

- -ipproto_tcp -

-Constant used to signify that the packet protocol is TCP -
- -

- -rst -

-TCP RST flag (if protocol is TCP; ipv4 only) -
- -

- -dport -

-TCP or UDP destination port (ipv4 only) -
- -

- -nf_queue -

-Constant used to signify a 'queue' verdict -
- -

- -nf_stolen -

-Constant used to signify a 'stolen' verdict -
- -

- -ipproto_udp -

-Constant used to signify that the packet protocol is UDP -
- -

- -outdev_name -

-Name of network device packet will be routed to (if known) -
- -

- -ack -

-TCP ACK flag (if protocol is TCP; ipv4 only) -
- -

- -fin -

-TCP FIN flag (if protocol is TCP; ipv4 only) -
- -

- -nf_drop -

-Constant used to signify a 'drop' verdict -
- -

- -psh -

-TCP PSH flag (if protocol is TCP; ipv4 only) -
- -

- -saddr -

-A string representing the source IP address -
- -

- -nf_stop -

-Constant used to signify a 'stop' verdict -
- -

- -length -

-The length of the packet buffer contents, in bytes -
- -

- -daddr -

-A string representing the destination IP address -
- -

- -outdev -

-Address of net_device representing output device, 0 if unknown -
- -

- -syn -

-TCP SYN flag (if protocol is TCP; ipv4 only) -
- -

- -sport -

-TCP or UDP source port (ipv4 only) -
- -

- -indev_name -

-Name of network device packet was received on (if known) -
- -

- -nf_repeat -

-Constant used to signify a 'repeat' verdict -
- -

- -iphdr -

-Address of IP header -
- -

- -family -

-IP address family -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.aop.readpage.3stap.html b/man/probe::nfs.aop.readpage.3stap.html deleted file mode 100644 index 9948935e..00000000 --- a/man/probe::nfs.aop.readpage.3stap.html +++ /dev/null @@ -1,125 +0,0 @@ - -Manpage of PROBE::NFS\&.AOP\&.R - -

PROBE::NFS\&.AOP\&.R

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.aop.readpage - NFS client synchronously reading a page -  -

SYNOPSIS

- -

-

-nfs.aop.readpage 
-
- -  -

VALUES

- -

- -i_size -

-file length in bytes -
- -

- -dev -

-device identifier -
- -

- -rsize -

-read size (in bytes) -
- -

- -sb_flag -

-super block flags -
- -

- -file -

-file argument -
- -

- -page_index -

-offset within mapping, can used a page identifier and position identifier in the page frame -
- -

- -__page -

-the address of page -
- -

- -size -

-number of pages to be read in this execution -
- -

- -i_flag -

-file flags -
- -

- -ino -

-inode number -
- -  -

DESCRIPTION

- -

- -Read the page over, only fires when a previous async read operation failed -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.aop.readpages.3stap.html b/man/probe::nfs.aop.readpages.3stap.html deleted file mode 100644 index fccf0c0a..00000000 --- a/man/probe::nfs.aop.readpages.3stap.html +++ /dev/null @@ -1,104 +0,0 @@ - -Manpage of PROBE::NFS\&.AOP\&.R - -

PROBE::NFS\&.AOP\&.R

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.aop.readpages - NFS client reading multiple pages -  -

SYNOPSIS

- -

-

-nfs.aop.readpages 
-
- -  -

VALUES

- -

- -dev -

-device identifier -
- -

- -rsize -

-read size (in bytes) -
- -

- -file -

-filp argument -
- -

- -size -

-number of pages attempted to read in this execution -
- -

- -nr_pages -

-number of pages attempted to read in this execution -
- -

- -rpages -

-read size (in pages) -
- -

- -ino -

-inode number -
- -  -

DESCRIPTION

- -

- -Fires when in readahead way, read several pages once -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.aop.release_page.3stap.html b/man/probe::nfs.aop.release_page.3stap.html deleted file mode 100644 index 1f5cedea..00000000 --- a/man/probe::nfs.aop.release_page.3stap.html +++ /dev/null @@ -1,90 +0,0 @@ - -Manpage of PROBE::NFS\&.AOP\&.R - -

PROBE::NFS\&.AOP\&.R

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.aop.release_page - NFS client releasing page -  -

SYNOPSIS

- -

-

-nfs.aop.release_page 
-
- -  -

VALUES

- -

- -dev -

-device identifier -
- -

- -page_index -

-offset within mapping, can used a page identifier and position identifier in the page frame -
- -

- -__page -

-the address of page -
- -

- -size -

-release pages -
- -

- -ino -

-inode number -
- -  -

DESCRIPTION

- -

- -Fires when do a release operation on NFS. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.aop.set_page_dirty.3stap.html b/man/probe::nfs.aop.set_page_dirty.3stap.html deleted file mode 100644 index dc1ff2cc..00000000 --- a/man/probe::nfs.aop.set_page_dirty.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of PROBE::NFS\&.AOP\&.S - -

PROBE::NFS\&.AOP\&.S

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.aop.set_page_dirty - NFS client marking page as dirty -  -

SYNOPSIS

- -

-

-nfs.aop.set_page_dirty 
-
- -  -

VALUES

- -

- -__page -

-the address of page -
- -

- -page_flag -

-page flags -
- -  -

DESCRIPTION

- -

- -This probe attaches to the generic __set_page_dirty_nobuffers function. Thus, this probe is going to fire on many other file systems in addition to the NFS client. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.aop.write_begin.3stap.html b/man/probe::nfs.aop.write_begin.3stap.html deleted file mode 100644 index b1752ea9..00000000 --- a/man/probe::nfs.aop.write_begin.3stap.html +++ /dev/null @@ -1,104 +0,0 @@ - -Manpage of PROBE::NFS\&.AOP\&.W - -

PROBE::NFS\&.AOP\&.W

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.aop.write_begin - NFS client begin to write data -  -

SYNOPSIS

- -

-

-nfs.aop.write_begin 
-
- -  -

VALUES

- -

- -dev -

-device identifier -
- -

- -page_index -

-offset within mapping, can used a page identifier and position identifier in the page frame -
- -

- -__page -

-the address of page -
- -

- -size -

-write bytes -
- -

- -to -

-end address of this write operation -
- -

- -ino -

-inode number -
- -

- -offset -

-start address of this write operation -
- -  -

DESCRIPTION

- -

- -Occurs when write operation occurs on nfs. It prepare a page for writing, look for a request corresponding to the page. If there is one, and it belongs to another file, it flush it out before it tries to copy anything into the page. Also do the same if it finds a request from an existing dropped page -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.aop.write_end.3stap.html b/man/probe::nfs.aop.write_end.3stap.html deleted file mode 100644 index 5b397a0d..00000000 --- a/man/probe::nfs.aop.write_end.3stap.html +++ /dev/null @@ -1,128 +0,0 @@ - -Manpage of PROBE::NFS\&.AOP\&.W - -

PROBE::NFS\&.AOP\&.W

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.aop.write_end - NFS client complete writing data -  -

SYNOPSIS

- -

-

-nfs.aop.write_end 
-
- -  -

VALUES

- -

- -i_size -

-file length in bytes -
- -

- -dev -

-device identifier -
- -

- -sb_flag -

-super block flags -
- -

- -page_index -

-offset within mapping, can used a page identifier and position identifier in the page frame -
- -

- -__page -

-the address of page -
- -

- -size -

-write bytes -
- -

- -i_flag -

-file flags -
- -

- -to -

-end address of this write operation -
- -

- -ino -

-inode number -
- -

- -offset -

-start address of this write operation -
- -  -

DESCRIPTION

- -

- -Fires when do a write operation on nfs, often after prepare_write -

- -Update and possibly write a cached page of an NFS file. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.aop.writepage.3stap.html b/man/probe::nfs.aop.writepage.3stap.html deleted file mode 100644 index 6355fa63..00000000 --- a/man/probe::nfs.aop.writepage.3stap.html +++ /dev/null @@ -1,142 +0,0 @@ - -Manpage of PROBE::NFS\&.AOP\&.W - -

PROBE::NFS\&.AOP\&.W

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.aop.writepage - NFS client writing a mapped page to the NFS server -  -

SYNOPSIS

- -

-

-nfs.aop.writepage 
-
- -  -

VALUES

- -

- -for_reclaim -

-a flag of writeback_control, indicates if it's invoked from the page allocator -
- -

- -i_size -

-file length in bytes -
- -

- -dev -

-device identifier -
- -

- -sb_flag -

-super block flags -
- -

- -page_index -

-offset within mapping, can used a page identifier and position identifier in the page frame -
- -

- -__page -

-the address of page -
- -

- -size -

-number of pages to be written in this execution -
- -

- -for_kupdate -

-a flag of writeback_control, indicates if it's a kupdate writeback -
- -

- -wsize -

-write size -
- -

- -i_flag -

-file flags -
- -

- -i_state -

-inode state flags -
- -

- -ino -

-inode number -
- -  -

DESCRIPTION

- -

- -The priority of wb is decided by the flags -for_reclaim -and -for_kupdate. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.aop.writepages.3stap.html b/man/probe::nfs.aop.writepages.3stap.html deleted file mode 100644 index e66d2afa..00000000 --- a/man/probe::nfs.aop.writepages.3stap.html +++ /dev/null @@ -1,114 +0,0 @@ - -Manpage of PROBE::NFS\&.AOP\&.W - -

PROBE::NFS\&.AOP\&.W

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.aop.writepages - NFS client writing several dirty pages to the NFS server -  -

SYNOPSIS

- -

-

-nfs.aop.writepages 
-
- -  -

VALUES

- -

- -for_reclaim -

-a flag of writeback_control, indicates if it's invoked from the page allocator -
- -

- -dev -

-device identifier -
- -

- -wpages -

-write size (in pages) -
- -

- -size -

-number of pages attempted to be written in this execution -
- -

- -for_kupdate -

-a flag of writeback_control, indicates if it's a kupdate writeback -
- -

- -wsize -

-write size -
- -

- -nr_to_write -

-number of pages attempted to be written in this execution -
- -

- -ino -

-inode number -
- -  -

DESCRIPTION

- -

- -The priority of wb is decided by the flags -for_reclaim -and -for_kupdate. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.fop.aio_read.3stap.html b/man/probe::nfs.fop.aio_read.3stap.html deleted file mode 100644 index 2558dafb..00000000 --- a/man/probe::nfs.fop.aio_read.3stap.html +++ /dev/null @@ -1,118 +0,0 @@ - -Manpage of PROBE::NFS\&.FOP\&.A - -

PROBE::NFS\&.FOP\&.A

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.fop.aio_read - NFS client aio_read file operation -  -

SYNOPSIS

- -

-

-nfs.fop.aio_read 
-
- -  -

VALUES

- -

- -attrtimeo -

-how long the cached information is assumed to be valid. We need to revalidate the cached attrs for this inode if jiffies - read_cache_jiffies > attrtimeo. -
- -

- -cache_valid -

-cache related bit mask flag -
- -

- -count -

-read bytes -
- -

- -parent_name -

-parent dir name -
- -

- -dev -

-device identifier -
- -

- -buf -

-the address of buf in user space -
- -

- -cache_time -

-when we started read-caching this inode -
- -

- -file_name -

-file name -
- -

- -pos -

-current position of file -
- -

- -ino -

-inode number -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.fop.aio_write.3stap.html b/man/probe::nfs.fop.aio_write.3stap.html deleted file mode 100644 index 5c49d92c..00000000 --- a/man/probe::nfs.fop.aio_write.3stap.html +++ /dev/null @@ -1,97 +0,0 @@ - -Manpage of PROBE::NFS\&.FOP\&.A - -

PROBE::NFS\&.FOP\&.A

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.fop.aio_write - NFS client aio_write file operation -  -

SYNOPSIS

- -

-

-nfs.fop.aio_write 
-
- -  -

VALUES

- -

- -count -

-read bytes -
- -

- -parent_name -

-parent dir name -
- -

- -dev -

-device identifier -
- -

- -buf -

-the address of buf in user space -
- -

- -file_name -

-file name -
- -

- -pos -

-offset of the file -
- -

- -ino -

-inode number -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.fop.check_flags.3stap.html b/man/probe::nfs.fop.check_flags.3stap.html deleted file mode 100644 index c41be7b7..00000000 --- a/man/probe::nfs.fop.check_flags.3stap.html +++ /dev/null @@ -1,55 +0,0 @@ - -Manpage of PROBE::NFS\&.FOP\&.C - -

PROBE::NFS\&.FOP\&.C

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.fop.check_flags - NFS client checking flag operation -  -

SYNOPSIS

- -

-

-nfs.fop.check_flags 
-
- -  -

VALUES

- -

- -flag -

-file flag -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.fop.flush.3stap.html b/man/probe::nfs.fop.flush.3stap.html deleted file mode 100644 index 93dada46..00000000 --- a/man/probe::nfs.fop.flush.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of PROBE::NFS\&.FOP\&.F - -

PROBE::NFS\&.FOP\&.F

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.fop.flush - NFS client flush file operation -  -

SYNOPSIS

- -

-

-nfs.fop.flush 
-
- -  -

VALUES

- -

- -dev -

-device identifier -
- -

- -mode -

-file mode -
- -

- -ndirty -

-number of dirty page -
- -

- -ino -

-inode number -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.fop.fsync.3stap.html b/man/probe::nfs.fop.fsync.3stap.html deleted file mode 100644 index 4916c660..00000000 --- a/man/probe::nfs.fop.fsync.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of PROBE::NFS\&.FOP\&.F - -

PROBE::NFS\&.FOP\&.F

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.fop.fsync - NFS client fsync operation -  -

SYNOPSIS

- -

-

-nfs.fop.fsync 
-
- -  -

VALUES

- -

- -dev -

-device identifier -
- -

- -ndirty -

-number of dirty pages -
- -

- -ino -

-inode number -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.fop.llseek.3stap.html b/man/probe::nfs.fop.llseek.3stap.html deleted file mode 100644 index b8425798..00000000 --- a/man/probe::nfs.fop.llseek.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of PROBE::NFS\&.FOP\&.L - -

PROBE::NFS\&.FOP\&.L

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.fop.llseek - NFS client llseek operation -  -

SYNOPSIS

- -

-

-nfs.fop.llseek 
-
- -  -

VALUES

- -

- -dev -

-device identifier -
- -

- -origin -

-the original position. The possible value could be: SEEK_SET (offset set to offset bytes), SEEK_CUR (offset set to its current location plus offset bytes), or SEEK_END (offset set to the size of the file plus offset bytes). -
- -

- -ino -

-inode number -
- -

- -offset -

-the offset of the file will be repositioned -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.fop.lock.3stap.html b/man/probe::nfs.fop.lock.3stap.html deleted file mode 100644 index 0eb8fa6e..00000000 --- a/man/probe::nfs.fop.lock.3stap.html +++ /dev/null @@ -1,104 +0,0 @@ - -Manpage of PROBE::NFS\&.FOP\&.L - -

PROBE::NFS\&.FOP\&.L

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.fop.lock - NFS client file lock operation -  -

SYNOPSIS

- -

-

-nfs.fop.lock 
-
- -  -

VALUES

- -

- -cmd -

-cmd arguments -
- -

- -dev -

-device identifier -
- -

- -fl_type -

-lock type -
- -

- -fl_end -

-ending offset of locked region -
- -

- -fl_flag -

-lock flags -
- -

- -i_mode -

-file type and access rights -
- -

- -fl_start -

-starting offset of locked region -
- -

- -ino -

-inode number -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.fop.mmap.3stap.html b/man/probe::nfs.fop.mmap.3stap.html deleted file mode 100644 index 530bfd4b..00000000 --- a/man/probe::nfs.fop.mmap.3stap.html +++ /dev/null @@ -1,125 +0,0 @@ - -Manpage of PROBE::NFS\&.FOP\&.M - -

PROBE::NFS\&.FOP\&.M

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.fop.mmap - NFS client mmap operation -  -

SYNOPSIS

- -

-

-nfs.fop.mmap 
-
- -  -

VALUES

- -

- -attrtimeo -

-how long the cached information is assumed to be valid. We need to revalidate the cached attrs for this inode if jiffies - read_cache_jiffies > attrtimeo. -
- -

- -cache_valid -

-cache related bit mask flag -
- -

- -parent_name -

-parent dir name -
- -

- -vm_flag -

-vm flags -
- -

- -vm_start -

-start address within vm_mm -
- -

- -dev -

-device identifier -
- -

- -buf -

-the address of buf in user space -
- -

- -vm_end -

-the first byte after end address within vm_mm -
- -

- -cache_time -

-when we started read-caching this inode -
- -

- -file_name -

-file name -
- -

- -ino -

-inode number -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.fop.open.3stap.html b/man/probe::nfs.fop.open.3stap.html deleted file mode 100644 index e3b6edf8..00000000 --- a/man/probe::nfs.fop.open.3stap.html +++ /dev/null @@ -1,83 +0,0 @@ - -Manpage of PROBE::NFS\&.FOP\&.O - -

PROBE::NFS\&.FOP\&.O

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.fop.open - NFS client file open operation -  -

SYNOPSIS

- -

-

-nfs.fop.open 
-
- -  -

VALUES

- -

- -i_size -

-file length in bytes -
- -

- -dev -

-device identifier -
- -

- -flag -

-file flag -
- -

- -file_name -

-file name -
- -

- -ino -

-inode number -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.fop.read.3stap.html b/man/probe::nfs.fop.read.3stap.html deleted file mode 100644 index cf462e3c..00000000 --- a/man/probe::nfs.fop.read.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of PROBE::NFS\&.FOP\&.R - -

PROBE::NFS\&.FOP\&.R

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.fop.read - NFS client read operation -  -

SYNOPSIS

- -

-

-nfs.fop.read 
-
- -  -

VALUES

- -

- -devname -

-block device name -
- -  -

DESCRIPTION

- -

- -SystemTap uses the vfs.do_sync_read probe to implement this probe and as a result will get operations other than the NFS client read operations. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.fop.release.3stap.html b/man/probe::nfs.fop.release.3stap.html deleted file mode 100644 index 8e166686..00000000 --- a/man/probe::nfs.fop.release.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of PROBE::NFS\&.FOP\&.R - -

PROBE::NFS\&.FOP\&.R

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.fop.release - NFS client release page operation -  -

SYNOPSIS

- -

-

-nfs.fop.release 
-
- -  -

VALUES

- -

- -dev -

-device identifier -
- -

- -mode -

-file mode -
- -

- -ino -

-inode number -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.fop.sendfile.3stap.html b/man/probe::nfs.fop.sendfile.3stap.html deleted file mode 100644 index 3d5af911..00000000 --- a/man/probe::nfs.fop.sendfile.3stap.html +++ /dev/null @@ -1,97 +0,0 @@ - -Manpage of PROBE::NFS\&.FOP\&.S - -

PROBE::NFS\&.FOP\&.S

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.fop.sendfile - NFS client send file operation -  -

SYNOPSIS

- -

-

-nfs.fop.sendfile 
-
- -  -

VALUES

- -

- -attrtimeo -

-how long the cached information is assumed to be valid. We need to revalidate the cached attrs for this inode if jiffies - read_cache_jiffies > attrtimeo. -
- -

- -cache_valid -

-cache related bit mask flag -
- -

- -count -

-read bytes -
- -

- -ppos -

-current position of file -
- -

- -dev -

-device identifier -
- -

- -cache_time -

-when we started read-caching this inode -
- -

- -ino -

-inode number -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.fop.write.3stap.html b/man/probe::nfs.fop.write.3stap.html deleted file mode 100644 index 74992b51..00000000 --- a/man/probe::nfs.fop.write.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of PROBE::NFS\&.FOP\&.W - -

PROBE::NFS\&.FOP\&.W

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.fop.write - NFS client write operation -  -

SYNOPSIS

- -

-

-nfs.fop.write 
-
- -  -

VALUES

- -

- -devname -

-block device name -
- -  -

DESCRIPTION

- -

- -SystemTap uses the vfs.do_sync_write probe to implement this probe and as a result will get operations other than the NFS client write operations. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.proc.commit.3stap.html b/man/probe::nfs.proc.commit.3stap.html deleted file mode 100644 index d065ce6c..00000000 --- a/man/probe::nfs.proc.commit.3stap.html +++ /dev/null @@ -1,107 +0,0 @@ - -Manpage of PROBE::NFS\&.PROC\&. - -

PROBE::NFS\&.PROC\&.

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.proc.commit - NFS client committing data on server -  -

SYNOPSIS

- -

-

-nfs.proc.commit 
-
- -  -

VALUES

- -

- -bitmask1 -

-V4 bitmask representing the set of attributes supported on this filesystem -
- -

- -version -

-NFS version -
- -

- -bitmask0 -

-V4 bitmask representing the set of attributes supported on this filesystem -
- -

- -prot -

-transfer protocol -
- -

- -size -

-read bytes in this execution -
- -

- -offset -

-the file offset -
- -

- -server_ip -

-IP address of server -
- -  -

DESCRIPTION

- -

- -All the nfs.proc.commit kernel functions were removed in kernel commit 200baa in December 2006, so these probes do not exist on Linux 2.6.21 and newer kernels. -

- -Fires when client writes the buffered data to disk. The buffered data is asynchronously written by client earlier. The commit function works in sync way. This probe point does not exist in NFSv2. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.proc.commit_done.3stap.html b/man/probe::nfs.proc.commit_done.3stap.html deleted file mode 100644 index f4bab798..00000000 --- a/man/probe::nfs.proc.commit_done.3stap.html +++ /dev/null @@ -1,104 +0,0 @@ - -Manpage of PROBE::NFS\&.PROC\&. - -

PROBE::NFS\&.PROC\&.

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.proc.commit_done - NFS client response to a commit RPC task -  -

SYNOPSIS

- -

-

-nfs.proc.commit_done 
-
- -  -

VALUES

- -

- -count -

-number of bytes committed -
- -

- -status -

-result of last operation -
- -

- -version -

-NFS version -
- -

- -prot -

-transfer protocol -
- -

- -valid -

-fattr->valid ,indicates which fields are valid -
- -

- -timestamp -

-V4 timestamp, which is used for lease renewal -
- -

- -server_ip -

-IP address of server -
- -  -

DESCRIPTION

- -

- -Fires when a reply to a commit RPC task is received or some commit operation error occur (timeout or socket shutdown). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.proc.commit_setup.3stap.html b/man/probe::nfs.proc.commit_setup.3stap.html deleted file mode 100644 index a983ce5c..00000000 --- a/man/probe::nfs.proc.commit_setup.3stap.html +++ /dev/null @@ -1,111 +0,0 @@ - -Manpage of PROBE::NFS\&.PROC\&. - -

PROBE::NFS\&.PROC\&.

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.proc.commit_setup - NFS client setting up a commit RPC task -  -

SYNOPSIS

- -

-

-nfs.proc.commit_setup 
-
- -  -

VALUES

- -

- -count -

-bytes in this commit -
- -

- -bitmask1 -

-V4 bitmask representing the set of attributes supported on this filesystem -
- -

- -version -

-NFS version -
- -

- -bitmask0 -

-V4 bitmask representing the set of attributes supported on this filesystem -
- -

- -prot -

-transfer protocol -
- -

- -size -

-bytes in this commit -
- -

- -offset -

-the file offset -
- -

- -server_ip -

-IP address of server -
- -  -

DESCRIPTION

- -

- -The commit_setup function is used to setup a commit RPC task. Is is not doing the actual commit operation. It is does not exist in NFSv2. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.proc.create.3stap.html b/man/probe::nfs.proc.create.3stap.html deleted file mode 100644 index eb954a1e..00000000 --- a/man/probe::nfs.proc.create.3stap.html +++ /dev/null @@ -1,97 +0,0 @@ - -Manpage of PROBE::NFS\&.PROC\&. - -

PROBE::NFS\&.PROC\&.

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.proc.create - NFS client creating file on server -  -

SYNOPSIS

- -

-

-nfs.proc.create 
-
- -  -

VALUES

- -

- -version -

-NFS version (the function is used for all NFS version) -
- -

- -flag -

-indicates create mode (only for NFSv3 and NFSv4) -
- -

- -prot -

-transfer protocol -
- -

- -filelen -

-length of file name -
- -

- -filename -

-file name -
- -

- -fh -

-file handler of parent dir -
- -

- -server_ip -

-IP address of server -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.proc.handle_exception.3stap.html b/man/probe::nfs.proc.handle_exception.3stap.html deleted file mode 100644 index 0a8e1cc1..00000000 --- a/man/probe::nfs.proc.handle_exception.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of PROBE::NFS\&.PROC\&. - -

PROBE::NFS\&.PROC\&.

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.proc.handle_exception - NFS client handling an NFSv4 exception -  -

SYNOPSIS

- -

-

-nfs.proc.handle_exception 
-
- -  -

VALUES

- -

- -errorcode -

-indicates the type of error -
- -  -

DESCRIPTION

- -

- -This is the error handling routine for processes for NFSv4. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.proc.lookup.3stap.html b/man/probe::nfs.proc.lookup.3stap.html deleted file mode 100644 index bcfa9c46..00000000 --- a/man/probe::nfs.proc.lookup.3stap.html +++ /dev/null @@ -1,97 +0,0 @@ - -Manpage of PROBE::NFS\&.PROC\&. - -

PROBE::NFS\&.PROC\&.

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.proc.lookup - NFS client opens/searches a file on server -  -

SYNOPSIS

- -

-

-nfs.proc.lookup 
-
- -  -

VALUES

- -

- -name_len -

-the length of file name -
- -

- -filename -

-the name of file which client opens/searches on server -
- -

- -bitmask1 -

-V4 bitmask representing the set of attributes supported on this filesystem -
- -

- -version -

-NFS version -
- -

- -bitmask0 -

-V4 bitmask representing the set of attributes supported on this filesystem -
- -

- -prot -

-transfer protocol -
- -

- -server_ip -

-IP address of server -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.proc.open.3stap.html b/man/probe::nfs.proc.open.3stap.html deleted file mode 100644 index 1dcc0694..00000000 --- a/man/probe::nfs.proc.open.3stap.html +++ /dev/null @@ -1,97 +0,0 @@ - -Manpage of PROBE::NFS\&.PROC\&. - -

PROBE::NFS\&.PROC\&.

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.proc.open - NFS client allocates file read/write context information -  -

SYNOPSIS

- -

-

-nfs.proc.open 
-
- -  -

VALUES

- -

- -mode -

-file mode -
- -

- -version -

-NFS version (the function is used for all NFS version) -
- -

- -flag -

-file flag -
- -

- -prot -

-transfer protocol -
- -

- -filename -

-file name -
- -

- -server_ip -

-IP address of server -
- -  -

DESCRIPTION

- -

- -Allocate file read/write context information -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.proc.read.3stap.html b/man/probe::nfs.proc.read.3stap.html deleted file mode 100644 index 4da01074..00000000 --- a/man/probe::nfs.proc.read.3stap.html +++ /dev/null @@ -1,97 +0,0 @@ - -Manpage of PROBE::NFS\&.PROC\&. - -

PROBE::NFS\&.PROC\&.

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.proc.read - NFS client synchronously reads file from server -  -

SYNOPSIS

- -

-

-nfs.proc.read 
-
- -  -

VALUES

- -

- -count -

-read bytes in this execution -
- -

- -flags -

-used to set task->tk_flags in rpc_init_task function -
- -

- -version -

-NFS version -
- -

- -prot -

-transfer protocol -
- -

- -offset -

-the file offset -
- -

- -server_ip -

-IP address of server -
- -  -

DESCRIPTION

- -

- -All the nfs.proc.read kernel functions were removed in kernel commit 8e0969 in December 2006, so these probes do not exist on Linux 2.6.21 and newer kernels. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.proc.read_done.3stap.html b/man/probe::nfs.proc.read_done.3stap.html deleted file mode 100644 index 9e012483..00000000 --- a/man/probe::nfs.proc.read_done.3stap.html +++ /dev/null @@ -1,97 +0,0 @@ - -Manpage of PROBE::NFS\&.PROC\&. - -

PROBE::NFS\&.PROC\&.

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.proc.read_done - NFS client response to a read RPC task -  -

SYNOPSIS

- -

-

-nfs.proc.read_done 
-
- -  -

VALUES

- -

- -count -

-number of bytes read -
- -

- -status -

-result of last operation -
- -

- -version -

-NFS version -
- -

- -prot -

-transfer protocol -
- -

- -timestamp -

-V4 timestamp, which is used for lease renewal -
- -

- -server_ip -

-IP address of server -
- -  -

DESCRIPTION

- -

- -Fires when a reply to a read RPC task is received or some read error occurs (timeout or socket shutdown). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.proc.read_setup.3stap.html b/man/probe::nfs.proc.read_setup.3stap.html deleted file mode 100644 index 9762d295..00000000 --- a/man/probe::nfs.proc.read_setup.3stap.html +++ /dev/null @@ -1,97 +0,0 @@ - -Manpage of PROBE::NFS\&.PROC\&. - -

PROBE::NFS\&.PROC\&.

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.proc.read_setup - NFS client setting up a read RPC task -  -

SYNOPSIS

- -

-

-nfs.proc.read_setup 
-
- -  -

VALUES

- -

- -count -

-read bytes in this execution -
- -

- -version -

-NFS version -
- -

- -prot -

-transfer protocol -
- -

- -size -

-read bytes in this execution -
- -

- -offset -

-the file offset -
- -

- -server_ip -

-IP address of server -
- -  -

DESCRIPTION

- -

- -The read_setup function is used to setup a read RPC task. It is not doing the actual read operation. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.proc.release.3stap.html b/man/probe::nfs.proc.release.3stap.html deleted file mode 100644 index 57c15caa..00000000 --- a/man/probe::nfs.proc.release.3stap.html +++ /dev/null @@ -1,97 +0,0 @@ - -Manpage of PROBE::NFS\&.PROC\&. - -

PROBE::NFS\&.PROC\&.

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.proc.release - NFS client releases file read/write context information -  -

SYNOPSIS

- -

-

-nfs.proc.release 
-
- -  -

VALUES

- -

- -mode -

-file mode -
- -

- -version -

-NFS version (the function is used for all NFS version) -
- -

- -flag -

-file flag -
- -

- -prot -

-transfer protocol -
- -

- -filename -

-file name -
- -

- -server_ip -

-IP address of server -
- -  -

DESCRIPTION

- -

- -Release file read/write context information -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.proc.remove.3stap.html b/man/probe::nfs.proc.remove.3stap.html deleted file mode 100644 index f2480710..00000000 --- a/man/probe::nfs.proc.remove.3stap.html +++ /dev/null @@ -1,90 +0,0 @@ - -Manpage of PROBE::NFS\&.PROC\&. - -

PROBE::NFS\&.PROC\&.

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.proc.remove - NFS client removes a file on server -  -

SYNOPSIS

- -

-

-nfs.proc.remove 
-
- -  -

VALUES

- -

- -version -

-NFS version (the function is used for all NFS version) -
- -

- -prot -

-transfer protocol -
- -

- -filelen -

-length of file name -
- -

- -filename -

-file name -
- -

- -fh -

-file handler of parent dir -
- -

- -server_ip -

-IP address of server -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.proc.rename.3stap.html b/man/probe::nfs.proc.rename.3stap.html deleted file mode 100644 index ddb60ffd..00000000 --- a/man/probe::nfs.proc.rename.3stap.html +++ /dev/null @@ -1,111 +0,0 @@ - -Manpage of PROBE::NFS\&.PROC\&. - -

PROBE::NFS\&.PROC\&.

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.proc.rename - NFS client renames a file on server -  -

SYNOPSIS

- -

-

-nfs.proc.rename 
-
- -  -

VALUES

- -

- -new_fh -

-file handler of new parent dir -
- -

- -old_filelen -

-length of old file name -
- -

- -version -

-NFS version (the function is used for all NFS version) -
- -

- -prot -

-transfer protocol -
- -

- -new_filelen -

-length of new file name -
- -

- -old_fh -

-file handler of old parent dir -
- -

- -new_name -

-new file name -
- -

- -old_name -

-old file name -
- -

- -server_ip -

-IP address of server -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.proc.write.3stap.html b/man/probe::nfs.proc.write.3stap.html deleted file mode 100644 index cda84d97..00000000 --- a/man/probe::nfs.proc.write.3stap.html +++ /dev/null @@ -1,111 +0,0 @@ - -Manpage of PROBE::NFS\&.PROC\&. - -

PROBE::NFS\&.PROC\&.

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.proc.write - NFS client synchronously writes file to server -  -

SYNOPSIS

- -

-

-nfs.proc.write 
-
- -  -

VALUES

- -

- -flags -

-used to set task->tk_flags in rpc_init_task function -
- -

- -bitmask1 -

-V4 bitmask representing the set of attributes supported on this filesystem -
- -

- -version -

-NFS version -
- -

- -bitmask0 -

-V4 bitmask representing the set of attributes supported on this filesystem -
- -

- -prot -

-transfer protocol -
- -

- -size -

-read bytes in this execution -
- -

- -server_ip -

-IP address of server -
- -

- -offset -

-the file offset -
- -  -

DESCRIPTION

- -

- -All the nfs.proc.write kernel functions were removed in kernel commit 200baa in December 2006, so these probes do not exist on Linux 2.6.21 and newer kernels. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.proc.write_done.3stap.html b/man/probe::nfs.proc.write_done.3stap.html deleted file mode 100644 index ede9ca4f..00000000 --- a/man/probe::nfs.proc.write_done.3stap.html +++ /dev/null @@ -1,104 +0,0 @@ - -Manpage of PROBE::NFS\&.PROC\&. - -

PROBE::NFS\&.PROC\&.

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.proc.write_done - NFS client response to a write RPC task -  -

SYNOPSIS

- -

-

-nfs.proc.write_done 
-
- -  -

VALUES

- -

- -count -

-number of bytes written -
- -

- -status -

-result of last operation -
- -

- -version -

-NFS version -
- -

- -prot -

-transfer protocol -
- -

- -valid -

-fattr->valid ,indicates which fields are valid -
- -

- -timestamp -

-V4 timestamp, which is used for lease renewal -
- -

- -server_ip -

-IP address of server -
- -  -

DESCRIPTION

- -

- -Fires when a reply to a write RPC task is received or some write error occurs (timeout or socket shutdown). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfs.proc.write_setup.3stap.html b/man/probe::nfs.proc.write_setup.3stap.html deleted file mode 100644 index 409e7d73..00000000 --- a/man/probe::nfs.proc.write_setup.3stap.html +++ /dev/null @@ -1,118 +0,0 @@ - -Manpage of PROBE::NFS\&.PROC\&. - -

PROBE::NFS\&.PROC\&.

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfs.proc.write_setup - NFS client setting up a write RPC task -  -

SYNOPSIS

- -

-

-nfs.proc.write_setup 
-
- -  -

VALUES

- -

- -count -

-bytes written in this execution -
- -

- -bitmask1 -

-V4 bitmask representing the set of attributes supported on this filesystem -
- -

- -how -

-used to set args.stable. The stable value could be: NFS_UNSTABLE,NFS_DATA_SYNC,NFS_FILE_SYNC (in nfs.proc3.write_setup and nfs.proc4.write_setup) -
- -

- -version -

-NFS version -
- -

- -bitmask0 -

-V4 bitmask representing the set of attributes supported on this filesystem -
- -

- -prot -

-transfer protocol -
- -

- -size -

-bytes written in this execution -
- -

- -offset -

-the file offset -
- -

- -server_ip -

-IP address of server -
- -  -

DESCRIPTION

- -

- -The write_setup function is used to setup a write RPC task. It is not doing the actual write operation. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfsd.close.3stap.html b/man/probe::nfsd.close.3stap.html deleted file mode 100644 index 57316b5c..00000000 --- a/man/probe::nfsd.close.3stap.html +++ /dev/null @@ -1,55 +0,0 @@ - -Manpage of PROBE::NFSD\&.CLOSE - -

PROBE::NFSD\&.CLOSE

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfsd.close - NFS server closing a file for client -  -

SYNOPSIS

- -

-

-nfsd.close 
-
- -  -

VALUES

- -

- -filename -

-file name -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfsd.commit.3stap.html b/man/probe::nfsd.commit.3stap.html deleted file mode 100644 index bfd75657..00000000 --- a/man/probe::nfsd.commit.3stap.html +++ /dev/null @@ -1,90 +0,0 @@ - -Manpage of PROBE::NFSD\&.COMMIT - -

PROBE::NFSD\&.COMMIT

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfsd.commit - NFS server committing all pending writes to stable storage -  -

SYNOPSIS

- -

-

-nfsd.commit 
-
- -  -

VALUES

- -

- -count -

-read bytes -
- -

- -flag -

-indicates whether this execution is a sync operation -
- -

- -size -

-read bytes -
- -

- -fh -

-file handle (the first part is the length of the file handle) -
- -

- -client_ip -

-the ip address of client -
- -

- -offset -

-the offset of file -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfsd.create.3stap.html b/man/probe::nfsd.create.3stap.html deleted file mode 100644 index 4a6fc056..00000000 --- a/man/probe::nfsd.create.3stap.html +++ /dev/null @@ -1,104 +0,0 @@ - -Manpage of PROBE::NFSD\&.CREATE - -

PROBE::NFSD\&.CREATE

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfsd.create - NFS server creating a file(regular,dir,device,fifo) for client -  -

SYNOPSIS

- -

-

-nfsd.create 
-
- -  -

VALUES

- -

- -iap_mode -

-file access mode -
- -

- -iap_valid -

-Attribute flags -
- -

- -filelen -

-the length of file name -
- -

- -filename -

-file name -
- -

- -fh -

-file handle (the first part is the length of the file handle) -
- -

- -client_ip -

-the ip address of client -
- -

- -type -

-file type(regular,dir,device,fifo ...) -
- -  -

DESCRIPTION

- -

- -Sometimes nfsd will call nfsd_create_v3 instead of this this probe point. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfsd.createv3.3stap.html b/man/probe::nfsd.createv3.3stap.html deleted file mode 100644 index 87fe959d..00000000 --- a/man/probe::nfsd.createv3.3stap.html +++ /dev/null @@ -1,118 +0,0 @@ - -Manpage of PROBE::NFSD\&.CREATE - -

PROBE::NFSD\&.CREATE

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfsd.createv3 - NFS server creating a regular file or set file attributes for client -  -

SYNOPSIS

- -

-

-nfsd.createv3 
-
- -  -

VALUES

- -

- -iap_mode -

-file access mode -
- -

- -createmode -

-create mode .The possible values could be: NFS3_CREATE_EXCLUSIVE, NFS3_CREATE_UNCHECKED, or NFS3_CREATE_GUARDED -
- -

- -verifier -

-file attributes (atime,mtime,mode). It's used to reset file attributes for CREATE_EXCLUSIVE -
- -

- -iap_valid -

-Attribute flags -
- -

- -truncp -

-trunp arguments, indicates if the file shouldbe truncate -
- -

- -filelen -

-the length of file name -
- -

- -filename -

-file name -
- -

- -fh -

-file handle (the first part is the length of the file handle) -
- -

- -client_ip -

-the ip address of client -
- -  -

DESCRIPTION

- -

- -This probepoints is only called by nfsd3_proc_create and nfsd4_open when op_claim_type is NFS4_OPEN_CLAIM_NULL. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfsd.dispatch.3stap.html b/man/probe::nfsd.dispatch.3stap.html deleted file mode 100644 index 1963285d..00000000 --- a/man/probe::nfsd.dispatch.3stap.html +++ /dev/null @@ -1,90 +0,0 @@ - -Manpage of PROBE::NFSD\&.DISPAT - -

PROBE::NFSD\&.DISPAT

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfsd.dispatch - NFS server receives an operation from client -  -

SYNOPSIS

- -

-

-nfsd.dispatch 
-
- -  -

VALUES

- -

- -proto -

-transfer protocol -
- -

- -proc -

-procedure number -
- -

- -prog -

-program number -
- -

- -version -

-nfs version -
- -

- -client_ip -

-the ip address of client -
- -

- -xid -

-transmission id -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfsd.lookup.3stap.html b/man/probe::nfsd.lookup.3stap.html deleted file mode 100644 index 1b54cf5d..00000000 --- a/man/probe::nfsd.lookup.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of PROBE::NFSD\&.LOOKUP - -

PROBE::NFSD\&.LOOKUP

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfsd.lookup - NFS server opening or searching file for a file for client -  -

SYNOPSIS

- -

-

-nfsd.lookup 
-
- -  -

VALUES

- -

- -filelen -

-the length of file name -
- -

- -filename -

-file name -
- -

- -fh -

-file handle of parent dir(the first part is the length of the file handle) -
- -

- -client_ip -

-the ip address of client -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfsd.open.3stap.html b/man/probe::nfsd.open.3stap.html deleted file mode 100644 index f4862482..00000000 --- a/man/probe::nfsd.open.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of PROBE::NFSD\&.OPEN - -

PROBE::NFSD\&.OPEN

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfsd.open - NFS server opening a file for client -  -

SYNOPSIS

- -

-

-nfsd.open 
-
- -  -

VALUES

- -

- -access -

-indicates the type of open (read/write/commit/readdir...) -
- -

- -fh -

-file handle (the first part is the length of the file handle) -
- -

- -client_ip -

-the ip address of client -
- -

- -type -

-type of file (regular file or dir) -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfsd.proc.commit.3stap.html b/man/probe::nfsd.proc.commit.3stap.html deleted file mode 100644 index 121124a0..00000000 --- a/man/probe::nfsd.proc.commit.3stap.html +++ /dev/null @@ -1,97 +0,0 @@ - -Manpage of PROBE::NFSD\&.PROC\& - -

PROBE::NFSD\&.PROC\&

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfsd.proc.commit - NFS server performing a commit operation for client -  -

SYNOPSIS

- -

-

-nfsd.proc.commit 
-
- -  -

VALUES

- -

- -count -

-read bytes -
- -

- -proto -

-transfer protocol -
- -

- -version -

-nfs version -
- -

- -size -

-read bytes -
- -

- -fh -

-file handle (the first part is the length of the file handle) -
- -

- -client_ip -

-the ip address of client -
- -

- -offset -

-the offset of file -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfsd.proc.create.3stap.html b/man/probe::nfsd.proc.create.3stap.html deleted file mode 100644 index 3f053a2f..00000000 --- a/man/probe::nfsd.proc.create.3stap.html +++ /dev/null @@ -1,90 +0,0 @@ - -Manpage of PROBE::NFSD\&.PROC\& - -

PROBE::NFSD\&.PROC\&

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfsd.proc.create - NFS server creating a file for client -  -

SYNOPSIS

- -

-

-nfsd.proc.create 
-
- -  -

VALUES

- -

- -proto -

-transfer protocol -
- -

- -version -

-nfs version -
- -

- -filelen -

-length of file name -
- -

- -filename -

-file name -
- -

- -fh -

-file handle (the first part is the length of the file handle) -
- -

- -client_ip -

-the ip address of client -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfsd.proc.lookup.3stap.html b/man/probe::nfsd.proc.lookup.3stap.html deleted file mode 100644 index 246bc6e2..00000000 --- a/man/probe::nfsd.proc.lookup.3stap.html +++ /dev/null @@ -1,90 +0,0 @@ - -Manpage of PROBE::NFSD\&.PROC\& - -

PROBE::NFSD\&.PROC\&

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfsd.proc.lookup - NFS server opening or searching for a file for client -  -

SYNOPSIS

- -

-

-nfsd.proc.lookup 
-
- -  -

VALUES

- -

- -proto -

-transfer protocol -
- -

- -filelen -

-the length of file name -
- -

- -filename -

-file name -
- -

- -fh -

-file handle of parent dir (the first part is the length of the file handle) -
- -

- -version -

-nfs version -
- -

- -client_ip -

-the ip address of client -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfsd.proc.read.3stap.html b/man/probe::nfsd.proc.read.3stap.html deleted file mode 100644 index de2b4c19..00000000 --- a/man/probe::nfsd.proc.read.3stap.html +++ /dev/null @@ -1,111 +0,0 @@ - -Manpage of PROBE::NFSD\&.PROC\& - -

PROBE::NFSD\&.PROC\&

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfsd.proc.read - NFS server reading file for client -  -

SYNOPSIS

- -

-

-nfsd.proc.read 
-
- -  -

VALUES

- -

- -vec -

-struct kvec, includes buf address in kernel address and length of each buffer -
- -

- -count -

-read bytes -
- -

- -proto -

-transfer protocol -
- -

- -fh -

-file handle (the first part is the length of the file handle) -
- -

- -version -

-nfs version -
- -

- -client_ip -

-the ip address of client -
- -

- -vlen -

-read blocks -
- -

- -offset -

-the offset of file -
- -

- -size -

-read bytes -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfsd.proc.remove.3stap.html b/man/probe::nfsd.proc.remove.3stap.html deleted file mode 100644 index 2b690f5f..00000000 --- a/man/probe::nfsd.proc.remove.3stap.html +++ /dev/null @@ -1,90 +0,0 @@ - -Manpage of PROBE::NFSD\&.PROC\& - -

PROBE::NFSD\&.PROC\&

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfsd.proc.remove - NFS server removing a file for client -  -

SYNOPSIS

- -

-

-nfsd.proc.remove 
-
- -  -

VALUES

- -

- -proto -

-transfer protocol -
- -

- -version -

-nfs version -
- -

- -filelen -

-length of file name -
- -

- -filename -

-file name -
- -

- -fh -

-file handle (the first part is the length of the file handle) -
- -

- -client_ip -

-the ip address of client -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfsd.proc.rename.3stap.html b/man/probe::nfsd.proc.rename.3stap.html deleted file mode 100644 index 1d0f1bcf..00000000 --- a/man/probe::nfsd.proc.rename.3stap.html +++ /dev/null @@ -1,97 +0,0 @@ - -Manpage of PROBE::NFSD\&.PROC\& - -

PROBE::NFSD\&.PROC\&

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfsd.proc.rename - NFS Server renaming a file for client -  -

SYNOPSIS

- -

-

-nfsd.proc.rename 
-
- -  -

VALUES

- -

- -tlen -

-length of new file name -
- -

- -flen -

-length of old file name -
- -

- -tfh -

-file handler of new path -
- -

- -filename -

-old file name -
- -

- -fh -

-file handler of old path -
- -

- -client_ip -

-the ip address of client -
- -

- -tname -

-new file name -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfsd.proc.write.3stap.html b/man/probe::nfsd.proc.write.3stap.html deleted file mode 100644 index f97da5cb..00000000 --- a/man/probe::nfsd.proc.write.3stap.html +++ /dev/null @@ -1,118 +0,0 @@ - -Manpage of PROBE::NFSD\&.PROC\& - -

PROBE::NFSD\&.PROC\&

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfsd.proc.write - NFS server writing data to file for client -  -

SYNOPSIS

- -

-

-nfsd.proc.write 
-
- -  -

VALUES

- -

- -count -

-read bytes -
- -

- -proto -

-transfer protocol -
- -

- -version -

-nfs version -
- -

- -size -

-read bytes -
- -

- -vec -

-struct kvec, includes buf address in kernel address and length of each buffer -
- -

- -client_ip -

-the ip address of client -
- -

- -fh -

-file handle (the first part is the length of the file handle) -
- -

- -vlen -

-read blocks -
- -

- -offset -

-the offset of file -
- -

- -stable -

-argp->stable -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfsd.read.3stap.html b/man/probe::nfsd.read.3stap.html deleted file mode 100644 index 510838e7..00000000 --- a/man/probe::nfsd.read.3stap.html +++ /dev/null @@ -1,104 +0,0 @@ - -Manpage of PROBE::NFSD\&.READ - -

PROBE::NFSD\&.READ

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfsd.read - NFS server reading data from a file for client -  -

SYNOPSIS

- -

-

-nfsd.read 
-
- -  -

VALUES

- -

- -count -

-read bytes -
- -

- -file -

-argument file, indicates if the file has been opened. -
- -

- -size -

-read bytes -
- -

- -vec -

-struct kvec, includes buf address in kernel address and length of each buffer -
- -

- -fh -

-file handle (the first part is the length of the file handle) -
- -

- -client_ip -

-the ip address of client -
- -

- -vlen -

-read blocks -
- -

- -offset -

-the offset of file -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfsd.rename.3stap.html b/man/probe::nfsd.rename.3stap.html deleted file mode 100644 index 9da5281d..00000000 --- a/man/probe::nfsd.rename.3stap.html +++ /dev/null @@ -1,97 +0,0 @@ - -Manpage of PROBE::NFSD\&.RENAME - -

PROBE::NFSD\&.RENAME

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfsd.rename - NFS server renaming a file for client -  -

SYNOPSIS

- -

-

-nfsd.rename 
-
- -  -

VALUES

- -

- -tlen -

-length of new file name -
- -

- -flen -

-length of old file name -
- -

- -tfh -

-file handler of new path -
- -

- -filename -

-old file name -
- -

- -fh -

-file handler of old path -
- -

- -client_ip -

-the ip address of client -
- -

- -tname -

-new file name -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfsd.unlink.3stap.html b/man/probe::nfsd.unlink.3stap.html deleted file mode 100644 index dbca89a8..00000000 --- a/man/probe::nfsd.unlink.3stap.html +++ /dev/null @@ -1,83 +0,0 @@ - -Manpage of PROBE::NFSD\&.UNLINK - -

PROBE::NFSD\&.UNLINK

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfsd.unlink - NFS server removing a file or a directory for client -  -

SYNOPSIS

- -

-

-nfsd.unlink 
-
- -  -

VALUES

- -

- -filelen -

-the length of file name -
- -

- -filename -

-file name -
- -

- -fh -

-file handle (the first part is the length of the file handle) -
- -

- -client_ip -

-the ip address of client -
- -

- -type -

-file type (file or dir) -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::nfsd.write.3stap.html b/man/probe::nfsd.write.3stap.html deleted file mode 100644 index 383e3644..00000000 --- a/man/probe::nfsd.write.3stap.html +++ /dev/null @@ -1,104 +0,0 @@ - -Manpage of PROBE::NFSD\&.WRITE - -

PROBE::NFSD\&.WRITE

-Section: Network File Storage Tapsets (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::nfsd.write - NFS server writing data to a file for client -  -

SYNOPSIS

- -

-

-nfsd.write 
-
- -  -

VALUES

- -

- -count -

-read bytes -
- -

- -file -

-argument file, indicates if the file has been opened. -
- -

- -size -

-read bytes -
- -

- -vec -

-struct kvec, includes buf address in kernel address and length of each buffer -
- -

- -fh -

-file handle (the first part is the length of the file handle) -
- -

- -client_ip -

-the ip address of client -
- -

- -vlen -

-read blocks -
- -

- -offset -

-the offset of file -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::scheduler.balance.3stap.html b/man/probe::scheduler.balance.3stap.html deleted file mode 100644 index e1dc09d0..00000000 --- a/man/probe::scheduler.balance.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of PROBE::SCHEDULER\&.B - -

PROBE::SCHEDULER\&.B

-Section: Scheduler Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::scheduler.balance - A cpu attempting to find more work. -  -

SYNOPSIS

- -

-

-scheduler.balance 
-
- -  -

VALUES

- -

- -name -

-name of the probe point -
- -  -

CONTEXT

- -

- -The cpu looking for more work. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::scheduler.cpu_off.3stap.html b/man/probe::scheduler.cpu_off.3stap.html deleted file mode 100644 index 25be42e5..00000000 --- a/man/probe::scheduler.cpu_off.3stap.html +++ /dev/null @@ -1,83 +0,0 @@ - -Manpage of PROBE::SCHEDULER\&.C - -

PROBE::SCHEDULER\&.C

-Section: Scheduler Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::scheduler.cpu_off - Process is about to stop running on a cpu -  -

SYNOPSIS

- -

-

-scheduler.cpu_off 
-
- -  -

VALUES

- -

- -task_prev -

-the process leaving the cpu (same as current) -
- -

- -name -

-name of the probe point -
- -

- -idle -

-boolean indicating whether current is the idle process -
- -

- -task_next -

-the process replacing current -
- -  -

CONTEXT

- -

- -The process leaving the cpu. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::scheduler.cpu_on.3stap.html b/man/probe::scheduler.cpu_on.3stap.html deleted file mode 100644 index 53d5d4b1..00000000 --- a/man/probe::scheduler.cpu_on.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of PROBE::SCHEDULER\&.C - -

PROBE::SCHEDULER\&.C

-Section: Scheduler Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::scheduler.cpu_on - Process is beginning execution on a cpu -  -

SYNOPSIS

- -

-

-scheduler.cpu_on 
-
- -  -

VALUES

- -

- -task_prev -

-the process that was previously running on this cpu -
- -

- -name -

-name of the probe point -
- -

- -idle -

-- boolean indicating whether current is the idle process -
- -  -

CONTEXT

- -

- -The resuming process. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::scheduler.ctxswitch.3stap.html b/man/probe::scheduler.ctxswitch.3stap.html deleted file mode 100644 index eea1e366..00000000 --- a/man/probe::scheduler.ctxswitch.3stap.html +++ /dev/null @@ -1,125 +0,0 @@ - -Manpage of PROBE::SCHEDULER\&.C - -

PROBE::SCHEDULER\&.C

-Section: Scheduler Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::scheduler.ctxswitch - A context switch is occuring. -  -

SYNOPSIS

- -

-

-scheduler.ctxswitch 
-
- -  -

VALUES

- -

- -prev_pid -

-The PID of the process to be switched out -
- -

- -name -

-name of the probe point -
- -

- -next_task_name -

-The name of the process to be switched in -
- -

- -nexttsk_state -

-the state of the process to be switched in -
- -

- -prev_priority -

-The priority of the process to be switched out -
- -

- -next_pid -

-The PID of the process to be switched in -
- -

- -next_priority -

-The priority of the process to be switched in -
- -

- -prevtsk_state -

-the state of the process to be switched out -
- -

- -next_tid -

-The TID of the process to be switched in -
- -

- -prev_task_name -

-The name of the process to be switched out -
- -

- -prev_tid -

-The TID of the process to be switched out -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::scheduler.kthread_stop.3stap.html b/man/probe::scheduler.kthread_stop.3stap.html deleted file mode 100644 index 3b07fef8..00000000 --- a/man/probe::scheduler.kthread_stop.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of PROBE::SCHEDULER\&.K - -

PROBE::SCHEDULER\&.K

-Section: Scheduler Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::scheduler.kthread_stop - A thread created by kthread_create is being stopped -  -

SYNOPSIS

- -

-

-scheduler.kthread_stop 
-
- -  -

VALUES

- -

- -thread_priority -

-priority of the thread -
- -

- -thread_pid -

-PID of the thread being stopped -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::scheduler.kthread_stop.return.3stap.html b/man/probe::scheduler.kthread_stop.return.3stap.html deleted file mode 100644 index 8b18df1c..00000000 --- a/man/probe::scheduler.kthread_stop.return.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of PROBE::SCHEDULER\&.K - -

PROBE::SCHEDULER\&.K

-Section: Scheduler Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::scheduler.kthread_stop.return - A kthread is stopped and gets the return value -  -

SYNOPSIS

- -

-

-scheduler.kthread_stop.return 
-
- -  -

VALUES

- -

- -return_value -

-return value after stopping the thread -
- -

- -name -

-name of the probe point -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::scheduler.migrate.3stap.html b/man/probe::scheduler.migrate.3stap.html deleted file mode 100644 index bdbf6ab1..00000000 --- a/man/probe::scheduler.migrate.3stap.html +++ /dev/null @@ -1,90 +0,0 @@ - -Manpage of PROBE::SCHEDULER\&.M - -

PROBE::SCHEDULER\&.M

-Section: Scheduler Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::scheduler.migrate - Task migrating across cpus -  -

SYNOPSIS

- -

-

-scheduler.migrate 
-
- -  -

VALUES

- -

- -priority -

-priority of the task being migrated -
- -

- -cpu_from -

-the original cpu -
- -

- -name -

-name of the probe point -
- -

- -task -

-the process that is being migrated -
- -

- -cpu_to -

-the destination cpu -
- -

- -pid -

-PID of the task being migrated -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::scheduler.process_exit.3stap.html b/man/probe::scheduler.process_exit.3stap.html deleted file mode 100644 index cb42e4d5..00000000 --- a/man/probe::scheduler.process_exit.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of PROBE::SCHEDULER\&.P - -

PROBE::SCHEDULER\&.P

-Section: Scheduler Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::scheduler.process_exit - Process exiting -  -

SYNOPSIS

- -

-

-scheduler.process_exit 
-
- -  -

VALUES

- -

- -priority -

-priority of the process exiting -
- -

- -name -

-name of the probe point -
- -

- -pid -

-PID of the process exiting -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::scheduler.process_fork.3stap.html b/man/probe::scheduler.process_fork.3stap.html deleted file mode 100644 index 008129b3..00000000 --- a/man/probe::scheduler.process_fork.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of PROBE::SCHEDULER\&.P - -

PROBE::SCHEDULER\&.P

-Section: Scheduler Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::scheduler.process_fork - Process forked -  -

SYNOPSIS

- -

-

-scheduler.process_fork 
-
- -  -

VALUES

- -

- -name -

-name of the probe point -
- -

- -parent_pid -

-PID of the parent process -
- -

- -child_pid -

-PID of the child process -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::scheduler.process_free.3stap.html b/man/probe::scheduler.process_free.3stap.html deleted file mode 100644 index 57e1350e..00000000 --- a/man/probe::scheduler.process_free.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of PROBE::SCHEDULER\&.P - -

PROBE::SCHEDULER\&.P

-Section: Scheduler Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::scheduler.process_free - Scheduler freeing a data structure for a process -  -

SYNOPSIS

- -

-

-scheduler.process_free 
-
- -  -

VALUES

- -

- -priority -

-priority of the process getting freed -
- -

- -name -

-name of the probe point -
- -

- -pid -

-PID of the process getting freed -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::scheduler.process_wait.3stap.html b/man/probe::scheduler.process_wait.3stap.html deleted file mode 100644 index c3454ab6..00000000 --- a/man/probe::scheduler.process_wait.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of PROBE::SCHEDULER\&.P - -

PROBE::SCHEDULER\&.P

-Section: Scheduler Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::scheduler.process_wait - Scheduler starting to wait on a process -  -

SYNOPSIS

- -

-

-scheduler.process_wait 
-
- -  -

VALUES

- -

- -name -

-name of the probe point -
- -

- -pid -

-PID of the process scheduler is waiting on -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::scheduler.signal_send.3stap.html b/man/probe::scheduler.signal_send.3stap.html deleted file mode 100644 index 67168ec8..00000000 --- a/man/probe::scheduler.signal_send.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of PROBE::SCHEDULER\&.S - -

PROBE::SCHEDULER\&.S

-Section: Scheduler Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::scheduler.signal_send - Sending a signal -  -

SYNOPSIS

- -

-

-scheduler.signal_send 
-
- -  -

VALUES

- -

- -signal_number -

-signal number -
- -

- -name -

-name of the probe point -
- -

- -pid -

-pid of the process sending signal -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::scheduler.tick.3stap.html b/man/probe::scheduler.tick.3stap.html deleted file mode 100644 index c824c1c0..00000000 --- a/man/probe::scheduler.tick.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of PROBE::SCHEDULER\&.T - -

PROBE::SCHEDULER\&.T

-Section: Scheduler Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::scheduler.tick - Schedulers internal tick, a processes timeslice accounting is updated -  -

SYNOPSIS

- -

-

-scheduler.tick 
-
- -  -

VALUES

- -

- -name -

-name of the probe point -
- -

- -idle -

-boolean indicating whether current is the idle process -
- -  -

CONTEXT

- -

- -The process whose accounting will be updated. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::scheduler.wait_task.3stap.html b/man/probe::scheduler.wait_task.3stap.html deleted file mode 100644 index 90cb2ef7..00000000 --- a/man/probe::scheduler.wait_task.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of PROBE::SCHEDULER\&.W - -

PROBE::SCHEDULER\&.W

-Section: Scheduler Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::scheduler.wait_task - Waiting on a task to unschedule (become inactive) -  -

SYNOPSIS

- -

-

-scheduler.wait_task 
-
- -  -

VALUES

- -

- -name -

-name of the probe point -
- -

- -task_pid -

-PID of the task the scheduler is waiting on -
- -

- -task_priority -

-priority of the task -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::scheduler.wakeup.3stap.html b/man/probe::scheduler.wakeup.3stap.html deleted file mode 100644 index 48a01a70..00000000 --- a/man/probe::scheduler.wakeup.3stap.html +++ /dev/null @@ -1,90 +0,0 @@ - -Manpage of PROBE::SCHEDULER\&.W - -

PROBE::SCHEDULER\&.W

-Section: Scheduler Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::scheduler.wakeup - Task is woken up -  -

SYNOPSIS

- -

-

-scheduler.wakeup 
-
- -  -

VALUES

- -

- -task_cpu -

-cpu of the task being woken up -
- -

- -name -

-name of the probe point -
- -

- -task_pid -

-PID of the task being woken up -
- -

- -task_priority -

-priority of the task being woken up -
- -

- -task_state -

-state of the task being woken up -
- -

- -task_tid -

-tid of the task being woken up -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::scheduler.wakeup_new.3stap.html b/man/probe::scheduler.wakeup_new.3stap.html deleted file mode 100644 index 4278e702..00000000 --- a/man/probe::scheduler.wakeup_new.3stap.html +++ /dev/null @@ -1,90 +0,0 @@ - -Manpage of PROBE::SCHEDULER\&.W - -

PROBE::SCHEDULER\&.W

-Section: Scheduler Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::scheduler.wakeup_new - Newly created task is woken up for the first time -  -

SYNOPSIS

- -

-

-scheduler.wakeup_new 
-
- -  -

VALUES

- -

- -task_cpu -

-cpu of the task woken up -
- -

- -name -

-name of the probe point -
- -

- -task_pid -

-PID of the new task woken up -
- -

- -task_priority -

-priority of the new task -
- -

- -task_state -

-state of the task woken up -
- -

- -task_tid -

-TID of the new task woken up -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::scsi.iocompleted.3stap.html b/man/probe::scsi.iocompleted.3stap.html deleted file mode 100644 index 8f157600..00000000 --- a/man/probe::scsi.iocompleted.3stap.html +++ /dev/null @@ -1,118 +0,0 @@ - -Manpage of PROBE::SCSI\&.IOCOMP - -

PROBE::SCSI\&.IOCOMP

-Section: SCSI Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::scsi.iocompleted - SCSI mid-layer running the completion processing for block device I/O requests -  -

SYNOPSIS

- -

-

-scsi.iocompleted 
-
- -  -

VALUES

- -

- -device_state_str -

-The current state of the device, as a string -
- -

- -dev_id -

-The scsi device id -
- -

- -channel -

-The channel number -
- -

- -data_direction -

-The data_direction specifies whether this command is from/to the device -
- -

- -lun -

-The lun number -
- -

- -host_no -

-The host number -
- -

- -data_direction_str -

-Data direction, as a string -
- -

- -device_state -

-The current state of the device -
- -

- -req_addr -

-The current struct request pointer, as a number -
- -

- -goodbytes -

-The bytes completed -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::scsi.iodispatching.3stap.html b/man/probe::scsi.iodispatching.3stap.html deleted file mode 100644 index 1b5b213d..00000000 --- a/man/probe::scsi.iodispatching.3stap.html +++ /dev/null @@ -1,125 +0,0 @@ - -Manpage of PROBE::SCSI\&.IODISP - -

PROBE::SCSI\&.IODISP

-Section: SCSI Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::scsi.iodispatching - SCSI mid-layer dispatched low-level SCSI command -  -

SYNOPSIS

- -

-

-scsi.iodispatching 
-
- -  -

VALUES

- -

- -device_state_str -

-The current state of the device, as a string -
- -

- -dev_id -

-The scsi device id -
- -

- -channel -

-The channel number -
- -

- -data_direction -

-The data_direction specifies whether this command is from/to the device 0 (DMA_BIDIRECTIONAL), 1 (DMA_TO_DEVICE), 2 (DMA_FROM_DEVICE), 3 (DMA_NONE) -
- -

- -lun -

-The lun number -
- -

- -request_bufflen -

-The request buffer length -
- -

- -host_no -

-The host number -
- -

- -device_state -

-The current state of the device -
- -

- -data_direction_str -

-Data direction, as a string -
- -

- -req_addr -

-The current struct request pointer, as a number -
- -

- -request_buffer -

-The request buffer address -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::scsi.iodone.3stap.html b/man/probe::scsi.iodone.3stap.html deleted file mode 100644 index 9c2614a6..00000000 --- a/man/probe::scsi.iodone.3stap.html +++ /dev/null @@ -1,118 +0,0 @@ - -Manpage of PROBE::SCSI\&.IODONE - -

PROBE::SCSI\&.IODONE

-Section: SCSI Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::scsi.iodone - SCSI command completed by low level driver and enqueued into the done queue. -  -

SYNOPSIS

- -

-

-scsi.iodone 
-
- -  -

VALUES

- -

- -device_state_str -

-The current state of the device, as a string -
- -

- -dev_id -

-The scsi device id -
- -

- -channel -

-The channel number -
- -

- -data_direction -

-The data_direction specifies whether this command is from/to the device. -
- -

- -lun -

-The lun number -
- -

- -host_no -

-The host number -
- -

- -data_direction_str -

-Data direction, as a string -
- -

- -device_state -

-The current state of the device -
- -

- -scsi_timer_pending -

-1 if a timer is pending on this request -
- -

- -req_addr -

-The current struct request pointer, as a number -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::scsi.ioentry.3stap.html b/man/probe::scsi.ioentry.3stap.html deleted file mode 100644 index dea8a066..00000000 --- a/man/probe::scsi.ioentry.3stap.html +++ /dev/null @@ -1,83 +0,0 @@ - -Manpage of PROBE::SCSI\&.IOENTR - -

PROBE::SCSI\&.IOENTR

-Section: SCSI Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::scsi.ioentry - Prepares a SCSI mid-layer request -  -

SYNOPSIS

- -

-

-scsi.ioentry 
-
- -  -

VALUES

- -

- -disk_major -

-The major number of the disk (-1 if no information) -
- -

- -device_state_str -

-The current state of the device, as a string -
- -

- -device_state -

-The current state of the device -
- -

- -req_addr -

-The current struct request pointer, as a number -
- -

- -disk_minor -

-The minor number of the disk (-1 if no information) -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::scsi.ioexecute.3stap.html b/man/probe::scsi.ioexecute.3stap.html deleted file mode 100644 index 103132d1..00000000 --- a/man/probe::scsi.ioexecute.3stap.html +++ /dev/null @@ -1,132 +0,0 @@ - -Manpage of PROBE::SCSI\&.IOEXEC - -

PROBE::SCSI\&.IOEXEC

-Section: SCSI Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::scsi.ioexecute - Create mid-layer SCSI request and wait for the result -  -

SYNOPSIS

- -

-

-scsi.ioexecute 
-
- -  -

VALUES

- -

- -retries -

-Number of times to retry request -
- -

- -device_state_str -

-The current state of the device, as a string -
- -

- -dev_id -

-The scsi device id -
- -

- -channel -

-The channel number -
- -

- -data_direction -

-The data_direction specifies whether this command is from/to the device. -
- -

- -lun -

-The lun number -
- -

- -timeout -

-Request timeout in seconds -
- -

- -request_bufflen -

-The data buffer buffer length -
- -

- -host_no -

-The host number -
- -

- -data_direction_str -

-Data direction, as a string -
- -

- -device_state -

-The current state of the device -
- -

- -request_buffer -

-The data buffer address -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::scsi.set_state.3stap.html b/man/probe::scsi.set_state.3stap.html deleted file mode 100644 index 94fe8749..00000000 --- a/man/probe::scsi.set_state.3stap.html +++ /dev/null @@ -1,104 +0,0 @@ - -Manpage of PROBE::SCSI\&.SET_ST - -

PROBE::SCSI\&.SET_ST

-Section: SCSI Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::scsi.set_state - Order SCSI device state change -  -

SYNOPSIS

- -

-

-scsi.set_state 
-
- -  -

VALUES

- -

- -state_str -

-The new state of the device, as a string -
- -

- -dev_id -

-The scsi device id -
- -

- -channel -

-The channel number -
- -

- -state -

-The new state of the device -
- -

- -old_state_str -

-The current state of the device, as a string -
- -

- -lun -

-The lun number -
- -

- -old_state -

-The current state of the device -
- -

- -host_no -

-The host number -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::signal.check_ignored.3stap.html b/man/probe::signal.check_ignored.3stap.html deleted file mode 100644 index 8f48c7fd..00000000 --- a/man/probe::signal.check_ignored.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of PROBE::SIGNAL\&.CHEC - -

PROBE::SIGNAL\&.CHEC

-Section: Signal Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::signal.check_ignored - Checking to see signal is ignored -  -

SYNOPSIS

- -

-

-signal.check_ignored 
-
- -  -

VALUES

- -

- -sig_name -

-A string representation of the signal -
- -

- -sig -

-The number of the signal -
- -

- -pid_name -

-Name of the process receiving the signal -
- -

- -sig_pid -

-The PID of the process receiving the signal -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::signal.check_ignored.return.3stap.html b/man/probe::signal.check_ignored.return.3stap.html deleted file mode 100644 index baf82f33..00000000 --- a/man/probe::signal.check_ignored.return.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of PROBE::SIGNAL\&.CHEC - -

PROBE::SIGNAL\&.CHEC

-Section: Signal Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::signal.check_ignored.return - Check to see signal is ignored completed -  -

SYNOPSIS

- -

-

-signal.check_ignored.return 
-
- -  -

VALUES

- -

- -retstr -

-Return value as a string -
- -

- -name -

-Name of the probe point -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::signal.checkperm.3stap.html b/man/probe::signal.checkperm.3stap.html deleted file mode 100644 index e4dd946e..00000000 --- a/man/probe::signal.checkperm.3stap.html +++ /dev/null @@ -1,104 +0,0 @@ - -Manpage of PROBE::SIGNAL\&.CHEC - -

PROBE::SIGNAL\&.CHEC

-Section: Signal Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::signal.checkperm - Check being performed on a sent signal -  -

SYNOPSIS

- -

-

-signal.checkperm 
-
- -  -

VALUES

- -

- -name -

-Name of the probe point -
- -

- -task -

-A task handle to the signal recipient -
- -

- -sinfo -

-The address of the siginfo structure -
- -

- -si_code -

-Indicates the signal type -
- -

- -sig_name -

-A string representation of the signal -
- -

- -sig -

-The number of the signal -
- -

- -pid_name -

-Name of the process receiving the signal -
- -

- -sig_pid -

-The PID of the process receiving the signal -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::signal.checkperm.return.3stap.html b/man/probe::signal.checkperm.return.3stap.html deleted file mode 100644 index 2440e22f..00000000 --- a/man/probe::signal.checkperm.return.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of PROBE::SIGNAL\&.CHEC - -

PROBE::SIGNAL\&.CHEC

-Section: Signal Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::signal.checkperm.return - Check performed on a sent signal completed -  -

SYNOPSIS

- -

-

-signal.checkperm.return 
-
- -  -

VALUES

- -

- -retstr -

-Return value as a string -
- -

- -name -

-Name of the probe point -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::signal.do_action.3stap.html b/man/probe::signal.do_action.3stap.html deleted file mode 100644 index 217acb0c..00000000 --- a/man/probe::signal.do_action.3stap.html +++ /dev/null @@ -1,97 +0,0 @@ - -Manpage of PROBE::SIGNAL\&.DO_A - -

PROBE::SIGNAL\&.DO_A

-Section: Signal Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::signal.do_action - Examining or changing a signal action -  -

SYNOPSIS

- -

-

-signal.do_action 
-
- -  -

VALUES

- -

- -sa_mask -

-The new mask of the signal -
- -

- -name -

-Name of the probe point -
- -

- -sig_name -

-A string representation of the signal -
- -

- -oldsigact_addr -

-The address of the old sigaction struct associated with the signal -
- -

- -sig -

-The signal to be examined/changed -
- -

- -sa_handler -

-The new handler of the signal -
- -

- -sigact_addr -

-The address of the new sigaction struct associated with the signal -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:18 GMT, March 20, 2013 - - diff --git a/man/probe::signal.do_action.return.3stap.html b/man/probe::signal.do_action.return.3stap.html deleted file mode 100644 index f66f5c72..00000000 --- a/man/probe::signal.do_action.return.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of PROBE::SIGNAL\&.DO_A - -

PROBE::SIGNAL\&.DO_A

-Section: Signal Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::signal.do_action.return - Examining or changing a signal action completed -  -

SYNOPSIS

- -

-

-signal.do_action.return 
-
- -  -

VALUES

- -

- -retstr -

-Return value as a string -
- -

- -name -

-Name of the probe point -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::signal.flush.3stap.html b/man/probe::signal.flush.3stap.html deleted file mode 100644 index 03015aac..00000000 --- a/man/probe::signal.flush.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of PROBE::SIGNAL\&.FLUS - -

PROBE::SIGNAL\&.FLUS

-Section: Signal Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::signal.flush - Flushing all pending signals for a task -  -

SYNOPSIS

- -

-

-signal.flush 
-
- -  -

VALUES

- -

- -name -

-Name of the probe point -
- -

- -task -

-The task handler of the process performing the flush -
- -

- -pid_name -

-The name of the process associated with the task performing the flush -
- -

- -sig_pid -

-The PID of the process associated with the task performing the flush -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::signal.force_segv.3stap.html b/man/probe::signal.force_segv.3stap.html deleted file mode 100644 index 10508f1b..00000000 --- a/man/probe::signal.force_segv.3stap.html +++ /dev/null @@ -1,83 +0,0 @@ - -Manpage of PROBE::SIGNAL\&.FORC - -

PROBE::SIGNAL\&.FORC

-Section: Signal Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::signal.force_segv - Forcing send of SIGSEGV -  -

SYNOPSIS

- -

-

-signal.force_segv 
-
- -  -

VALUES

- -

- -name -

-Name of the probe point -
- -

- -sig_name -

-A string representation of the signal -
- -

- -sig -

-The number of the signal -
- -

- -pid_name -

-Name of the process receiving the signal -
- -

- -sig_pid -

-The PID of the process receiving the signal -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::signal.force_segv.return.3stap.html b/man/probe::signal.force_segv.return.3stap.html deleted file mode 100644 index 96def20e..00000000 --- a/man/probe::signal.force_segv.return.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of PROBE::SIGNAL\&.FORC - -

PROBE::SIGNAL\&.FORC

-Section: Signal Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::signal.force_segv.return - Forcing send of SIGSEGV complete -  -

SYNOPSIS

- -

-

-signal.force_segv.return 
-
- -  -

VALUES

- -

- -retstr -

-Return value as a string -
- -

- -name -

-Name of the probe point -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::signal.handle.3stap.html b/man/probe::signal.handle.3stap.html deleted file mode 100644 index 0d73566f..00000000 --- a/man/probe::signal.handle.3stap.html +++ /dev/null @@ -1,111 +0,0 @@ - -Manpage of PROBE::SIGNAL\&.HAND - -

PROBE::SIGNAL\&.HAND

-Section: Signal Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::signal.handle - Signal handler being invoked -  -

SYNOPSIS

- -

-

-signal.handle 
-
- -  -

VALUES

- -

- -regs -

-The address of the kernel-mode stack area (deprecated in SystemTap 2.1) -
- -

- -sig_code -

-The si_code value of the siginfo signal -
- -

- -name -

-Name of the probe point -
- -

- -sig_mode -

-Indicates whether the signal was a user-mode or kernel-mode signal -
- -

- -sinfo -

-The address of the siginfo table -
- -

- -sig_name -

-A string representation of the signal -
- -

- -oldset_addr -

-The address of the bitmask array of blocked signals (deprecated in SystemTap 2.1) -
- -

- -sig -

-The signal number that invoked the signal handler -
- -

- -ka_addr -

-The address of the k_sigaction table associated with the signal -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::signal.handle.return.3stap.html b/man/probe::signal.handle.return.3stap.html deleted file mode 100644 index 70c142e5..00000000 --- a/man/probe::signal.handle.return.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of PROBE::SIGNAL\&.HAND - -

PROBE::SIGNAL\&.HAND

-Section: Signal Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::signal.handle.return - Signal handler invocation completed -  -

SYNOPSIS

- -

-

-signal.handle.return 
-
- -  -

VALUES

- -

- -retstr -

-Return value as a string -
- -

- -name -

-Name of the probe point -
- -  -

DESCRIPTION

- -

- -(deprecated in SystemTap 2.1) -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::signal.pending.3stap.html b/man/probe::signal.pending.3stap.html deleted file mode 100644 index 38dce5f5..00000000 --- a/man/probe::signal.pending.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of PROBE::SIGNAL\&.PEND - -

PROBE::SIGNAL\&.PEND

-Section: Signal Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::signal.pending - Examining pending signal -  -

SYNOPSIS

- -

-

-signal.pending 
-
- -  -

VALUES

- -

- -name -

-Name of the probe point -
- -

- -sigset_size -

-The size of the user-space signal set -
- -

- -sigset_add -

-The address of the user-space signal set (sigset_t) -
- -  -

DESCRIPTION

- -

- -This probe is used to examine a set of signals pending for delivery to a specific thread. This normally occurs when the do_sigpending kernel function is executed. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::signal.pending.return.3stap.html b/man/probe::signal.pending.return.3stap.html deleted file mode 100644 index 3f0dd006..00000000 --- a/man/probe::signal.pending.return.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of PROBE::SIGNAL\&.PEND - -

PROBE::SIGNAL\&.PEND

-Section: Signal Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::signal.pending.return - Examination of pending signal completed -  -

SYNOPSIS

- -

-

-signal.pending.return 
-
- -  -

VALUES

- -

- -retstr -

-Return value as a string -
- -

- -name -

-Name of the probe point -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::signal.procmask.3stap.html b/man/probe::signal.procmask.3stap.html deleted file mode 100644 index e5336f43..00000000 --- a/man/probe::signal.procmask.3stap.html +++ /dev/null @@ -1,83 +0,0 @@ - -Manpage of PROBE::SIGNAL\&.PROC - -

PROBE::SIGNAL\&.PROC

-Section: Signal Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::signal.procmask - Examining or changing blocked signals -  -

SYNOPSIS

- -

-

-signal.procmask 
-
- -  -

VALUES

- -

- -how -

-Indicates how to change the blocked signals; possible values are SIG_BLOCK=0 (for blocking signals), SIG_UNBLOCK=1 (for unblocking signals), and SIG_SETMASK=2 for setting the signal mask. -
- -

- -name -

-Name of the probe point -
- -

- -oldsigset_addr -

-The old address of the signal set (sigset_t) -
- -

- -sigset -

-The actual value to be set for sigset_t (correct?) -
- -

- -sigset_addr -

-The address of the signal set (sigset_t) to be implemented -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::signal.procmask.return.3stap.html b/man/probe::signal.procmask.return.3stap.html deleted file mode 100644 index 71948e8e..00000000 --- a/man/probe::signal.procmask.return.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of PROBE::SIGNAL\&.PROC - -

PROBE::SIGNAL\&.PROC

-Section: Signal Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::signal.procmask.return - Examining or changing blocked signals completed -  -

SYNOPSIS

- -

-

-signal.procmask.return 
-
- -  -

VALUES

- -

- -retstr -

-Return value as a string -
- -

- -name -

-Name of the probe point -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::signal.send.3stap.html b/man/probe::signal.send.3stap.html deleted file mode 100644 index 0e2c84f6..00000000 --- a/man/probe::signal.send.3stap.html +++ /dev/null @@ -1,125 +0,0 @@ - -Manpage of PROBE::SIGNAL\&.SEND - -

PROBE::SIGNAL\&.SEND

-Section: Signal Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::signal.send - Signal being sent to a process -  -

SYNOPSIS

- -

-

-signal.send 
-
- -  -

VALUES

- -

- -send2queue -

-Indicates whether the signal is sent to an existing sigqueue (deprecated in SystemTap 2.1) -
- -

- -name -

-The name of the function used to send out the signal -
- -

- -task -

-A task handle to the signal recipient -
- -

- -sinfo -

-The address of siginfo struct -
- -

- -si_code -

-Indicates the signal type -
- -

- -sig_name -

-A string representation of the signal -
- -

- -sig -

-The number of the signal -
- -

- -shared -

-Indicates whether the signal is shared by the thread group -
- -

- -sig_pid -

-The PID of the process receiving the signal -
- -

- -pid_name -

-The name of the signal recipient -
- -  -

CONTEXT

- -

- -The signal's sender. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::signal.send.return.3stap.html b/man/probe::signal.send.return.3stap.html deleted file mode 100644 index b35a4322..00000000 --- a/man/probe::signal.send.return.3stap.html +++ /dev/null @@ -1,109 +0,0 @@ - -Manpage of PROBE::SIGNAL\&.SEND - -

PROBE::SIGNAL\&.SEND

-Section: Signal Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::signal.send.return - Signal being sent to a process completed (deprecated in SystemTap 2.1) -  -

SYNOPSIS

- -

-

-signal.send.return 
-
- -  -

VALUES

- -

- -retstr -

-The return value to either __group_send_sig_info, specific_send_sig_info, or send_sigqueue -
- -

- -send2queue -

-Indicates whether the sent signal was sent to an existing sigqueue -
- -

- -name -

-The name of the function used to send out the signal -
- -

- -shared -

-Indicates whether the sent signal is shared by the thread group. -
- -  -

CONTEXT

- -

- -The signal's sender. (correct?) -  -

DESCRIPTION

- -

- -Possible __group_send_sig_info and specific_send_sig_info return values are as follows; -

- -0 -- The signal is successfully sent to a process, which means that, (1) the signal was ignored by the receiving process, (2) this is a non-RT signal and the system already has one queued, and (3) the signal was successfully added to the sigqueue of the receiving process. -

- --EAGAIN -- The sigqueue of the receiving process is overflowing, the signal was RT, and the signal was sent by a user using something other than -kill. -

- -Possible send_group_sigqueue and send_sigqueue return values are as follows; -

- -0 -- The signal was either successfully added into the sigqueue of the receiving process, or a SI_TIMER entry is already queued (in which case, the overrun count will be simply incremented). -

- -1 -- The signal was ignored by the receiving process. -

- --1 -- (send_sigqueue only) The task was marked exiting, allowing * posix_timer_event to redirect it to the group leader. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::signal.send_sig_queue.3stap.html b/man/probe::signal.send_sig_queue.3stap.html deleted file mode 100644 index e048378a..00000000 --- a/man/probe::signal.send_sig_queue.3stap.html +++ /dev/null @@ -1,90 +0,0 @@ - -Manpage of PROBE::SIGNAL\&.SEND - -

PROBE::SIGNAL\&.SEND

-Section: Signal Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::signal.send_sig_queue - Queuing a signal to a process -  -

SYNOPSIS

- -

-

-signal.send_sig_queue 
-
- -  -

VALUES

- -

- -sigqueue_addr -

-The address of the signal queue -
- -

- -name -

-Name of the probe point -
- -

- -sig_name -

-A string representation of the signal -
- -

- -sig -

-The queued signal -
- -

- -pid_name -

-Name of the process to which the signal is queued -
- -

- -sig_pid -

-The PID of the process to which the signal is queued -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::signal.send_sig_queue.return.3stap.html b/man/probe::signal.send_sig_queue.return.3stap.html deleted file mode 100644 index 68fa0f39..00000000 --- a/man/probe::signal.send_sig_queue.return.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of PROBE::SIGNAL\&.SEND - -

PROBE::SIGNAL\&.SEND

-Section: Signal Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::signal.send_sig_queue.return - Queuing a signal to a process completed -  -

SYNOPSIS

- -

-

-signal.send_sig_queue.return 
-
- -  -

VALUES

- -

- -retstr -

-Return value as a string -
- -

- -name -

-Name of the probe point -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::signal.sys_tgkill.3stap.html b/man/probe::signal.sys_tgkill.3stap.html deleted file mode 100644 index bc9ae99c..00000000 --- a/man/probe::signal.sys_tgkill.3stap.html +++ /dev/null @@ -1,97 +0,0 @@ - -Manpage of PROBE::SIGNAL\&.SYS_ - -

PROBE::SIGNAL\&.SYS_

-Section: Signal Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::signal.sys_tgkill - Sending kill signal to a thread group -  -

SYNOPSIS

- -

-

-signal.sys_tgkill 
-
- -  -

VALUES

- -

- -name -

-Name of the probe point -
- -

- -sig_name -

-A string representation of the signal -
- -

- -sig -

-The specific kill signal sent to the process -
- -

- -tgid -

-The thread group ID of the thread receiving the kill signal -
- -

- -pid_name -

-The name of the signal recipient -
- -

- -sig_pid -

-The PID of the thread receiving the kill signal -
- -  -

DESCRIPTION

- -

- -The tgkill call is similar to tkill, except that it also allows the caller to specify the thread group ID of the thread to be signalled. This protects against TID reuse. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::signal.sys_tgkill.return.3stap.html b/man/probe::signal.sys_tgkill.return.3stap.html deleted file mode 100644 index f47a171d..00000000 --- a/man/probe::signal.sys_tgkill.return.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of PROBE::SIGNAL\&.SYS_ - -

PROBE::SIGNAL\&.SYS_

-Section: Signal Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::signal.sys_tgkill.return - Sending kill signal to a thread group completed -  -

SYNOPSIS

- -

-

-signal.sys_tgkill.return 
-
- -  -

VALUES

- -

- -retstr -

-The return value to either __group_send_sig_info, -
- -

- -name -

-Name of the probe point -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::signal.sys_tkill.3stap.html b/man/probe::signal.sys_tkill.3stap.html deleted file mode 100644 index b62b5063..00000000 --- a/man/probe::signal.sys_tkill.3stap.html +++ /dev/null @@ -1,90 +0,0 @@ - -Manpage of PROBE::SIGNAL\&.SYS_ - -

PROBE::SIGNAL\&.SYS_

-Section: Signal Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::signal.sys_tkill - Sending a kill signal to a thread -  -

SYNOPSIS

- -

-

-signal.sys_tkill 
-
- -  -

VALUES

- -

- -name -

-Name of the probe point -
- -

- -sig_name -

-A string representation of the signal -
- -

- -sig -

-The specific signal sent to the process -
- -

- -pid_name -

-The name of the signal recipient -
- -

- -sig_pid -

-The PID of the process receiving the kill signal -
- -  -

DESCRIPTION

- -

- -The tkill call is analogous to kill(2), except that it also allows a process within a specific thread group to be targeted. Such processes are targeted through their unique thread IDs (TID). -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::signal.syskill.3stap.html b/man/probe::signal.syskill.3stap.html deleted file mode 100644 index 44f5369f..00000000 --- a/man/probe::signal.syskill.3stap.html +++ /dev/null @@ -1,83 +0,0 @@ - -Manpage of PROBE::SIGNAL\&.SYSK - -

PROBE::SIGNAL\&.SYSK

-Section: Signal Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::signal.syskill - Sending kill signal to a process -  -

SYNOPSIS

- -

-

-signal.syskill 
-
- -  -

VALUES

- -

- -name -

-Name of the probe point -
- -

- -sig_name -

-A string representation of the signal -
- -

- -sig -

-The specific signal sent to the process -
- -

- -pid_name -

-The name of the signal recipient -
- -

- -sig_pid -

-The PID of the process receiving the signal -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::signal.syskill.return.3stap.html b/man/probe::signal.syskill.return.3stap.html deleted file mode 100644 index 8227ebf3..00000000 --- a/man/probe::signal.syskill.return.3stap.html +++ /dev/null @@ -1,51 +0,0 @@ - -Manpage of PROBE::SIGNAL\&.SYSK - -

PROBE::SIGNAL\&.SYSK

-Section: Signal Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::signal.syskill.return - Sending kill signal completed -  -

SYNOPSIS

- -

-

-signal.syskill.return 
-
- -  -

VALUES

- -

- -None -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::signal.systkill.return.3stap.html b/man/probe::signal.systkill.return.3stap.html deleted file mode 100644 index 965fb7b9..00000000 --- a/man/probe::signal.systkill.return.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of PROBE::SIGNAL\&.SYST - -

PROBE::SIGNAL\&.SYST

-Section: Signal Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::signal.systkill.return - Sending kill signal to a thread completed -  -

SYNOPSIS

- -

-

-signal.systkill.return 
-
- -  -

VALUES

- -

- -retstr -

-The return value to either __group_send_sig_info, -
- -

- -name -

-Name of the probe point -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::signal.wakeup.3stap.html b/man/probe::signal.wakeup.3stap.html deleted file mode 100644 index 2e5a603c..00000000 --- a/man/probe::signal.wakeup.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of PROBE::SIGNAL\&.WAKE - -

PROBE::SIGNAL\&.WAKE

-Section: Signal Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::signal.wakeup - Sleeping process being wakened for signal -  -

SYNOPSIS

- -

-

-signal.wakeup 
-
- -  -

VALUES

- -

- -resume -

-Indicates whether to wake up a task in a STOPPED or TRACED state -
- -

- -state_mask -

-A string representation indicating the mask of task states to wake. Possible values are TASK_INTERRUPTIBLE, TASK_STOPPED, TASK_TRACED, TASK_WAKEKILL, and TASK_INTERRUPTIBLE. -
- -

- -pid_name -

-Name of the process to wake -
- -

- -sig_pid -

-The PID of the process to wake -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::socket.aio_read.3stap.html b/man/probe::socket.aio_read.3stap.html deleted file mode 100644 index 5ac69cdb..00000000 --- a/man/probe::socket.aio_read.3stap.html +++ /dev/null @@ -1,113 +0,0 @@ - -Manpage of PROBE::SOCKET\&.AIO_ - -

PROBE::SOCKET\&.AIO_

-Section: Socket Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::socket.aio_read - Receiving message via sock_aio_read -  -

SYNOPSIS

- -

-

-socket.aio_read 
-
- -  -

VALUES

- -

- -protocol -

-Protocol value -
- -

- -flags -

-Socket flags value -
- -

- -name -

-Name of this probe -
- -

- -state -

-Socket state value -
- -

- -size -

-Message size in bytes -
- -

- -type -

-Socket type value -
- -

- -family -

-Protocol family value -
- -  -

CONTEXT

- -

- -The message sender -  -

DESCRIPTION

- -

- -Fires at the beginning of receiving a message on a socket via the -sock_aio_read -function -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::socket.aio_read.return.3stap.html b/man/probe::socket.aio_read.return.3stap.html deleted file mode 100644 index f6febfe6..00000000 --- a/man/probe::socket.aio_read.return.3stap.html +++ /dev/null @@ -1,120 +0,0 @@ - -Manpage of PROBE::SOCKET\&.AIO_ - -

PROBE::SOCKET\&.AIO_

-Section: Socket Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::socket.aio_read.return - Conclusion of message received via sock_aio_read -  -

SYNOPSIS

- -

-

-socket.aio_read.return 
-
- -  -

VALUES

- -

- -success -

-Was receive successful? (1 = yes, 0 = no) -
- -

- -protocol -

-Protocol value -
- -

- -flags -

-Socket flags value -
- -

- -name -

-Name of this probe -
- -

- -state -

-Socket state value -
- -

- -size -

-Size of message received (in bytes) or error code if success = 0 -
- -

- -type -

-Socket type value -
- -

- -family -

-Protocol family value -
- -  -

CONTEXT

- -

- -The message receiver. -  -

DESCRIPTION

- -

- -Fires at the conclusion of receiving a message on a socket via the -sock_aio_read -function -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::socket.aio_write.3stap.html b/man/probe::socket.aio_write.3stap.html deleted file mode 100644 index 15ee264c..00000000 --- a/man/probe::socket.aio_write.3stap.html +++ /dev/null @@ -1,113 +0,0 @@ - -Manpage of PROBE::SOCKET\&.AIO_ - -

PROBE::SOCKET\&.AIO_

-Section: Socket Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::socket.aio_write - Message send via sock_aio_write -  -

SYNOPSIS

- -

-

-socket.aio_write 
-
- -  -

VALUES

- -

- -protocol -

-Protocol value -
- -

- -flags -

-Socket flags value -
- -

- -name -

-Name of this probe -
- -

- -state -

-Socket state value -
- -

- -size -

-Message size in bytes -
- -

- -type -

-Socket type value -
- -

- -family -

-Protocol family value -
- -  -

CONTEXT

- -

- -The message sender -  -

DESCRIPTION

- -

- -Fires at the beginning of sending a message on a socket via the -sock_aio_write -function -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::socket.aio_write.return.3stap.html b/man/probe::socket.aio_write.return.3stap.html deleted file mode 100644 index ceadbb43..00000000 --- a/man/probe::socket.aio_write.return.3stap.html +++ /dev/null @@ -1,120 +0,0 @@ - -Manpage of PROBE::SOCKET\&.AIO_ - -

PROBE::SOCKET\&.AIO_

-Section: Socket Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::socket.aio_write.return - Conclusion of message send via sock_aio_write -  -

SYNOPSIS

- -

-

-socket.aio_write.return 
-
- -  -

VALUES

- -

- -success -

-Was receive successful? (1 = yes, 0 = no) -
- -

- -protocol -

-Protocol value -
- -

- -flags -

-Socket flags value -
- -

- -name -

-Name of this probe -
- -

- -state -

-Socket state value -
- -

- -size -

-Size of message received (in bytes) or error code if success = 0 -
- -

- -type -

-Socket type value -
- -

- -family -

-Protocol family value -
- -  -

CONTEXT

- -

- -The message receiver. -  -

DESCRIPTION

- -

- -Fires at the conclusion of sending a message on a socket via the -sock_aio_write -function -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::socket.close.3stap.html b/man/probe::socket.close.3stap.html deleted file mode 100644 index b06a0442..00000000 --- a/man/probe::socket.close.3stap.html +++ /dev/null @@ -1,104 +0,0 @@ - -Manpage of PROBE::SOCKET\&.CLOS - -

PROBE::SOCKET\&.CLOS

-Section: Socket Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::socket.close - Close a socket -  -

SYNOPSIS

- -

-

-socket.close 
-
- -  -

VALUES

- -

- -protocol -

-Protocol value -
- -

- -flags -

-Socket flags value -
- -

- -name -

-Name of this probe -
- -

- -state -

-Socket state value -
- -

- -type -

-Socket type value -
- -

- -family -

-Protocol family value -
- -  -

CONTEXT

- -

- -The requester (user process or kernel) -  -

DESCRIPTION

- -

- -Fires at the beginning of closing a socket. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::socket.close.return.3stap.html b/man/probe::socket.close.return.3stap.html deleted file mode 100644 index 919e366b..00000000 --- a/man/probe::socket.close.return.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of PROBE::SOCKET\&.CLOS - -

PROBE::SOCKET\&.CLOS

-Section: Socket Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::socket.close.return - Return from closing a socket -  -

SYNOPSIS

- -

-

-socket.close.return 
-
- -  -

VALUES

- -

- -name -

-Name of this probe -
- -  -

CONTEXT

- -

- -The requester (user process or kernel) -  -

DESCRIPTION

- -

- -Fires at the conclusion of closing a socket. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::socket.create.3stap.html b/man/probe::socket.create.3stap.html deleted file mode 100644 index abe8957c..00000000 --- a/man/probe::socket.create.3stap.html +++ /dev/null @@ -1,97 +0,0 @@ - -Manpage of PROBE::SOCKET\&.CREA - -

PROBE::SOCKET\&.CREA

-Section: Socket Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::socket.create - Creation of a socket -  -

SYNOPSIS

- -

-

-socket.create 
-
- -  -

VALUES

- -

- -protocol -

-Protocol value -
- -

- -name -

-Name of this probe -
- -

- -requester -

-Requested by user process or the kernel (1 = kernel, 0 = user) -
- -

- -type -

-Socket type value -
- -

- -family -

-Protocol family value -
- -  -

CONTEXT

- -

- -The requester (see requester variable) -  -

DESCRIPTION

- -

- -Fires at the beginning of creating a socket. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::socket.create.return.3stap.html b/man/probe::socket.create.return.3stap.html deleted file mode 100644 index 7df70ae5..00000000 --- a/man/probe::socket.create.return.3stap.html +++ /dev/null @@ -1,111 +0,0 @@ - -Manpage of PROBE::SOCKET\&.CREA - -

PROBE::SOCKET\&.CREA

-Section: Socket Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::socket.create.return - Return from Creation of a socket -  -

SYNOPSIS

- -

-

-socket.create.return 
-
- -  -

VALUES

- -

- -success -

-Was socket creation successful? (1 = yes, 0 = no) -
- -

- -protocol -

-Protocol value -
- -

- -err -

-Error code if success == 0 -
- -

- -name -

-Name of this probe -
- -

- -requester -

-Requested by user process or the kernel (1 = kernel, 0 = user) -
- -

- -type -

-Socket type value -
- -

- -family -

-Protocol family value -
- -  -

CONTEXT

- -

- -The requester (user process or kernel) -  -

DESCRIPTION

- -

- -Fires at the conclusion of creating a socket. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::socket.readv.3stap.html b/man/probe::socket.readv.3stap.html deleted file mode 100644 index 1e4f16ae..00000000 --- a/man/probe::socket.readv.3stap.html +++ /dev/null @@ -1,113 +0,0 @@ - -Manpage of PROBE::SOCKET\&.READ - -

PROBE::SOCKET\&.READ

-Section: Socket Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::socket.readv - Receiving a message via sock_readv -  -

SYNOPSIS

- -

-

-socket.readv 
-
- -  -

VALUES

- -

- -protocol -

-Protocol value -
- -

- -flags -

-Socket flags value -
- -

- -name -

-Name of this probe -
- -

- -state -

-Socket state value -
- -

- -size -

-Message size in bytes -
- -

- -type -

-Socket type value -
- -

- -family -

-Protocol family value -
- -  -

CONTEXT

- -

- -The message sender -  -

DESCRIPTION

- -

- -Fires at the beginning of receiving a message on a socket via the -sock_readv -function -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::socket.readv.return.3stap.html b/man/probe::socket.readv.return.3stap.html deleted file mode 100644 index 3f671648..00000000 --- a/man/probe::socket.readv.return.3stap.html +++ /dev/null @@ -1,120 +0,0 @@ - -Manpage of PROBE::SOCKET\&.READ - -

PROBE::SOCKET\&.READ

-Section: Socket Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::socket.readv.return - Conclusion of receiving a message via sock_readv -  -

SYNOPSIS

- -

-

-socket.readv.return 
-
- -  -

VALUES

- -

- -success -

-Was receive successful? (1 = yes, 0 = no) -
- -

- -protocol -

-Protocol value -
- -

- -flags -

-Socket flags value -
- -

- -name -

-Name of this probe -
- -

- -state -

-Socket state value -
- -

- -size -

-Size of message received (in bytes) or error code if success = 0 -
- -

- -type -

-Socket type value -
- -

- -family -

-Protocol family value -
- -  -

CONTEXT

- -

- -The message receiver. -  -

DESCRIPTION

- -

- -Fires at the conclusion of receiving a message on a socket via the -sock_readv -function -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::socket.receive.3stap.html b/man/probe::socket.receive.3stap.html deleted file mode 100644 index ed5e595a..00000000 --- a/man/probe::socket.receive.3stap.html +++ /dev/null @@ -1,111 +0,0 @@ - -Manpage of PROBE::SOCKET\&.RECE - -

PROBE::SOCKET\&.RECE

-Section: Socket Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::socket.receive - Message received on a socket. -  -

SYNOPSIS

- -

-

-socket.receive 
-
- -  -

VALUES

- -

- -success -

-Was send successful? (1 = yes, 0 = no) -
- -

- -protocol -

-Protocol value -
- -

- -flags -

-Socket flags value -
- -

- -name -

-Name of this probe -
- -

- -state -

-Socket state value -
- -

- -size -

-Size of message received (in bytes) or error code if success = 0 -
- -

- -type -

-Socket type value -
- -

- -family -

-Protocol family value -
- -  -

CONTEXT

- -

- -The message receiver -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::socket.recvmsg.3stap.html b/man/probe::socket.recvmsg.3stap.html deleted file mode 100644 index fd9dbde9..00000000 --- a/man/probe::socket.recvmsg.3stap.html +++ /dev/null @@ -1,113 +0,0 @@ - -Manpage of PROBE::SOCKET\&.RECV - -

PROBE::SOCKET\&.RECV

-Section: Socket Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::socket.recvmsg - Message being received on socket -  -

SYNOPSIS

- -

-

-socket.recvmsg 
-
- -  -

VALUES

- -

- -protocol -

-Protocol value -
- -

- -flags -

-Socket flags value -
- -

- -name -

-Name of this probe -
- -

- -state -

-Socket state value -
- -

- -size -

-Message size in bytes -
- -

- -type -

-Socket type value -
- -

- -family -

-Protocol family value -
- -  -

CONTEXT

- -

- -The message receiver. -  -

DESCRIPTION

- -

- -Fires at the beginning of receiving a message on a socket via the -sock_recvmsg -function -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::socket.recvmsg.return.3stap.html b/man/probe::socket.recvmsg.return.3stap.html deleted file mode 100644 index 1a728c63..00000000 --- a/man/probe::socket.recvmsg.return.3stap.html +++ /dev/null @@ -1,120 +0,0 @@ - -Manpage of PROBE::SOCKET\&.RECV - -

PROBE::SOCKET\&.RECV

-Section: Socket Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::socket.recvmsg.return - Return from Message being received on socket -  -

SYNOPSIS

- -

-

-socket.recvmsg.return 
-
- -  -

VALUES

- -

- -success -

-Was receive successful? (1 = yes, 0 = no) -
- -

- -protocol -

-Protocol value -
- -

- -flags -

-Socket flags value -
- -

- -name -

-Name of this probe -
- -

- -state -

-Socket state value -
- -

- -size -

-Size of message received (in bytes) or error code if success = 0 -
- -

- -type -

-Socket type value -
- -

- -family -

-Protocol family value -
- -  -

CONTEXT

- -

- -The message receiver. -  -

DESCRIPTION

- -

- -Fires at the conclusion of receiving a message on a socket via the -sock_recvmsg -function. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::socket.send.3stap.html b/man/probe::socket.send.3stap.html deleted file mode 100644 index 3b2a0d0c..00000000 --- a/man/probe::socket.send.3stap.html +++ /dev/null @@ -1,111 +0,0 @@ - -Manpage of PROBE::SOCKET\&.SEND - -

PROBE::SOCKET\&.SEND

-Section: Socket Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::socket.send - Message sent on a socket. -  -

SYNOPSIS

- -

-

-socket.send 
-
- -  -

VALUES

- -

- -success -

-Was send successful? (1 = yes, 0 = no) -
- -

- -protocol -

-Protocol value -
- -

- -flags -

-Socket flags value -
- -

- -name -

-Name of this probe -
- -

- -state -

-Socket state value -
- -

- -size -

-Size of message sent (in bytes) or error code if success = 0 -
- -

- -type -

-Socket type value -
- -

- -family -

-Protocol family value -
- -  -

CONTEXT

- -

- -The message sender -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::socket.sendmsg.3stap.html b/man/probe::socket.sendmsg.3stap.html deleted file mode 100644 index cd633fa9..00000000 --- a/man/probe::socket.sendmsg.3stap.html +++ /dev/null @@ -1,113 +0,0 @@ - -Manpage of PROBE::SOCKET\&.SEND - -

PROBE::SOCKET\&.SEND

-Section: Socket Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::socket.sendmsg - Message is currently being sent on a socket. -  -

SYNOPSIS

- -

-

-socket.sendmsg 
-
- -  -

VALUES

- -

- -protocol -

-Protocol value -
- -

- -flags -

-Socket flags value -
- -

- -name -

-Name of this probe -
- -

- -state -

-Socket state value -
- -

- -size -

-Message size in bytes -
- -

- -type -

-Socket type value -
- -

- -family -

-Protocol family value -
- -  -

CONTEXT

- -

- -The message sender -  -

DESCRIPTION

- -

- -Fires at the beginning of sending a message on a socket via the -sock_sendmsg -function -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::socket.sendmsg.return.3stap.html b/man/probe::socket.sendmsg.return.3stap.html deleted file mode 100644 index 5921aa7b..00000000 --- a/man/probe::socket.sendmsg.return.3stap.html +++ /dev/null @@ -1,120 +0,0 @@ - -Manpage of PROBE::SOCKET\&.SEND - -

PROBE::SOCKET\&.SEND

-Section: Socket Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::socket.sendmsg.return - Return from socket.sendmsg. -  -

SYNOPSIS

- -

-

-socket.sendmsg.return 
-
- -  -

VALUES

- -

- -success -

-Was send successful? (1 = yes, 0 = no) -
- -

- -protocol -

-Protocol value -
- -

- -flags -

-Socket flags value -
- -

- -name -

-Name of this probe -
- -

- -state -

-Socket state value -
- -

- -size -

-Size of message sent (in bytes) or error code if success = 0 -
- -

- -type -

-Socket type value -
- -

- -family -

-Protocol family value -
- -  -

CONTEXT

- -

- -The message sender. -  -

DESCRIPTION

- -

- -Fires at the conclusion of sending a message on a socket via the -sock_sendmsg -function -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::socket.writev.3stap.html b/man/probe::socket.writev.3stap.html deleted file mode 100644 index 6628de0b..00000000 --- a/man/probe::socket.writev.3stap.html +++ /dev/null @@ -1,113 +0,0 @@ - -Manpage of PROBE::SOCKET\&.WRIT - -

PROBE::SOCKET\&.WRIT

-Section: Socket Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::socket.writev - Message sent via socket_writev -  -

SYNOPSIS

- -

-

-socket.writev 
-
- -  -

VALUES

- -

- -protocol -

-Protocol value -
- -

- -flags -

-Socket flags value -
- -

- -name -

-Name of this probe -
- -

- -state -

-Socket state value -
- -

- -size -

-Message size in bytes -
- -

- -type -

-Socket type value -
- -

- -family -

-Protocol family value -
- -  -

CONTEXT

- -

- -The message sender -  -

DESCRIPTION

- -

- -Fires at the beginning of sending a message on a socket via the -sock_writev -function -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::socket.writev.return.3stap.html b/man/probe::socket.writev.return.3stap.html deleted file mode 100644 index a0908d2e..00000000 --- a/man/probe::socket.writev.return.3stap.html +++ /dev/null @@ -1,120 +0,0 @@ - -Manpage of PROBE::SOCKET\&.WRIT - -

PROBE::SOCKET\&.WRIT

-Section: Socket Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::socket.writev.return - Conclusion of message sent via socket_writev -  -

SYNOPSIS

- -

-

-socket.writev.return 
-
- -  -

VALUES

- -

- -success -

-Was send successful? (1 = yes, 0 = no) -
- -

- -protocol -

-Protocol value -
- -

- -flags -

-Socket flags value -
- -

- -name -

-Name of this probe -
- -

- -state -

-Socket state value -
- -

- -size -

-Size of message sent (in bytes) or error code if success = 0 -
- -

- -type -

-Socket type value -
- -

- -family -

-Protocol family value -
- -  -

CONTEXT

- -

- -The message receiver. -  -

DESCRIPTION

- -

- -Fires at the conclusion of sending a message on a socket via the -sock_writev -function -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::softirq.entry.3stap.html b/man/probe::softirq.entry.3stap.html deleted file mode 100644 index b00ee1e4..00000000 --- a/man/probe::softirq.entry.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of PROBE::SOFTIRQ\&.ENT - -

PROBE::SOFTIRQ\&.ENT

-Section: Interrupt Request (IRQ) Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::softirq.entry - Execution of handler for a pending softirq starting -  -

SYNOPSIS

- -

-

-softirq.entry 
-
- -  -

VALUES

- -

- -vec -

-softirq_action vector -
- -

- -h -

-struct softirq_action* for current pending softirq -
- -

- -vec_nr -

-softirq vector number -
- -

- -action -

-pointer to softirq handler just about to execute -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::softirq.exit.3stap.html b/man/probe::softirq.exit.3stap.html deleted file mode 100644 index 028668f5..00000000 --- a/man/probe::softirq.exit.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of PROBE::SOFTIRQ\&.EXI - -

PROBE::SOFTIRQ\&.EXI

-Section: Interrupt Request (IRQ) Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::softirq.exit - Execution of handler for a pending softirq completed -  -

SYNOPSIS

- -

-

-softirq.exit 
-
- -  -

VALUES

- -

- -vec -

-softirq_action vector -
- -

- -h -

-struct softirq_action* for just executed softirq -
- -

- -vec_nr -

-softirq vector number -
- -

- -action -

-pointer to softirq handler that just finished execution -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::stap.cache_add_mod.3stap.html b/man/probe::stap.cache_add_mod.3stap.html deleted file mode 100644 index 1b2b994f..00000000 --- a/man/probe::stap.cache_add_mod.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of PROBE::STAP\&.CACHE_ - -

PROBE::STAP\&.CACHE_

-Section: SystemTap Translator Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::stap.cache_add_mod - Adding kernel instrumentation module to cache -  -

SYNOPSIS

- -

-

-stap.cache_add_mod 
-
- -  -

VALUES

- -

- -dest_path -

-the path the .ko file is going to (incl filename) -
- -

- -source_path -

-the path the .ko file is coming from (incl filename) -
- -  -

DESCRIPTION

- -

- -Fires just before the file is actually moved. Note: if moving fails, cache_add_src and cache_add_nss will not fire. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::stap.cache_add_nss.3stap.html b/man/probe::stap.cache_add_nss.3stap.html deleted file mode 100644 index 25ba6a6c..00000000 --- a/man/probe::stap.cache_add_nss.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of PROBE::STAP\&.CACHE_ - -

PROBE::STAP\&.CACHE_

-Section: SystemTap Translator Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::stap.cache_add_nss - Add NSS (Network Security Services) information to cache -  -

SYNOPSIS

- -

-

-stap.cache_add_nss 
-
- -  -

VALUES

- -

- -dest_path -

-the path the .sgn file is coming from (incl filename) -
- -

- -source_path -

-the path the .sgn file is coming from (incl filename) -
- -  -

DESCRIPTION

- -

- -Fires just before the file is actually moved. Note: stap must compiled with NSS support; if moving the kernel module fails, this probe will not fire. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::stap.cache_add_src.3stap.html b/man/probe::stap.cache_add_src.3stap.html deleted file mode 100644 index e8b599d4..00000000 --- a/man/probe::stap.cache_add_src.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of PROBE::STAP\&.CACHE_ - -

PROBE::STAP\&.CACHE_

-Section: SystemTap Translator Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::stap.cache_add_src - Adding C code translation to cache -  -

SYNOPSIS

- -

-

-stap.cache_add_src 
-
- -  -

VALUES

- -

- -dest_path -

-the path the .c file is going to (incl filename) -
- -

- -source_path -

-the path the .c file is coming from (incl filename) -
- -  -

DESCRIPTION

- -

- -Fires just before the file is actually moved. Note: if moving the kernel module fails, this probe will not fire. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::stap.cache_clean.3stap.html b/man/probe::stap.cache_clean.3stap.html deleted file mode 100644 index b3f47795..00000000 --- a/man/probe::stap.cache_clean.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of PROBE::STAP\&.CACHE_ - -

PROBE::STAP\&.CACHE_

-Section: SystemTap Translator Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::stap.cache_clean - Removing file from stap cache -  -

SYNOPSIS

- -

-

-stap.cache_clean 
-
- -  -

VALUES

- -

- -path -

-the path to the .ko/.c file being removed -
- -  -

DESCRIPTION

- -

- -Fires just before the call to unlink the module/source file. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::stap.cache_get.3stap.html b/man/probe::stap.cache_get.3stap.html deleted file mode 100644 index 4879ff82..00000000 --- a/man/probe::stap.cache_get.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of PROBE::STAP\&.CACHE_ - -

PROBE::STAP\&.CACHE_

-Section: SystemTap Translator Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::stap.cache_get - Found item in stap cache -  -

SYNOPSIS

- -

-

-stap.cache_get 
-
- -  -

VALUES

- -

- -source_path -

-the path of the .c source file -
- -

- -module_path -

-the path of the .ko kernel module file -
- -  -

DESCRIPTION

- -

- -Fires just before the return of get_from_cache, when the cache grab is successful. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::stap.pass0.3stap.html b/man/probe::stap.pass0.3stap.html deleted file mode 100644 index 3e34748a..00000000 --- a/man/probe::stap.pass0.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of PROBE::STAP\&.PASS0 - -

PROBE::STAP\&.PASS0

-Section: SystemTap Translator Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::stap.pass0 - Starting stap pass0 (parsing command line arguments) -  -

SYNOPSIS

- -

-

-stap.pass0 
-
- -  -

VALUES

- -

- -session -

-the systemtap_session variable s -
- -  -

DESCRIPTION

- -

- -pass0 fires after command line arguments have been parsed. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::stap.pass0.end.3stap.html b/man/probe::stap.pass0.end.3stap.html deleted file mode 100644 index 3d6e0786..00000000 --- a/man/probe::stap.pass0.end.3stap.html +++ /dev/null @@ -1,5 +0,0 @@ - -Invalid Manpage - -

Invalid Manpage

-The requested file (stdin) is not a valid (unformatted) man page. diff --git a/man/probe::stap.pass1.end.3stap.html b/man/probe::stap.pass1.end.3stap.html deleted file mode 100644 index 3d6e0786..00000000 --- a/man/probe::stap.pass1.end.3stap.html +++ /dev/null @@ -1,5 +0,0 @@ - -Invalid Manpage - -

Invalid Manpage

-The requested file (stdin) is not a valid (unformatted) man page. diff --git a/man/probe::stap.pass1a.3stap.html b/man/probe::stap.pass1a.3stap.html deleted file mode 100644 index 6ff831fd..00000000 --- a/man/probe::stap.pass1a.3stap.html +++ /dev/null @@ -1,63 +0,0 @@ - -Manpage of PROBE::STAP\&.PASS1A - -

PROBE::STAP\&.PASS1A

-Section: SystemTap Translator Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::stap.pass1a - Starting stap pass1 (parsing user script) -  -

SYNOPSIS

- -

-

-stap.pass1a 
-
- -  -

VALUES

- -

- -session -

-the systemtap_session variable s -
- -  -

DESCRIPTION

- -

- -pass1a fires just after the call to -gettimeofday, before the user script is parsed. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::stap.pass1b.3stap.html b/man/probe::stap.pass1b.3stap.html deleted file mode 100644 index c05c4fe6..00000000 --- a/man/probe::stap.pass1b.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of PROBE::STAP\&.PASS1B - -

PROBE::STAP\&.PASS1B

-Section: SystemTap Translator Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::stap.pass1b - Starting stap pass1 (parsing library scripts) -  -

SYNOPSIS

- -

-

-stap.pass1b 
-
- -  -

VALUES

- -

- -session -

-the systemtap_session variable s -
- -  -

DESCRIPTION

- -

- -pass1b fires just before the library scripts are parsed. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::stap.pass2.3stap.html b/man/probe::stap.pass2.3stap.html deleted file mode 100644 index 7ff80bd8..00000000 --- a/man/probe::stap.pass2.3stap.html +++ /dev/null @@ -1,63 +0,0 @@ - -Manpage of PROBE::STAP\&.PASS2 - -

PROBE::STAP\&.PASS2

-Section: SystemTap Translator Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::stap.pass2 - Starting stap pass2 (elaboration) -  -

SYNOPSIS

- -

-

-stap.pass2 
-
- -  -

VALUES

- -

- -session -

-the systemtap_session variable s -
- -  -

DESCRIPTION

- -

- -pass2 fires just after the call to -gettimeofday, just before the call to semantic_pass. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::stap.pass2.end.3stap.html b/man/probe::stap.pass2.end.3stap.html deleted file mode 100644 index 3d6e0786..00000000 --- a/man/probe::stap.pass2.end.3stap.html +++ /dev/null @@ -1,5 +0,0 @@ - -Invalid Manpage - -

Invalid Manpage

-The requested file (stdin) is not a valid (unformatted) man page. diff --git a/man/probe::stap.pass3.3stap.html b/man/probe::stap.pass3.3stap.html deleted file mode 100644 index 00673852..00000000 --- a/man/probe::stap.pass3.3stap.html +++ /dev/null @@ -1,63 +0,0 @@ - -Manpage of PROBE::STAP\&.PASS3 - -

PROBE::STAP\&.PASS3

-Section: SystemTap Translator Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::stap.pass3 - Starting stap pass3 (translation to C) -  -

SYNOPSIS

- -

-

-stap.pass3 
-
- -  -

VALUES

- -

- -session -

-the systemtap_session variable s -
- -  -

DESCRIPTION

- -

- -pass3 fires just after the call to -gettimeofday, just before the call to translate_pass. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::stap.pass3.end.3stap.html b/man/probe::stap.pass3.end.3stap.html deleted file mode 100644 index 3d6e0786..00000000 --- a/man/probe::stap.pass3.end.3stap.html +++ /dev/null @@ -1,5 +0,0 @@ - -Invalid Manpage - -

Invalid Manpage

-The requested file (stdin) is not a valid (unformatted) man page. diff --git a/man/probe::stap.pass4.3stap.html b/man/probe::stap.pass4.3stap.html deleted file mode 100644 index 53c0a33c..00000000 --- a/man/probe::stap.pass4.3stap.html +++ /dev/null @@ -1,63 +0,0 @@ - -Manpage of PROBE::STAP\&.PASS4 - -

PROBE::STAP\&.PASS4

-Section: SystemTap Translator Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::stap.pass4 - Starting stap pass4 (compile C code into kernel module) -  -

SYNOPSIS

- -

-

-stap.pass4 
-
- -  -

VALUES

- -

- -session -

-the systemtap_session variable s -
- -  -

DESCRIPTION

- -

- -pass4 fires just after the call to -gettimeofday, just before the call to compile_pass. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::stap.pass4.end.3stap.html b/man/probe::stap.pass4.end.3stap.html deleted file mode 100644 index 3d6e0786..00000000 --- a/man/probe::stap.pass4.end.3stap.html +++ /dev/null @@ -1,5 +0,0 @@ - -Invalid Manpage - -

Invalid Manpage

-The requested file (stdin) is not a valid (unformatted) man page. diff --git a/man/probe::stap.pass5.3stap.html b/man/probe::stap.pass5.3stap.html deleted file mode 100644 index 03fef152..00000000 --- a/man/probe::stap.pass5.3stap.html +++ /dev/null @@ -1,63 +0,0 @@ - -Manpage of PROBE::STAP\&.PASS5 - -

PROBE::STAP\&.PASS5

-Section: SystemTap Translator Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::stap.pass5 - Starting stap pass5 (running the instrumentation) -  -

SYNOPSIS

- -

-

-stap.pass5 
-
- -  -

VALUES

- -

- -session -

-the systemtap_session variable s -
- -  -

DESCRIPTION

- -

- -pass5 fires just after the call to -gettimeofday, just before the call to run_pass. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::stap.pass5.end.3stap.html b/man/probe::stap.pass5.end.3stap.html deleted file mode 100644 index 3d6e0786..00000000 --- a/man/probe::stap.pass5.end.3stap.html +++ /dev/null @@ -1,5 +0,0 @@ - -Invalid Manpage - -

Invalid Manpage

-The requested file (stdin) is not a valid (unformatted) man page. diff --git a/man/probe::stap.pass6.3stap.html b/man/probe::stap.pass6.3stap.html deleted file mode 100644 index faf36ccf..00000000 --- a/man/probe::stap.pass6.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of PROBE::STAP\&.PASS6 - -

PROBE::STAP\&.PASS6

-Section: SystemTap Translator Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::stap.pass6 - Starting stap pass6 (cleanup) -  -

SYNOPSIS

- -

-

-stap.pass6 
-
- -  -

VALUES

- -

- -session -

-the systemtap_session variable s -
- -  -

DESCRIPTION

- -

- -pass6 fires just after the cleanup label, essentially the same spot as pass5.end -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::stap.pass6.end.3stap.html b/man/probe::stap.pass6.end.3stap.html deleted file mode 100644 index 3d6e0786..00000000 --- a/man/probe::stap.pass6.end.3stap.html +++ /dev/null @@ -1,5 +0,0 @@ - -Invalid Manpage - -

Invalid Manpage

-The requested file (stdin) is not a valid (unformatted) man page. diff --git a/man/probe::stap.system.3stap.html b/man/probe::stap.system.3stap.html deleted file mode 100644 index 6db49435..00000000 --- a/man/probe::stap.system.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of PROBE::STAP\&.SYSTEM - -

PROBE::STAP\&.SYSTEM

-Section: SystemTap Translator Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::stap.system - Starting a command from stap -  -

SYNOPSIS

- -

-

-stap.system 
-
- -  -

VALUES

- -

- -command -

-the command string to be run by posix_spawn (as sh -c <str>) -
- -  -

DESCRIPTION

- -

- -Fires at the entry of the stap_system command. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::stap.system.return.3stap.html b/man/probe::stap.system.return.3stap.html deleted file mode 100644 index f83794c2..00000000 --- a/man/probe::stap.system.return.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of PROBE::STAP\&.SYSTEM - -

PROBE::STAP\&.SYSTEM

-Section: SystemTap Translator Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::stap.system.return - Finished a command from stap -  -

SYNOPSIS

- -

-

-stap.system.return 
-
- -  -

VALUES

- -

- -ret -

-a return code associated with running waitpid on the spawned process; a non-zero value indicates error -
- -  -

DESCRIPTION

- -

- -Fires just before the return of the stap_system function, after waitpid. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::stap.system.spawn.3stap.html b/man/probe::stap.system.spawn.3stap.html deleted file mode 100644 index c9173d75..00000000 --- a/man/probe::stap.system.spawn.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of PROBE::STAP\&.SYSTEM - -

PROBE::STAP\&.SYSTEM

-Section: SystemTap Translator Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::stap.system.spawn - stap spawned new process -  -

SYNOPSIS

- -

-

-stap.system.spawn 
-
- -  -

VALUES

- -

- -ret -

-the return value from posix_spawn -
- -

- -pid -

-the pid of the spawned process -
- -  -

DESCRIPTION

- -

- -Fires just after the call to posix_spawn. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::stapio.receive_control_message.3stap.html b/man/probe::stapio.receive_control_message.3stap.html deleted file mode 100644 index 03582dff..00000000 --- a/man/probe::stapio.receive_control_message.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of PROBE::STAPIO\&.RECE - -

PROBE::STAPIO\&.RECE

-Section: SystemTap Translator Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::stapio.receive_control_message - Received a control message -  -

SYNOPSIS

- -

-

-stapio.receive_control_message 
-
- -  -

VALUES

- -

- -len -

-the length (in bytes) of the data blob -
- -

- -data -

-a ptr to a binary blob of data sent as the control message -
- -

- -type -

-type of message being send; defined in runtime/transport/transport_msgs.h -
- -  -

DESCRIPTION

- -

- -Fires just after a message was receieved and before it's processed. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::staprun.insert_module.3stap.html b/man/probe::staprun.insert_module.3stap.html deleted file mode 100644 index ba9569ce..00000000 --- a/man/probe::staprun.insert_module.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of PROBE::STAPRUN\&.INS - -

PROBE::STAPRUN\&.INS

-Section: SystemTap Translator Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::staprun.insert_module - Inserting SystemTap instrumentation module -  -

SYNOPSIS

- -

-

-staprun.insert_module 
-
- -  -

VALUES

- -

- -path -

-the full path to the .ko kernel module about to be inserted -
- -  -

DESCRIPTION

- -

- -Fires just before the call to insert the module. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::staprun.remove_module.3stap.html b/man/probe::staprun.remove_module.3stap.html deleted file mode 100644 index 60b8d59e..00000000 --- a/man/probe::staprun.remove_module.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of PROBE::STAPRUN\&.REM - -

PROBE::STAPRUN\&.REM

-Section: SystemTap Translator Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::staprun.remove_module - Removing SystemTap instrumentation module -  -

SYNOPSIS

- -

-

-staprun.remove_module 
-
- -  -

VALUES

- -

- -name -

-the stap module name to be removed (without the .ko extension) -
- -  -

DESCRIPTION

- -

- -Fires just before the call to remove the module. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::staprun.send_control_message.3stap.html b/man/probe::staprun.send_control_message.3stap.html deleted file mode 100644 index 0247ad32..00000000 --- a/man/probe::staprun.send_control_message.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of PROBE::STAPRUN\&.SEN - -

PROBE::STAPRUN\&.SEN

-Section: SystemTap Translator Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::staprun.send_control_message - Sending a control message -  -

SYNOPSIS

- -

-

-staprun.send_control_message 
-
- -  -

VALUES

- -

- -len -

-the length (in bytes) of the data blob -
- -

- -data -

-a ptr to a binary blob of data sent as the control message -
- -

- -type -

-type of message being send; defined in runtime/transport/transport_msgs.h -
- -  -

DESCRIPTION

- -

- -Fires at the beginning of the send_request function. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::sunrpc.clnt.bind_new_program.3stap.html b/man/probe::sunrpc.clnt.bind_new_program.3stap.html deleted file mode 100644 index 0ede2a70..00000000 --- a/man/probe::sunrpc.clnt.bind_new_program.3stap.html +++ /dev/null @@ -1,97 +0,0 @@ - -Manpage of PROBE::SUNRPC\&.CLNT - -

PROBE::SUNRPC\&.CLNT

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::sunrpc.clnt.bind_new_program - Bind a new RPC program to an existing client -  -

SYNOPSIS

- -

-

-sunrpc.clnt.bind_new_program 
-
- -  -

VALUES

- -

- -prog -

-the number of new RPC program -
- -

- -progname -

-the name of new RPC program -
- -

- -old_vers -

-the version of old RPC program -
- -

- -old_progname -

-the name of old RPC program -
- -

- -vers -

-the version of new RPC program -
- -

- -servername -

-the server machine name -
- -

- -old_prog -

-the number of old RPC program -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::sunrpc.clnt.call_async.3stap.html b/man/probe::sunrpc.clnt.call_async.3stap.html deleted file mode 100644 index d977a269..00000000 --- a/man/probe::sunrpc.clnt.call_async.3stap.html +++ /dev/null @@ -1,125 +0,0 @@ - -Manpage of PROBE::SUNRPC\&.CLNT - -

PROBE::SUNRPC\&.CLNT

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::sunrpc.clnt.call_async - Make an asynchronous RPC call -  -

SYNOPSIS

- -

-

-sunrpc.clnt.call_async 
-
- -  -

VALUES

- -

- -prog -

-the RPC program number -
- -

- -progname -

-the RPC program name -
- -

- -procname -

-the procedure name in this RPC call -
- -

- -proc -

-the procedure number in this RPC call -
- -

- -dead -

-whether this client is abandoned -
- -

- -flags -

-flags -
- -

- -vers -

-the RPC program version number -
- -

- -port -

-the port number -
- -

- -prot -

-the IP protocol number -
- -

- -servername -

-the server machine name -
- -

- -xid -

-current transmission id -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::sunrpc.clnt.call_sync.3stap.html b/man/probe::sunrpc.clnt.call_sync.3stap.html deleted file mode 100644 index af446d79..00000000 --- a/man/probe::sunrpc.clnt.call_sync.3stap.html +++ /dev/null @@ -1,125 +0,0 @@ - -Manpage of PROBE::SUNRPC\&.CLNT - -

PROBE::SUNRPC\&.CLNT

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::sunrpc.clnt.call_sync - Make a synchronous RPC call -  -

SYNOPSIS

- -

-

-sunrpc.clnt.call_sync 
-
- -  -

VALUES

- -

- -prog -

-the RPC program number -
- -

- -progname -

-the RPC program name -
- -

- -procname -

-the procedure name in this RPC call -
- -

- -proc -

-the procedure number in this RPC call -
- -

- -dead -

-whether this client is abandoned -
- -

- -flags -

-flags -
- -

- -vers -

-the RPC program version number -
- -

- -port -

-the port number -
- -

- -prot -

-the IP protocol number -
- -

- -servername -

-the server machine name -
- -

- -xid -

-current transmission id -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::sunrpc.clnt.clone_client.3stap.html b/man/probe::sunrpc.clnt.clone_client.3stap.html deleted file mode 100644 index df96747c..00000000 --- a/man/probe::sunrpc.clnt.clone_client.3stap.html +++ /dev/null @@ -1,97 +0,0 @@ - -Manpage of PROBE::SUNRPC\&.CLNT - -

PROBE::SUNRPC\&.CLNT

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::sunrpc.clnt.clone_client - Clone an RPC client structure -  -

SYNOPSIS

- -

-

-sunrpc.clnt.clone_client 
-
- -  -

VALUES

- -

- -servername -

-the server machine name -
- -

- -vers -

-the RPC program version number -
- -

- -prog -

-the RPC program number -
- -

- -authflavor -

-the authentication flavor -
- -

- -progname -

-the RPC program name -
- -

- -port -

-the port number -
- -

- -prot -

-the IP protocol number -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::sunrpc.clnt.create_client.3stap.html b/man/probe::sunrpc.clnt.create_client.3stap.html deleted file mode 100644 index 03c881cd..00000000 --- a/man/probe::sunrpc.clnt.create_client.3stap.html +++ /dev/null @@ -1,97 +0,0 @@ - -Manpage of PROBE::SUNRPC\&.CLNT - -

PROBE::SUNRPC\&.CLNT

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::sunrpc.clnt.create_client - Create an RPC client -  -

SYNOPSIS

- -

-

-sunrpc.clnt.create_client 
-
- -  -

VALUES

- -

- -servername -

-the server machine name -
- -

- -vers -

-the RPC program version number -
- -

- -prog -

-the RPC program number -
- -

- -authflavor -

-the authentication flavor -
- -

- -progname -

-the RPC program name -
- -

- -port -

-the port number -
- -

- -prot -

-the IP protocol number -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::sunrpc.clnt.restart_call.3stap.html b/man/probe::sunrpc.clnt.restart_call.3stap.html deleted file mode 100644 index 4a4c9756..00000000 --- a/man/probe::sunrpc.clnt.restart_call.3stap.html +++ /dev/null @@ -1,97 +0,0 @@ - -Manpage of PROBE::SUNRPC\&.CLNT - -

PROBE::SUNRPC\&.CLNT

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::sunrpc.clnt.restart_call - Restart an asynchronous RPC call -  -

SYNOPSIS

- -

-

-sunrpc.clnt.restart_call 
-
- -  -

VALUES

- -

- -tk_priority -

-the task priority -
- -

- -prog -

-the RPC program number -
- -

- -tk_pid -

-the debugging aid of task -
- -

- -tk_flags -

-the task flags -
- -

- -servername -

-the server machine name -
- -

- -tk_runstate -

-the task run status -
- -

- -xid -

-the transmission id -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::sunrpc.clnt.shutdown_client.3stap.html b/man/probe::sunrpc.clnt.shutdown_client.3stap.html deleted file mode 100644 index b252c698..00000000 --- a/man/probe::sunrpc.clnt.shutdown_client.3stap.html +++ /dev/null @@ -1,174 +0,0 @@ - -Manpage of PROBE::SUNRPC\&.CLNT - -

PROBE::SUNRPC\&.CLNT

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::sunrpc.clnt.shutdown_client - Shutdown an RPC client -  -

SYNOPSIS

- -

-

-sunrpc.clnt.shutdown_client 
-
- -  -

VALUES

- -

- -om_ops -

-the count of operations -
- -

- -om_bytes_sent -

-the count of bytes out -
- -

- -prog -

-the RPC program number -
- -

- -authflavor -

-the authentication flavor -
- -

- -progname -

-the RPC program name -
- -

- -om_queue -

-the jiffies queued for xmit -
- -

- -om_rtt -

-the RPC RTT jiffies -
- -

- -om_bytes_recv -

-the count of bytes in -
- -

- -tasks -

-the number of references -
- -

- -netreconn -

-the count of reconnections -
- -

- -vers -

-the RPC program version number -
- -

- -om_execute -

-the RPC execution jiffies -
- -

- -prot -

-the IP protocol number -
- -

- -port -

-the port number -
- -

- -clones -

-the number of clones -
- -

- -servername -

-the server machine name -
- -

- -rpccnt -

-the count of RPC calls -
- -

- -om_ntrans -

-the count of RPC transmissions -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::sunrpc.sched.delay.3stap.html b/man/probe::sunrpc.sched.delay.3stap.html deleted file mode 100644 index 3d391883..00000000 --- a/man/probe::sunrpc.sched.delay.3stap.html +++ /dev/null @@ -1,97 +0,0 @@ - -Manpage of PROBE::SUNRPC\&.SCHE - -

PROBE::SUNRPC\&.SCHE

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::sunrpc.sched.delay - Delay an RPC task -  -

SYNOPSIS

- -

-

-sunrpc.sched.delay 
-
- -  -

VALUES

- -

- -prog -

-the program number in the RPC call -
- -

- -delay -

-the time delayed -
- -

- -tk_pid -

-the debugging id of the task -
- -

- -tk_flags -

-the flags of the task -
- -

- -vers -

-the program version in the RPC call -
- -

- -prot -

-the IP protocol in the RPC call -
- -

- -xid -

-the transmission id in the RPC call -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::sunrpc.sched.execute.3stap.html b/man/probe::sunrpc.sched.execute.3stap.html deleted file mode 100644 index 897a7ab2..00000000 --- a/man/probe::sunrpc.sched.execute.3stap.html +++ /dev/null @@ -1,90 +0,0 @@ - -Manpage of PROBE::SUNRPC\&.SCHE - -

PROBE::SUNRPC\&.SCHE

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::sunrpc.sched.execute - Execute the RPC `scheduler' -  -

SYNOPSIS

- -

-

-sunrpc.sched.execute 
-
- -  -

VALUES

- -

- -prog -

-the program number in the RPC call -
- -

- -tk_pid -

-the debugging id of the task -
- -

- -tk_flags -

-the flags of the task -
- -

- -vers -

-the program version in the RPC call -
- -

- -prot -

-the IP protocol in the RPC call -
- -

- -xid -

-the transmission id in the RPC call -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::sunrpc.sched.new_task.3stap.html b/man/probe::sunrpc.sched.new_task.3stap.html deleted file mode 100644 index 6df2f942..00000000 --- a/man/probe::sunrpc.sched.new_task.3stap.html +++ /dev/null @@ -1,83 +0,0 @@ - -Manpage of PROBE::SUNRPC\&.SCHE - -

PROBE::SUNRPC\&.SCHE

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::sunrpc.sched.new_task - Create new task for the specified client -  -

SYNOPSIS

- -

-

-sunrpc.sched.new_task 
-
- -  -

VALUES

- -

- -prog -

-the program number in the RPC call -
- -

- -tk_flags -

-the flags of the task -
- -

- -vers -

-the program version in the RPC call -
- -

- -prot -

-the IP protocol in the RPC call -
- -

- -xid -

-the transmission id in the RPC call -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::sunrpc.sched.release_task.3stap.html b/man/probe::sunrpc.sched.release_task.3stap.html deleted file mode 100644 index b307a48b..00000000 --- a/man/probe::sunrpc.sched.release_task.3stap.html +++ /dev/null @@ -1,92 +0,0 @@ - -Manpage of PROBE::SUNRPC\&.SCHE - -

PROBE::SUNRPC\&.SCHE

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::sunrpc.sched.release_task - Release all resources associated with a task -  -

SYNOPSIS

- -

-

-sunrpc.sched.release_task 
-
- -  -

VALUES

- -

- -prog -

-the program number in the RPC call -
- -

- -tk_flags -

-the flags of the task -
- -

- -vers -

-the program version in the RPC call -
- -

- -prot -

-the IP protocol in the RPC call -
- -

- -xid -

-the transmission id in the RPC call -
- -  -

DESCRIPTION

- -

- -

-rpc_release_task -function might not be found for a particular kernel. So, if we can't find it, just return '-1' for everything. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::sunrpc.svc.create.3stap.html b/man/probe::sunrpc.svc.create.3stap.html deleted file mode 100644 index 3d6e0786..00000000 --- a/man/probe::sunrpc.svc.create.3stap.html +++ /dev/null @@ -1,5 +0,0 @@ - -Invalid Manpage - -

Invalid Manpage

-The requested file (stdin) is not a valid (unformatted) man page. diff --git a/man/probe::sunrpc.svc.destroy.3stap.html b/man/probe::sunrpc.svc.destroy.3stap.html deleted file mode 100644 index 3d6e0786..00000000 --- a/man/probe::sunrpc.svc.destroy.3stap.html +++ /dev/null @@ -1,5 +0,0 @@ - -Invalid Manpage - -

Invalid Manpage

-The requested file (stdin) is not a valid (unformatted) man page. diff --git a/man/probe::sunrpc.svc.drop.3stap.html b/man/probe::sunrpc.svc.drop.3stap.html deleted file mode 100644 index 3d6e0786..00000000 --- a/man/probe::sunrpc.svc.drop.3stap.html +++ /dev/null @@ -1,5 +0,0 @@ - -Invalid Manpage - -

Invalid Manpage

-The requested file (stdin) is not a valid (unformatted) man page. diff --git a/man/probe::sunrpc.svc.process.3stap.html b/man/probe::sunrpc.svc.process.3stap.html deleted file mode 100644 index 3d6e0786..00000000 --- a/man/probe::sunrpc.svc.process.3stap.html +++ /dev/null @@ -1,5 +0,0 @@ - -Invalid Manpage - -

Invalid Manpage

-The requested file (stdin) is not a valid (unformatted) man page. diff --git a/man/probe::sunrpc.svc.recv.3stap.html b/man/probe::sunrpc.svc.recv.3stap.html deleted file mode 100644 index 3d6e0786..00000000 --- a/man/probe::sunrpc.svc.recv.3stap.html +++ /dev/null @@ -1,5 +0,0 @@ - -Invalid Manpage - -

Invalid Manpage

-The requested file (stdin) is not a valid (unformatted) man page. diff --git a/man/probe::sunrpc.svc.register.3stap.html b/man/probe::sunrpc.svc.register.3stap.html deleted file mode 100644 index 3d6e0786..00000000 --- a/man/probe::sunrpc.svc.register.3stap.html +++ /dev/null @@ -1,5 +0,0 @@ - -Invalid Manpage - -

Invalid Manpage

-The requested file (stdin) is not a valid (unformatted) man page. diff --git a/man/probe::sunrpc.svc.send.3stap.html b/man/probe::sunrpc.svc.send.3stap.html deleted file mode 100644 index 3d6e0786..00000000 --- a/man/probe::sunrpc.svc.send.3stap.html +++ /dev/null @@ -1,5 +0,0 @@ - -Invalid Manpage - -

Invalid Manpage

-The requested file (stdin) is not a valid (unformatted) man page. diff --git a/man/probe::tcp.disconnect.3stap.html b/man/probe::tcp.disconnect.3stap.html deleted file mode 100644 index aae42564..00000000 --- a/man/probe::tcp.disconnect.3stap.html +++ /dev/null @@ -1,111 +0,0 @@ - -Manpage of PROBE::TCP\&.DISCONN - -

PROBE::TCP\&.DISCONN

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::tcp.disconnect - TCP socket disconnection -  -

SYNOPSIS

- -

-

-tcp.disconnect 
-
- -  -

VALUES

- -

- -flags -

-TCP flags (e.g. FIN, etc) -
- -

- -name -

-Name of this probe -
- -

- -dport -

-TCP destination port -
- -

- -saddr -

-A string representing the source IP address -
- -

- -daddr -

-A string representing the destination IP address -
- -

- -sport -

-TCP source port -
- -

- -family -

-IP address family -
- -

- -sock -

-Network socket -
- -  -

CONTEXT

- -

- -The process which disconnects tcp -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::tcp.disconnect.return.3stap.html b/man/probe::tcp.disconnect.return.3stap.html deleted file mode 100644 index 43081bc0..00000000 --- a/man/probe::tcp.disconnect.return.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of PROBE::TCP\&.DISCONN - -

PROBE::TCP\&.DISCONN

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::tcp.disconnect.return - TCP socket disconnection complete -  -

SYNOPSIS

- -

-

-tcp.disconnect.return 
-
- -  -

VALUES

- -

- -ret -

-Error code (0: no error) -
- -

- -name -

-Name of this probe -
- -  -

CONTEXT

- -

- -The process which disconnects tcp -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::tcp.receive.3stap.html b/man/probe::tcp.receive.3stap.html deleted file mode 100644 index 5ccb1c06..00000000 --- a/man/probe::tcp.receive.3stap.html +++ /dev/null @@ -1,146 +0,0 @@ - -Manpage of PROBE::TCP\&.RECEIVE - -

PROBE::TCP\&.RECEIVE

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::tcp.receive - Called when a TCP packet is received -  -

SYNOPSIS

- -

-

-tcp.receive 
-
- -  -

VALUES

- -

- -urg -

-TCP URG flag -
- -

- -protocol -

-Packet protocol from driver -
- -

- -psh -

-TCP PSH flag -
- -

- -name -

-Name of the probe point -
- -

- -rst -

-TCP RST flag -
- -

- -dport -

-TCP destination port -
- -

- -saddr -

-A string representing the source IP address -
- -

- -daddr -

-A string representing the destination IP address -
- -

- -ack -

-TCP ACK flag -
- -

- -fin -

-TCP FIN flag -
- -

- -syn -

-TCP SYN flag -
- -

- -sport -

-TCP source port -
- -

- -family -

-IP address family -
- -

- -iphdr -

-IP header address -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::tcp.recvmsg.3stap.html b/man/probe::tcp.recvmsg.3stap.html deleted file mode 100644 index 0109c8ab..00000000 --- a/man/probe::tcp.recvmsg.3stap.html +++ /dev/null @@ -1,111 +0,0 @@ - -Manpage of PROBE::TCP\&.RECVMSG - -

PROBE::TCP\&.RECVMSG

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::tcp.recvmsg - Receiving TCP message -  -

SYNOPSIS

- -

-

-tcp.recvmsg 
-
- -  -

VALUES

- -

- -name -

-Name of this probe -
- -

- -dport -

-TCP destination port -
- -

- -size -

-Number of bytes to be received -
- -

- -saddr -

-A string representing the source IP address -
- -

- -daddr -

-A string representing the destination IP address -
- -

- -sport -

-TCP source port -
- -

- -sock -

-Network socket -
- -

- -family -

-IP address family -
- -  -

CONTEXT

- -

- -The process which receives a tcp message -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::tcp.recvmsg.return.3stap.html b/man/probe::tcp.recvmsg.return.3stap.html deleted file mode 100644 index 5cf27708..00000000 --- a/man/probe::tcp.recvmsg.return.3stap.html +++ /dev/null @@ -1,104 +0,0 @@ - -Manpage of PROBE::TCP\&.RECVMSG - -

PROBE::TCP\&.RECVMSG

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::tcp.recvmsg.return - Receiving TCP message complete -  -

SYNOPSIS

- -

-

-tcp.recvmsg.return 
-
- -  -

VALUES

- -

- -name -

-Name of this probe -
- -

- -dport -

-TCP destination port -
- -

- -size -

-Number of bytes received or error code if an error occurred. -
- -

- -saddr -

-A string representing the source IP address -
- -

- -daddr -

-A string representing the destination IP address -
- -

- -sport -

-TCP source port -
- -

- -family -

-IP address family -
- -  -

CONTEXT

- -

- -The process which receives a tcp message -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::tcp.sendmsg.3stap.html b/man/probe::tcp.sendmsg.3stap.html deleted file mode 100644 index 2515227a..00000000 --- a/man/probe::tcp.sendmsg.3stap.html +++ /dev/null @@ -1,83 +0,0 @@ - -Manpage of PROBE::TCP\&.SENDMSG - -

PROBE::TCP\&.SENDMSG

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::tcp.sendmsg - Sending a tcp message -  -

SYNOPSIS

- -

-

-tcp.sendmsg 
-
- -  -

VALUES

- -

- -name -

-Name of this probe -
- -

- -size -

-Number of bytes to send -
- -

- -family -

-IP address family -
- -

- -sock -

-Network socket -
- -  -

CONTEXT

- -

- -The process which sends a tcp message -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::tcp.sendmsg.return.3stap.html b/man/probe::tcp.sendmsg.return.3stap.html deleted file mode 100644 index 2aa9fb3d..00000000 --- a/man/probe::tcp.sendmsg.return.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of PROBE::TCP\&.SENDMSG - -

PROBE::TCP\&.SENDMSG

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::tcp.sendmsg.return - Sending TCP message is done -  -

SYNOPSIS

- -

-

-tcp.sendmsg.return 
-
- -  -

VALUES

- -

- -name -

-Name of this probe -
- -

- -size -

-Number of bytes sent or error code if an error occurred. -
- -  -

CONTEXT

- -

- -The process which sends a tcp message -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::tcp.setsockopt.3stap.html b/man/probe::tcp.setsockopt.3stap.html deleted file mode 100644 index 586465c0..00000000 --- a/man/probe::tcp.setsockopt.3stap.html +++ /dev/null @@ -1,105 +0,0 @@ - -Manpage of PROBE::TCP\&.SETSOCK - -

PROBE::TCP\&.SETSOCK

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::tcp.setsockopt - Call to setsockopt -  -

SYNOPSIS

- -

-

-tcp.setsockopt 
-
- -  -

VALUES

- -

- -optlen -

-Used to access values for -setsockopt -
- -

- -name -

-Name of this probe -
- -

- -optname -

-TCP socket options (e.g. TCP_NODELAY, TCP_MAXSEG, etc) -
- -

- -optstr -

-Resolves optname to a human-readable format -
- -

- -level -

-The level at which the socket options will be manipulated -
- -

- -family -

-IP address family -
- -

- -sock -

-Network socket -
- -  -

CONTEXT

- -

- -The process which calls setsockopt -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::tcp.setsockopt.return.3stap.html b/man/probe::tcp.setsockopt.return.3stap.html deleted file mode 100644 index 90b88380..00000000 --- a/man/probe::tcp.setsockopt.return.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of PROBE::TCP\&.SETSOCK - -

PROBE::TCP\&.SETSOCK

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::tcp.setsockopt.return - Return from setsockopt -  -

SYNOPSIS

- -

-

-tcp.setsockopt.return 
-
- -  -

VALUES

- -

- -ret -

-Error code (0: no error) -
- -

- -name -

-Name of this probe -
- -  -

CONTEXT

- -

- -The process which calls setsockopt -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::tcpmib.ActiveOpens.3stap.html b/man/probe::tcpmib.ActiveOpens.3stap.html deleted file mode 100644 index bf06701b..00000000 --- a/man/probe::tcpmib.ActiveOpens.3stap.html +++ /dev/null @@ -1,74 +0,0 @@ - -Manpage of PROBE::TCPMIB\&.ACTI - -

PROBE::TCPMIB\&.ACTI

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::tcpmib.ActiveOpens - Count an active opening of a socket -  -

SYNOPSIS

- -

-

-tcpmib.ActiveOpens 
-
- -  -

VALUES

- -

- -sk -

-pointer to the struct sock being acted on -
- -

- -op -

-value to be added to the counter (default value of 1) -
- -  -

DESCRIPTION

- -

- -The packet pointed to by -skb -is filtered by the function -tcpmib_filter_key. If the packet passes the filter is is counted in the global -ActiveOpens -(equivalent to SNMP's MIB TCP_MIB_ACTIVEOPENS) -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::tcpmib.AttemptFails.3stap.html b/man/probe::tcpmib.AttemptFails.3stap.html deleted file mode 100644 index bcea2d8e..00000000 --- a/man/probe::tcpmib.AttemptFails.3stap.html +++ /dev/null @@ -1,74 +0,0 @@ - -Manpage of PROBE::TCPMIB\&.ATTE - -

PROBE::TCPMIB\&.ATTE

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::tcpmib.AttemptFails - Count a failed attempt to open a socket -  -

SYNOPSIS

- -

-

-tcpmib.AttemptFails 
-
- -  -

VALUES

- -

- -sk -

-pointer to the struct sock being acted on -
- -

- -op -

-value to be added to the counter (default value of 1) -
- -  -

DESCRIPTION

- -

- -The packet pointed to by -skb -is filtered by the function -tcpmib_filter_key. If the packet passes the filter is is counted in the global -AttemptFails -(equivalent to SNMP's MIB TCP_MIB_ATTEMPTFAILS) -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::tcpmib.CurrEstab.3stap.html b/man/probe::tcpmib.CurrEstab.3stap.html deleted file mode 100644 index ae7c2ed4..00000000 --- a/man/probe::tcpmib.CurrEstab.3stap.html +++ /dev/null @@ -1,74 +0,0 @@ - -Manpage of PROBE::TCPMIB\&.CURR - -

PROBE::TCPMIB\&.CURR

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::tcpmib.CurrEstab - Update the count of open sockets -  -

SYNOPSIS

- -

-

-tcpmib.CurrEstab 
-
- -  -

VALUES

- -

- -sk -

-pointer to the struct sock being acted on -
- -

- -op -

-value to be added to the counter (default value of 1) -
- -  -

DESCRIPTION

- -

- -The packet pointed to by -skb -is filtered by the function -tcpmib_filter_key. If the packet passes the filter is is counted in the global -CurrEstab -(equivalent to SNMP's MIB TCP_MIB_CURRESTAB) -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::tcpmib.EstabResets.3stap.html b/man/probe::tcpmib.EstabResets.3stap.html deleted file mode 100644 index e1fff9d3..00000000 --- a/man/probe::tcpmib.EstabResets.3stap.html +++ /dev/null @@ -1,74 +0,0 @@ - -Manpage of PROBE::TCPMIB\&.ESTA - -

PROBE::TCPMIB\&.ESTA

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::tcpmib.EstabResets - Count the reset of a socket -  -

SYNOPSIS

- -

-

-tcpmib.EstabResets 
-
- -  -

VALUES

- -

- -sk -

-pointer to the struct sock being acted on -
- -

- -op -

-value to be added to the counter (default value of 1) -
- -  -

DESCRIPTION

- -

- -The packet pointed to by -skb -is filtered by the function -tcpmib_filter_key. If the packet passes the filter is is counted in the global -EstabResets -(equivalent to SNMP's MIB TCP_MIB_ESTABRESETS) -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::tcpmib.InSegs.3stap.html b/man/probe::tcpmib.InSegs.3stap.html deleted file mode 100644 index 693da01d..00000000 --- a/man/probe::tcpmib.InSegs.3stap.html +++ /dev/null @@ -1,77 +0,0 @@ - -Manpage of PROBE::TCPMIB\&.INSE - -

PROBE::TCPMIB\&.INSE

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::tcpmib.InSegs - Count an incoming tcp segment -  -

SYNOPSIS

- -

-

-tcpmib.InSegs 
-
- -  -

VALUES

- -

- -sk -

-pointer to the struct sock being acted on -
- -

- -op -

-value to be added to the counter (default value of 1) -
- -  -

DESCRIPTION

- -

- -The packet pointed to by -skb -is filtered by the function -tcpmib_filter_key -(or -ipmib_filter_key -for tcp v4). If the packet passes the filter is is counted in the global -InSegs -(equivalent to SNMP's MIB TCP_MIB_INSEGS) -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::tcpmib.OutRsts.3stap.html b/man/probe::tcpmib.OutRsts.3stap.html deleted file mode 100644 index fe66f21a..00000000 --- a/man/probe::tcpmib.OutRsts.3stap.html +++ /dev/null @@ -1,74 +0,0 @@ - -Manpage of PROBE::TCPMIB\&.OUTR - -

PROBE::TCPMIB\&.OUTR

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::tcpmib.OutRsts - Count the sending of a reset packet -  -

SYNOPSIS

- -

-

-tcpmib.OutRsts 
-
- -  -

VALUES

- -

- -sk -

-pointer to the struct sock being acted on -
- -

- -op -

-value to be added to the counter (default value of 1) -
- -  -

DESCRIPTION

- -

- -The packet pointed to by -skb -is filtered by the function -tcpmib_filter_key. If the packet passes the filter is is counted in the global -OutRsts -(equivalent to SNMP's MIB TCP_MIB_OUTRSTS) -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::tcpmib.OutSegs.3stap.html b/man/probe::tcpmib.OutSegs.3stap.html deleted file mode 100644 index 5ba97951..00000000 --- a/man/probe::tcpmib.OutSegs.3stap.html +++ /dev/null @@ -1,74 +0,0 @@ - -Manpage of PROBE::TCPMIB\&.OUTS - -

PROBE::TCPMIB\&.OUTS

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::tcpmib.OutSegs - Count the sending of a TCP segment -  -

SYNOPSIS

- -

-

-tcpmib.OutSegs 
-
- -  -

VALUES

- -

- -sk -

-pointer to the struct sock being acted on -
- -

- -op -

-value to be added to the counter (default value of 1) -
- -  -

DESCRIPTION

- -

- -The packet pointed to by -skb -is filtered by the function -tcpmib_filter_key. If the packet passes the filter is is counted in the global -OutSegs -(equivalent to SNMP's MIB TCP_MIB_OUTSEGS) -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::tcpmib.PassiveOpens.3stap.html b/man/probe::tcpmib.PassiveOpens.3stap.html deleted file mode 100644 index d8621540..00000000 --- a/man/probe::tcpmib.PassiveOpens.3stap.html +++ /dev/null @@ -1,74 +0,0 @@ - -Manpage of PROBE::TCPMIB\&.PASS - -

PROBE::TCPMIB\&.PASS

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::tcpmib.PassiveOpens - Count the passive creation of a socket -  -

SYNOPSIS

- -

-

-tcpmib.PassiveOpens 
-
- -  -

VALUES

- -

- -sk -

-pointer to the struct sock being acted on -
- -

- -op -

-value to be added to the counter (default value of 1) -
- -  -

DESCRIPTION

- -

- -The packet pointed to by -skb -is filtered by the function -tcpmib_filter_key. If the packet passes the filter is is counted in the global -PassiveOpens -(equivalent to SNMP's MIB TCP_MIB_PASSIVEOPENS) -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::tcpmib.RetransSegs.3stap.html b/man/probe::tcpmib.RetransSegs.3stap.html deleted file mode 100644 index 1f2d8039..00000000 --- a/man/probe::tcpmib.RetransSegs.3stap.html +++ /dev/null @@ -1,74 +0,0 @@ - -Manpage of PROBE::TCPMIB\&.RETR - -

PROBE::TCPMIB\&.RETR

-Section: SNMP Information Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::tcpmib.RetransSegs - Count the retransmission of a TCP segment -  -

SYNOPSIS

- -

-

-tcpmib.RetransSegs 
-
- -  -

VALUES

- -

- -sk -

-pointer to the struct sock being acted on -
- -

- -op -

-value to be added to the counter (default value of 1) -
- -  -

DESCRIPTION

- -

- -The packet pointed to by -skb -is filtered by the function -tcpmib_filter_key. If the packet passes the filter is is counted in the global -RetransSegs -(equivalent to SNMP's MIB TCP_MIB_RETRANSSEGS) -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::tty.init.3stap.html b/man/probe::tty.init.3stap.html deleted file mode 100644 index b598c06b..00000000 --- a/man/probe::tty.init.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of PROBE::TTY\&.INIT - -

PROBE::TTY\&.INIT

-Section: TTY Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::tty.init - Called when a tty is being initalized -  -

SYNOPSIS

- -

-

-tty.init 
-
- -  -

VALUES

- -

- -driver_name -

-the driver name -
- -

- -name -

-the driver .dev_name name -
- -

- -module -

-the module name -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::tty.ioctl.3stap.html b/man/probe::tty.ioctl.3stap.html deleted file mode 100644 index c543128e..00000000 --- a/man/probe::tty.ioctl.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of PROBE::TTY\&.IOCTL - -

PROBE::TTY\&.IOCTL

-Section: TTY Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::tty.ioctl - called when a ioctl is request to the tty -  -

SYNOPSIS

- -

-

-tty.ioctl 
-
- -  -

VALUES

- -

- -cmd -

-the ioctl command -
- -

- -arg -

-the ioctl argument -
- -

- -name -

-the file name -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::tty.open.3stap.html b/man/probe::tty.open.3stap.html deleted file mode 100644 index 65bd96af..00000000 --- a/man/probe::tty.open.3stap.html +++ /dev/null @@ -1,90 +0,0 @@ - -Manpage of PROBE::TTY\&.OPEN - -

PROBE::TTY\&.OPEN

-Section: TTY Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::tty.open - Called when a tty is opened -  -

SYNOPSIS

- -

-

-tty.open 
-
- -  -

VALUES

- -

- -inode_state -

-the inode state -
- -

- -file_name -

-the file name -
- -

- -file_mode -

-the file mode -
- -

- -file_flags -

-the file flags -
- -

- -inode_number -

-the inode number -
- -

- -inode_flags -

-the inode flags -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::tty.poll.3stap.html b/man/probe::tty.poll.3stap.html deleted file mode 100644 index adeb323e..00000000 --- a/man/probe::tty.poll.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of PROBE::TTY\&.POLL - -

PROBE::TTY\&.POLL

-Section: TTY Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::tty.poll - Called when a tty device is being polled -  -

SYNOPSIS

- -

-

-tty.poll 
-
- -  -

VALUES

- -

- -file_name -

-the tty file name -
- -

- -wait_key -

-the wait queue key -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::tty.read.3stap.html b/man/probe::tty.read.3stap.html deleted file mode 100644 index a428f977..00000000 --- a/man/probe::tty.read.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of PROBE::TTY\&.READ - -

PROBE::TTY\&.READ

-Section: TTY Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::tty.read - called when a tty line will be read -  -

SYNOPSIS

- -

-

-tty.read 
-
- -  -

VALUES

- -

- -driver_name -

-the driver name -
- -

- -buffer -

-the buffer that will receive the characters -
- -

- -file_name -

-the file name lreated to the tty -
- -

- -nr -

-The amount of characters to be read -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::tty.receive.3stap.html b/man/probe::tty.receive.3stap.html deleted file mode 100644 index a9f2f433..00000000 --- a/man/probe::tty.receive.3stap.html +++ /dev/null @@ -1,97 +0,0 @@ - -Manpage of PROBE::TTY\&.RECEIVE - -

PROBE::TTY\&.RECEIVE

-Section: TTY Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::tty.receive - called when a tty receives a message -  -

SYNOPSIS

- -

-

-tty.receive 
-
- -  -

VALUES

- -

- -driver_name -

-the driver name -
- -

- -count -

-The amount of characters received -
- -

- -name -

-the name of the module file -
- -

- -fp -

-The flag buffer -
- -

- -cp -

-the buffer that was received -
- -

- -index -

-The tty Index -
- -

- -id -

-the tty id -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::tty.register.3stap.html b/man/probe::tty.register.3stap.html deleted file mode 100644 index e962124f..00000000 --- a/man/probe::tty.register.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of PROBE::TTY\&.REGISTE - -

PROBE::TTY\&.REGISTE

-Section: TTY Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::tty.register - Called when a tty device is registred -  -

SYNOPSIS

- -

-

-tty.register 
-
- -  -

VALUES

- -

- -driver_name -

-the driver name -
- -

- -name -

-the driver .dev_name name -
- -

- -index -

-the tty index requested -
- -

- -module -

-the module name -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::tty.release.3stap.html b/man/probe::tty.release.3stap.html deleted file mode 100644 index 89075b47..00000000 --- a/man/probe::tty.release.3stap.html +++ /dev/null @@ -1,90 +0,0 @@ - -Manpage of PROBE::TTY\&.RELEASE - -

PROBE::TTY\&.RELEASE

-Section: TTY Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::tty.release - Called when the tty is closed -  -

SYNOPSIS

- -

-

-tty.release 
-
- -  -

VALUES

- -

- -inode_state -

-the inode state -
- -

- -file_name -

-the file name -
- -

- -file_mode -

-the file mode -
- -

- -file_flags -

-the file flags -
- -

- -inode_number -

-the inode number -
- -

- -inode_flags -

-the inode flags -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::tty.resize.3stap.html b/man/probe::tty.resize.3stap.html deleted file mode 100644 index 14e2faee..00000000 --- a/man/probe::tty.resize.3stap.html +++ /dev/null @@ -1,111 +0,0 @@ - -Manpage of PROBE::TTY\&.RESIZE - -

PROBE::TTY\&.RESIZE

-Section: TTY Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::tty.resize - Called when a terminal resize happens -  -

SYNOPSIS

- -

-

-tty.resize 
-
- -  -

VALUES

- -

- -new_ypixel -

-the new ypixel value -
- -

- -old_col -

-the old col value -
- -

- -old_xpixel -

-the old xpixel -
- -

- -old_ypixel -

-the old ypixel -
- -

- -name -

-the tty name -
- -

- -old_row -

-the old row value -
- -

- -new_row -

-the new row value -
- -

- -new_xpixel -

-the new xpixel value -
- -

- -new_col -

-the new col value -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:19 GMT, March 20, 2013 - - diff --git a/man/probe::tty.unregister.3stap.html b/man/probe::tty.unregister.3stap.html deleted file mode 100644 index 3b81b949..00000000 --- a/man/probe::tty.unregister.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of PROBE::TTY\&.UNREGIS - -

PROBE::TTY\&.UNREGIS

-Section: TTY Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::tty.unregister - Called when a tty device is being unregistered -  -

SYNOPSIS

- -

-

-tty.unregister 
-
- -  -

VALUES

- -

- -driver_name -

-the driver name -
- -

- -name -

-the driver .dev_name name -
- -

- -index -

-the tty index requested -
- -

- -module -

-the module name -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/probe::tty.write.3stap.html b/man/probe::tty.write.3stap.html deleted file mode 100644 index ca8b45ec..00000000 --- a/man/probe::tty.write.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of PROBE::TTY\&.WRITE - -

PROBE::TTY\&.WRITE

-Section: TTY Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::tty.write - write to the tty line -  -

SYNOPSIS

- -

-

-tty.write 
-
- -  -

VALUES

- -

- -driver_name -

-the driver name -
- -

- -buffer -

-the buffer that will be written -
- -

- -file_name -

-the file name lreated to the tty -
- -

- -nr -

-The amount of characters -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/probe::udp.disconnect.3stap.html b/man/probe::udp.disconnect.3stap.html deleted file mode 100644 index 4392ba33..00000000 --- a/man/probe::udp.disconnect.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of PROBE::UDP\&.DISCONN - -

PROBE::UDP\&.DISCONN

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::udp.disconnect - Fires when a process requests for a UDP disconnection -  -

SYNOPSIS

- -

-

-udp.disconnect 
-
- -  -

VALUES

- -

- -flags -

-Flags (e.g. FIN, etc) -
- -

- -name -

-The name of this probe -
- -

- -sock -

-Network socket used by the process -
- -  -

CONTEXT

- -

- -The process which requests a UDP disconnection -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/probe::udp.disconnect.return.3stap.html b/man/probe::udp.disconnect.return.3stap.html deleted file mode 100644 index 1cf3fba7..00000000 --- a/man/probe::udp.disconnect.return.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of PROBE::UDP\&.DISCONN - -

PROBE::UDP\&.DISCONN

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::udp.disconnect.return - UDP has been disconnected successfully -  -

SYNOPSIS

- -

-

-udp.disconnect.return 
-
- -  -

VALUES

- -

- -ret -

-Error code (0: no error) -
- -

- -name -

-The name of this probe -
- -  -

CONTEXT

- -

- -The process which requested a UDP disconnection -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/probe::udp.recvmsg.3stap.html b/man/probe::udp.recvmsg.3stap.html deleted file mode 100644 index 51d5e357..00000000 --- a/man/probe::udp.recvmsg.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of PROBE::UDP\&.RECVMSG - -

PROBE::UDP\&.RECVMSG

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::udp.recvmsg - Fires whenever a UDP message is received -  -

SYNOPSIS

- -

-

-udp.recvmsg 
-
- -  -

VALUES

- -

- -name -

-The name of this probe -
- -

- -size -

-Number of bytes received by the process -
- -

- -sock -

-Network socket used by the process -
- -  -

CONTEXT

- -

- -The process which received a UDP message -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/probe::udp.recvmsg.return.3stap.html b/man/probe::udp.recvmsg.return.3stap.html deleted file mode 100644 index 2acfe0bd..00000000 --- a/man/probe::udp.recvmsg.return.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of PROBE::UDP\&.RECVMSG - -

PROBE::UDP\&.RECVMSG

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::udp.recvmsg.return - Fires whenever an attempt to receive a UDP message received is completed -  -

SYNOPSIS

- -

-

-udp.recvmsg.return 
-
- -  -

VALUES

- -

- -name -

-The name of this probe -
- -

- -size -

-Number of bytes received by the process -
- -  -

CONTEXT

- -

- -The process which received a UDP message -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/probe::udp.sendmsg.3stap.html b/man/probe::udp.sendmsg.3stap.html deleted file mode 100644 index 7aa3b9f7..00000000 --- a/man/probe::udp.sendmsg.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of PROBE::UDP\&.SENDMSG - -

PROBE::UDP\&.SENDMSG

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::udp.sendmsg - Fires whenever a process sends a UDP message -  -

SYNOPSIS

- -

-

-udp.sendmsg 
-
- -  -

VALUES

- -

- -name -

-The name of this probe -
- -

- -size -

-Number of bytes sent by the process -
- -

- -sock -

-Network socket used by the process -
- -  -

CONTEXT

- -

- -The process which sent a UDP message -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/probe::udp.sendmsg.return.3stap.html b/man/probe::udp.sendmsg.return.3stap.html deleted file mode 100644 index e4ec55ee..00000000 --- a/man/probe::udp.sendmsg.return.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of PROBE::UDP\&.SENDMSG - -

PROBE::UDP\&.SENDMSG

-Section: Networking Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::udp.sendmsg.return - Fires whenever an attempt to send a UDP message is completed -  -

SYNOPSIS

- -

-

-udp.sendmsg.return 
-
- -  -

VALUES

- -

- -name -

-The name of this probe -
- -

- -size -

-Number of bytes sent by the process -
- -  -

CONTEXT

- -

- -The process which sent a UDP message -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/probe::vm.brk.3stap.html b/man/probe::vm.brk.3stap.html deleted file mode 100644 index f3c71e28..00000000 --- a/man/probe::vm.brk.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of PROBE::VM\&.BRK - -

PROBE::VM\&.BRK

-Section: Memory Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::vm.brk - Fires when a brk is requested (i.e. the heap will be resized) -  -

SYNOPSIS

- -

-

-vm.brk 
-
- -  -

VALUES

- -

- -length -

-the length of the memory segment -
- -

- -name -

-name of the probe point -
- -

- -address -

-the requested address -
- -  -

CONTEXT

- -

- -The process calling brk. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/probe::vm.kfree.3stap.html b/man/probe::vm.kfree.3stap.html deleted file mode 100644 index debb6121..00000000 --- a/man/probe::vm.kfree.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of PROBE::VM\&.KFREE - -

PROBE::VM\&.KFREE

-Section: Memory Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::vm.kfree - Fires when kfree is requested -  -

SYNOPSIS

- -

-

-vm.kfree 
-
- -  -

VALUES

- -

- -ptr -

-pointer to the kmemory allocated which is returned by kmalloc -
- -

- -caller_function -

-name of the caller function. -
- -

- -call_site -

-address of the function calling this kmemory function -
- -

- -name -

-name of the probe point -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/probe::vm.kmalloc.3stap.html b/man/probe::vm.kmalloc.3stap.html deleted file mode 100644 index 6ec9e86d..00000000 --- a/man/probe::vm.kmalloc.3stap.html +++ /dev/null @@ -1,104 +0,0 @@ - -Manpage of PROBE::VM\&.KMALLOC - -

PROBE::VM\&.KMALLOC

-Section: Memory Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::vm.kmalloc - Fires when kmalloc is requested -  -

SYNOPSIS

- -

-

-vm.kmalloc 
-
- -  -

VALUES

- -

- -ptr -

-pointer to the kmemory allocated -
- -

- -caller_function -

-name of the caller function -
- -

- -call_site -

-address of the kmemory function -
- -

- -gfp_flag_name -

-type of kmemory to allocate (in String format) -
- -

- -name -

-name of the probe point -
- -

- -bytes_req -

-requested Bytes -
- -

- -bytes_alloc -

-allocated Bytes -
- -

- -gfp_flags -

-type of kmemory to allocate -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/probe::vm.kmalloc_node.3stap.html b/man/probe::vm.kmalloc_node.3stap.html deleted file mode 100644 index 37946f16..00000000 --- a/man/probe::vm.kmalloc_node.3stap.html +++ /dev/null @@ -1,104 +0,0 @@ - -Manpage of PROBE::VM\&.KMALLOC_ - -

PROBE::VM\&.KMALLOC_

-Section: Memory Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::vm.kmalloc_node - Fires when kmalloc_node is requested -  -

SYNOPSIS

- -

-

-vm.kmalloc_node 
-
- -  -

VALUES

- -

- -ptr -

-pointer to the kmemory allocated -
- -

- -caller_function -

-name of the caller function -
- -

- -call_site -

-address of the function caling this kmemory function -
- -

- -gfp_flag_name -

-type of kmemory to allocate(in string format) -
- -

- -name -

-name of the probe point -
- -

- -bytes_req -

-requested Bytes -
- -

- -bytes_alloc -

-allocated Bytes -
- -

- -gfp_flags -

-type of kmemory to allocate -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/probe::vm.kmem_cache_alloc.3stap.html b/man/probe::vm.kmem_cache_alloc.3stap.html deleted file mode 100644 index dd23e833..00000000 --- a/man/probe::vm.kmem_cache_alloc.3stap.html +++ /dev/null @@ -1,104 +0,0 @@ - -Manpage of PROBE::VM\&.KMEM_CAC - -

PROBE::VM\&.KMEM_CAC

-Section: Memory Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::vm.kmem_cache_alloc - Fires when kmem_cache_alloc is requested -  -

SYNOPSIS

- -

-

-vm.kmem_cache_alloc 
-
- -  -

VALUES

- -

- -ptr -

-pointer to the kmemory allocated -
- -

- -caller_function -

-name of the caller function. -
- -

- -call_site -

-address of the function calling this kmemory function. -
- -

- -gfp_flag_name -

-type of kmemory to allocate(in string format) -
- -

- -name -

-name of the probe point -
- -

- -bytes_req -

-requested Bytes -
- -

- -bytes_alloc -

-allocated Bytes -
- -

- -gfp_flags -

-type of kmemory to allocate -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/probe::vm.kmem_cache_alloc_node.3stap.html b/man/probe::vm.kmem_cache_alloc_node.3stap.html deleted file mode 100644 index 2ce16548..00000000 --- a/man/probe::vm.kmem_cache_alloc_node.3stap.html +++ /dev/null @@ -1,104 +0,0 @@ - -Manpage of PROBE::VM\&.KMEM_CAC - -

PROBE::VM\&.KMEM_CAC

-Section: Memory Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::vm.kmem_cache_alloc_node - Fires when kmem_cache_alloc_node is requested -  -

SYNOPSIS

- -

-

-vm.kmem_cache_alloc_node 
-
- -  -

VALUES

- -

- -ptr -

-pointer to the kmemory allocated -
- -

- -caller_function -

-name of the caller function -
- -

- -call_site -

-address of the function calling this kmemory function -
- -

- -gfp_flag_name -

-type of kmemory to allocate(in string format) -
- -

- -name -

-name of the probe point -
- -

- -bytes_req -

-requested Bytes -
- -

- -bytes_alloc -

-allocated Bytes -
- -

- -gfp_flags -

-type of kmemory to allocate -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/probe::vm.kmem_cache_free.3stap.html b/man/probe::vm.kmem_cache_free.3stap.html deleted file mode 100644 index 505b92fb..00000000 --- a/man/probe::vm.kmem_cache_free.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of PROBE::VM\&.KMEM_CAC - -

PROBE::VM\&.KMEM_CAC

-Section: Memory Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::vm.kmem_cache_free - Fires when kmem_cache_free is requested -  -

SYNOPSIS

- -

-

-vm.kmem_cache_free 
-
- -  -

VALUES

- -

- -ptr -

-Pointer to the kmemory allocated which is returned by kmem_cache -
- -

- -caller_function -

-Name of the caller function. -
- -

- -call_site -

-Address of the function calling this kmemory function -
- -

- -name -

-Name of the probe point -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/probe::vm.mmap.3stap.html b/man/probe::vm.mmap.3stap.html deleted file mode 100644 index 9620e231..00000000 --- a/man/probe::vm.mmap.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of PROBE::VM\&.MMAP - -

PROBE::VM\&.MMAP

-Section: Memory Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::vm.mmap - Fires when an mmap is requested -  -

SYNOPSIS

- -

-

-vm.mmap 
-
- -  -

VALUES

- -

- -length -

-the length of the memory segment -
- -

- -name -

-name of the probe point -
- -

- -address -

-the requested address -
- -  -

CONTEXT

- -

- -The process calling mmap. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/probe::vm.munmap.3stap.html b/man/probe::vm.munmap.3stap.html deleted file mode 100644 index 423b6123..00000000 --- a/man/probe::vm.munmap.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of PROBE::VM\&.MUNMAP - -

PROBE::VM\&.MUNMAP

-Section: Memory Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::vm.munmap - Fires when an munmap is requested -  -

SYNOPSIS

- -

-

-vm.munmap 
-
- -  -

VALUES

- -

- -length -

-the length of the memory segment -
- -

- -name -

-name of the probe point -
- -

- -address -

-the requested address -
- -  -

CONTEXT

- -

- -The process calling munmap. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/probe::vm.oom_kill.3stap.html b/man/probe::vm.oom_kill.3stap.html deleted file mode 100644 index 50239095..00000000 --- a/man/probe::vm.oom_kill.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of PROBE::VM\&.OOM_KILL - -

PROBE::VM\&.OOM_KILL

-Section: Memory Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::vm.oom_kill - Fires when a thread is selected for termination by the OOM killer -  -

SYNOPSIS

- -

-

-vm.oom_kill 
-
- -  -

VALUES

- -

- -name -

-name of the probe point -
- -

- -task -

-the task being killed -
- -  -

CONTEXT

- -

- -The process that tried to consume excessive memory, and thus triggered the OOM. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/probe::vm.pagefault.3stap.html b/man/probe::vm.pagefault.3stap.html deleted file mode 100644 index 0d5e613a..00000000 --- a/man/probe::vm.pagefault.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of PROBE::VM\&.PAGEFAUL - -

PROBE::VM\&.PAGEFAUL

-Section: Memory Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::vm.pagefault - Records that a page fault occurred -  -

SYNOPSIS

- -

-

-vm.pagefault 
-
- -  -

VALUES

- -

- -write_access -

-indicates whether this was a write or read access; 1 indicates a write, while 0 indicates a read -
- -

- -name -

-name of the probe point -
- -

- -address -

-the address of the faulting memory access; i.e. the address that caused the page fault -
- -  -

CONTEXT

- -

- -The process which triggered the fault -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/probe::vm.pagefault.return.3stap.html b/man/probe::vm.pagefault.return.3stap.html deleted file mode 100644 index 6e759881..00000000 --- a/man/probe::vm.pagefault.return.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of PROBE::VM\&.PAGEFAUL - -

PROBE::VM\&.PAGEFAUL

-Section: Memory Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::vm.pagefault.return - Indicates what type of fault occurred -  -

SYNOPSIS

- -

-

-vm.pagefault.return 
-
- -  -

VALUES

- -

- -name -

-name of the probe point -
- -

- -fault_type -

-returns either 0 (VM_FAULT_OOM) for out of memory faults, 2 (VM_FAULT_MINOR) for minor faults, 3 (VM_FAULT_MAJOR) for major faults, or 1 (VM_FAULT_SIGBUS) if the fault was neither OOM, minor fault, nor major fault. -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/probe::vm.write_shared.3stap.html b/man/probe::vm.write_shared.3stap.html deleted file mode 100644 index 113d044f..00000000 --- a/man/probe::vm.write_shared.3stap.html +++ /dev/null @@ -1,76 +0,0 @@ - -Manpage of PROBE::VM\&.WRITE_SH - -

PROBE::VM\&.WRITE_SH

-Section: Memory Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::vm.write_shared - Attempts at writing to a shared page -  -

SYNOPSIS

- -

-

-vm.write_shared 
-
- -  -

VALUES

- -

- -name -

-name of the probe point -
- -

- -address -

-the address of the shared write -
- -  -

CONTEXT

- -

- -The context is the process attempting the write. -  -

DESCRIPTION

- -

- -Fires when a process attempts to write to a shared page. If a copy is necessary, this will be followed by a vm.write_shared_copy. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/probe::vm.write_shared_copy.3stap.html b/man/probe::vm.write_shared_copy.3stap.html deleted file mode 100644 index 42ab5d39..00000000 --- a/man/probe::vm.write_shared_copy.3stap.html +++ /dev/null @@ -1,83 +0,0 @@ - -Manpage of PROBE::VM\&.WRITE_SH - -

PROBE::VM\&.WRITE_SH

-Section: Memory Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::vm.write_shared_copy - Page copy for shared page write -  -

SYNOPSIS

- -

-

-vm.write_shared_copy 
-
- -  -

VALUES

- -

- -name -

-Name of the probe point -
- -

- -zero -

-boolean indicating whether it is a zero page (can do a clear instead of a copy) -
- -

- -address -

-The address of the shared write -
- -  -

CONTEXT

- -

- -The process attempting the write. -  -

DESCRIPTION

- -

- -Fires when a write to a shared page requires a page copy. This is always preceded by a vm.shared_write. -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
CONTEXT
-
DESCRIPTION
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/probe::workqueue.create.3stap.html b/man/probe::workqueue.create.3stap.html deleted file mode 100644 index c8d34f5f..00000000 --- a/man/probe::workqueue.create.3stap.html +++ /dev/null @@ -1,62 +0,0 @@ - -Manpage of PROBE::WORKQUEUE\&.C - -

PROBE::WORKQUEUE\&.C

-Section: Interrupt Request (IRQ) Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::workqueue.create - Creating a new workqueue -  -

SYNOPSIS

- -

-

-workqueue.create 
-
- -  -

VALUES

- -

- -wq_thread -

-task_struct of the workqueue thread -
- -

- -cpu -

-cpu for which the worker thread is created -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/probe::workqueue.destroy.3stap.html b/man/probe::workqueue.destroy.3stap.html deleted file mode 100644 index a4a85bab..00000000 --- a/man/probe::workqueue.destroy.3stap.html +++ /dev/null @@ -1,55 +0,0 @@ - -Manpage of PROBE::WORKQUEUE\&.D - -

PROBE::WORKQUEUE\&.D

-Section: Interrupt Request (IRQ) Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::workqueue.destroy - Destroying workqueue -  -

SYNOPSIS

- -

-

-workqueue.destroy 
-
- -  -

VALUES

- -

- -wq_thread -

-task_struct of the workqueue thread -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/probe::workqueue.execute.3stap.html b/man/probe::workqueue.execute.3stap.html deleted file mode 100644 index ace8f3bf..00000000 --- a/man/probe::workqueue.execute.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of PROBE::WORKQUEUE\&.E - -

PROBE::WORKQUEUE\&.E

-Section: Interrupt Request (IRQ) Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::workqueue.execute - Executing deferred work -  -

SYNOPSIS

- -

-

-workqueue.execute 
-
- -  -

VALUES

- -

- -wq_thread -

-task_struct of the workqueue thread -
- -

- -work_func -

-pointer to handler function -
- -

- -work -

-work_struct* being executed -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/probe::workqueue.insert.3stap.html b/man/probe::workqueue.insert.3stap.html deleted file mode 100644 index 4c7872af..00000000 --- a/man/probe::workqueue.insert.3stap.html +++ /dev/null @@ -1,69 +0,0 @@ - -Manpage of PROBE::WORKQUEUE\&.I - -

PROBE::WORKQUEUE\&.I

-Section: Interrupt Request (IRQ) Tapset (3stap)
Updated: March 2013
Index -Return to Main Contents
- - - - - - - - - - - -  -

NAME

- -probe::workqueue.insert - Queuing work on a workqueue -  -

SYNOPSIS

- -

-

-workqueue.insert 
-
- -  -

VALUES

- -

- -wq_thread -

-task_struct of the workqueue thread -
- -

- -work_func -

-pointer to handler function -
- -

- -work -

-work_struct* being queued -
- -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
VALUES
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/stap-merge.1.html b/man/stap-merge.1.html deleted file mode 100644 index 40c5f50c..00000000 --- a/man/stap-merge.1.html +++ /dev/null @@ -1,177 +0,0 @@ - -Manpage of STAP\-MERGE - -

STAP\-MERGE

-Section: User Commands (1)
Index -Return to Main Contents
- -  -

NAME

- -stap-merge - systemtap per-cpu binary merger -

- - - -

-  -

SYNOPSIS

- -

-
- -stap-merge - -[ -OPTIONS - -] -[ -INPUT FILENAMES - -] -

-  -

DESCRIPTION

- -

-The stap-merge executable applies when the -b option has been used -while running a -stap - -script. The -b option will generate files -per-cpu, based on the timestamp field. Then stap-merge will -merge and sort through the per-cpu files based on the timestamp -field. -

-  -

OPTIONS

- -

-The systemtap merge executable supports the following options. -

-
-v - -
-Verbose mode, displays three extra fields per set of collected data. - -
- -
-
-[cpunumber,sequencenumberofdata,thelengthofthedataset]
-
-
- -
- - -
-o OUTPUT_FILENAME - -
-

-Specify the name of the file you would like the output to be -redirected into. If this option is not specified than the -output will be pushed to standard out. -

-

-  -

EXAMPLES

- - -
- -
-
-$ stap -v -b -e 'probe syscall.open { printf("%s(%d) open\n",
-execname(), pid()) }' 
-
-
-
- -
- - -

-This should result in several -stpd_cpu - -files (each labled with a number -representing which cpu the file was produced from). -

- -
- -

-
-$ stap-merge -v stpd_cpu0 stpd_cpu1
-
-
-
- -
- - -

-Running the stap-merge program in the same directory as the stap -script earlier in the example, will produce an ordered sequence of -packets with the three part label for each set of data. This -result will be pushed through the standard output. An output file -could have been specified using the "-o" option. -

-  -

FILES

- -

-

-
Important files and their corresponding paths can be located in the
-stappaths (7) manual page. -

-

-  -

SEE ALSO

- -stapprobes(3stap), - -stappaths(7), - -staprun(8), - -stapvars(3stap), - -stapex(3stap), - -stap-server(8), - -gdb(1) - -

-  -

BUGS

- -Use the Bugzilla link of the project web page or our mailing list. - -http://sourceware.org/systemtap/,<systemtap@sourceware.org>. - - -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
DESCRIPTION
-
OPTIONS
-
EXAMPLES
-
FILES
-
SEE ALSO
-
BUGS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/stap-server.8.html b/man/stap-server.8.html deleted file mode 100644 index 4353fcca..00000000 --- a/man/stap-server.8.html +++ /dev/null @@ -1,674 +0,0 @@ - -Manpage of STAP\-SERVER - -

STAP\-SERVER

-Section: Maintenance Commands (8)
Index -Return to Main Contents
- -  -

NAME

- -stap-server - systemtap compile server management -

-  -

SYNOPSIS

- -

-
- -[ -service - -] -stap-server - -{ -start - -| -stop - -| -restart - -| -condrestart - -| -try-restart - -| -force-reload - -| -status - -} [ -options - -] -

-  -

DESCRIPTION

- -

-A systemtap compile server listens for connections from stap clients -on a secure SSL network port and accepts requests to run the -stap - -front end. Each server advertises its presence and configuration on the local -network using mDNS (avahi) allowing for automatic detection by clients. -

-

- -The stap-server script aims to provide: -

-
*
-management of systemtap compile servers as a service. -
*
-convenient control over configured servers and individual (ad-hoc) servers. -

-

-  -

ARGUMENTS

- -One of the actions below must be specified: -
-
start - -
-Start servers. The specified servers are started. -If no server is specified, the configured servers are started. If no servers -are configured, a server for the kernel release and architecture of the host -is started. -If a specified server is -already started, this action will -be ignored for that server. If a server fails to start, this action fails. -

-

stop - -
-Stop server(s). The specified servers are stopped. -If no server is specified, all currently running servers are stopped. -If a specified server is -not running, this action -will be successful for that server. If a server fails to stop, this action -fails. -

-

restart - -
-Stop and restart servers. The specified servers are stopped and restarted. -If no server is specified, all currently running servers are stopped and -restarted. If no servers are running, this action behaves like start. -

-

condrestart - -
-Stop and restart servers. The specified servers are stopped and restarted. -If a specified server is not running, it is not started. If no server is -specified, all currently running servers are stopped and restarted. If no -servers are running, none will be started. -

-

try-restart - -
-This action is identical to condrestart. -

-

force-reload - -
-Stop all running servers, reload config files and restart the service as if -start - -was specified. -

-

status - -
-Print information about running servers. Information about the specified -server(s) will be printed. If no server is specified, information about all -running servers will be printed. -

-

-  -

OPTIONS

- -The following options are used to provide additional configuration and -to specify servers to be managed: -

-

-
-c configfile
-This option specifies a global configuration file in addition to the default -global configuration file described -below. This file will be processed after the default global -configuration file. If the -c option is specified more than once, the -last -configuration file specified will be used. -

-

-a architecture
-This option specifies the target architecture of the server and is -analogous to the -a option of stap. See the -stap(1) - -manual page for more details. -The default architecture is the architecture of the host. -

-

-r kernel-release
-This option specifies the target kernel release of the server and is -analogous to the -r option of stap. See the -stap(1) - -manual page for more details. -The default release is that of the currently running kernel. -

-

-I path
-This option specifies an additional path to be searched by the server(s) for -tapsets and is analogous to the -I option of stap. -See the -stap(1) - -manual page for more details. -

-

-R path
-This option specifies the location of the systemtap runtime to be used by the -server(s) and is analogous to the -R option of stap. -See the -stap(1) - -manual page for more details. -

-

-B options
-This option specifies options to be passed to make when building systemtap -modules and is analogous to the -B option of stap. -See the -stap(1) - -manual page for more details. -

-

-i
-This option is a shortcut which specifies one server for each kernel -release installed in /lib/modules/. Previous --I, -R, -B and -u options will be -applied to each server, however previous -a options will be ignored and -the default architecture will be used. -

-

-n nickname
-This option allows the specification of a server configuration by nickname. -When -n is specified, a currently running server with the given nickname -will be searched for. If no currently running server with the given nickname is -found, a server configuration with the given nickname will be searched for in -the configuration files for default servers, -or the path configured in the global configuration file or -the configuration file specified by the --c option. If a server configuration for the given -nickname is found, the --a, -r, -I, -R, -B and -u options for -that server will be used as if they were specified on the command line. If no -configuration with the given nickname is found, and the action is -start - -(or an action behaving like start -(see ARGUMENTS), the server will be started with the given nickname. -If no configuration with the given nickname is found, and the action is not -start - -(or an action behaving like start), it is an error. If a nickname is -not specified for a server which is being started, its nickname will be its -process id. -

-

-p pid
-This option allows the specification of a server configuration by process id. -When -p is specified, a currently running server with the given process -id will be searched for. If no such server is found, it is an error. If a server -with the given procss id is found, the --a, -r, -I, -R, -B and -u options for -that server will be used as if they were specified on the command line. -

-

-u user-name
-Each systemtap compile server is normally run by the user name -stap-server (for the initscript) or as the user invoking -stap-server, -unless otherwise configured (see FILES). This option -specifies the user name used to run the server(s). The user name specified -must be a member of the group stap-server. -

-

--log logfile
-This option allows the specification of a separate log file for each server. -Each --log option is added to a list which will be applied, in turn, to each -server specified. If more servers are specified than --log options, the default -log file (see FILES) will be used for subsequent servers. -

-

--port port-number
-This option allows the specification of a specific network port for each -server. Each --port option is added to a list which will be applied, in turn, -to each server specified. If more servers are specified than ---port options, a randomly selected port is used for subsequent servers. -

-

--ssl certificate-db-path
-This option allows the specification of a separate NSS certificate database -for each server. Each --ssl option is added to a list which will be applied, -in turn, to each server specified. If more servers are specified than --ssl -options, the default certificate database -(see FILES) for subsequent servers. -

-

--max-threads threads
-This option allows the specification of the maximum number of worker threads -to handle concurrent requests. If threads == 0, each request will be -handled on the main thread, serially. The default is the number of available -processor cores. -

-

-  -

CONFIGURATION

- -

-Configuration files allow us to: -

-
*
-specify global configuration of logging, server configuration files, status -files and other global parameters. -
*
-specify which servers are to be started by default. -

-

-  -

Global Configuration

- -

-The Global Configuration file contains -variable assignments used to configure the overall operation of the service. -Each line beginning with a '#' character is ignored. All other lines must be -of the form VARIABLE=VALUE. This is not a shell script. The entire -contents of the line after the = will be assigned as-is to the variable. -

-The following variables may be assigned: -

-

-
CONFIG_PATH - -
-Specifies the absolute path of the directory containing the default server -configurations. -

-

STAT_PATH - -
-Specifies the absolute path of the running server status directory. -

-

LOG_FILE - -
-Specifies the absolute path of the log file. -

-

STAP_USER - -
-Specifies the userid which will be used to run the server(s) -(default: for the initscript stap-server, otherwise the user running -stap-server). -

-

-  -

Individual Server Configuration

- -

-Each server configuration file configures a server to be started when no -server is specified for the start action, or an action behaving like the -start action (see ARGUMENTS). Each configuration file contains -variable assignments used to configure an individual server. -

-Each line beginning with a '#' character is ignored. All other lines must be -of the form VARIABLE=VALUE. This is not a shell script. The entire -contents of the line after the = will be assigned as-is to the variable. -

-Each configuration file must have a -filename suffix of .conf. The default -location of these files can be -overridden in the global configuration file using the -c option -(see OPTIONS). -

-The following variables may be assigned: -

-
ARCH - -
-Specifies the target architecture for this server and corresponds to the --a option (see OPTIONS). If ARCH is not set, the -architecture of the host will be used. -

-

RELEASE - -
-Specifies the kernel release for this server -and corresponds to the --r option (see OPTIONS). If RELEASE is not set, the -release -of the kernel running on the host will be used. -
  -
BUILD - -
-Specifies options to be passed to the make process used by -systemtap to build kernel modules. -This an array variable with each element corresponding to a --B option (see OPTIONS). Using the form BUILD=STRING clears -the array and sets the first element to STRING. Using the form -BUILD+=STRING adds STRING as an additional element to the array. -
  -
INCLUDE - -
-Specifies a list of directories to be searched by the server for tapsets. -This an array variable with each element corresponding to an --I option (see OPTIONS). Using the form INCLUDE=PATH clears -the array and sets the first element to PATH. Using the form -INCLUDE+=PATH adds PATH as an additional element to the array. -

-

RUNTIME - -
-Specifies the directory which contains the systemtap runtime code to be used -by this server -and corresponds to the --R option (see OPTIONS). -

-

USER - -
-Specifies the user name to be used to run this server -and corresponds to the --u option (see OPTIONS). -

-

NICKNAME - -
-Specifies the nickname to be used to refer to this server -and corresponds to the --n option (see OPTIONS). -

-

LOG - -
-Specifies the location of the log file to be used by this server and corresponds to the ---log option (see OPTIONS). -

-

PORT - -
-Specifies the network port to be used by this server and corresponds to the ---port option (see OPTIONS). -

-

SSL - -
-Specifies the location of the NSS certificate database to be used by this server and corresponds -to the ---ssl option (see OPTIONS). -

-

MAXTHREADS - -
-Specifies the maximum number of worker threads to handle concurrent requests to be used by this server -and corresponds to the --max-threads option (see OPTIONS). -

-

-  -

SERVER AUTHENTICAION

- -The security of the SSL network connection between the client and server -depends on the proper -management of server certificates. -

-

- -The trustworthiness of a given systemtap compile server can not be determined -automatically without a trusted certificate authority issuing systemtap compile server -certificates. This is -not practical in everyday use and so, clients must authenticate servers -against their own database of trusted server certificates. In this context, -establishing a given server as trusted by a given client means adding -that server[aq]s certificate to the -client[aq]s database of trusted servers. -

-

- -For the stap-server initscript, on the local host, this is handled -automatically. -When the systemtap-server package is installed, the server[aq]s -certificate for the default user (stap-server) is automatically -generated and installed. This means that servers started by the -stap-server initscript, -with the default user, are automatically trusted by clients on the local -host, both as an SSL peer and as a systemtap module signer. Furthermore, -when stap is invoked by an unprivileged user -(not root, not a member of the group stapdev, but a member of the group -stapusr and possibly the group stapsys), the options --use-server -and --privilege -are automatically added to the specified options. -This means that unprivileged users -on the local host can use a server on the local host -in unprivileged mode with no further setup or options required. -

-

- -In order to use a server running on another host, that server[aq]s certificate -must be installed on the client[aq]s host. -See the --trust-servers option in the -stap(1) - -manual page for more details and README.unprivileged in the systemtap sources -for more details.. -

-  -

EXAMPLES

- -See the -stapex(3stap) - -manual page for a collection of sample systemtap scripts. -

- -To start the configured servers, or the default server, if none are configured: -

- - $ [ service ] stap-server start - -

- -To start a server for each kernel installed in /lib/modules: -

- - $ [ service ] stap-server start -i - -

- -To obtain information about the running server(s): -

- - $ [ service ] stap-server status - -

- -To start a server like another one, except targeting a different architecture, -by referencing the first server[aq]s nickname: -

- - $ [ service ] stap-server start -n NICKNAME -a ARCH - -

- -To stop one of the servers by referencing its process id (obtained by running -stap-server status): -

- - $ [ service ] stap-server stop -p PID - -

- -To run a script using a compile server: -

- - $ stap SCRIPT --use-server - -

- -To run a script as an unprivileged user using a compile server: -

- - $ stap SCRIPT - -

- -To stop all running servers: -

- - $ [ service ] stap-server stop - -

-  -

SAFETY AND SECURITY

- -Systemtap is an administrative tool. It exposes kernel internal data -structures and potentially private user information. See the -stap(1) - -manual page for additional information on safety and security. -

-

- -As a network server, stap-server should be activated with care in -order to limit the potential effects of bugs or mischevious users. -Consider the following prophylactic measures. -

-
1
-Run stap-server as an unprivileged user, never as root. -

-When invoked as a -service (i.e. service stap-server ...), each server is run, -by default, as the user stap-server. -When invoked directly (i.e. stap-server ...), each server is run, -by default, as the invoking user. In each case, another user may be selected by -using the -u option on invocation, by specifying -STAP_USER=username in the global configuration file or by specifying -USER=username in an individual server configuration file. The invoking -user must have authority to run processes as another user. -See CONFIGURATION. -

-The selected user must have write access to the server log file. -The location of the server log file may -be changed by setting LOG_FILE=path in the global configuration file. -See CONFIGURATION. -

-The selected user must have -read/write access to the directory containing the server status files. -The location of the server -status files may be changed by setting STAT_PATH=path in the global -configuration file. -See CONFIGURATION. -

-The selected user must have -read/write access to the uprobes.ko build directory and its files. -

-Neither form of stap-server will run if the selected user is root. -

-

2
-Run stap-server requests with resource limits that impose maximum -cpu time, file size, memory consumption, in order to bound -the effects of processing excessively large or bogus inputs. -

-When the user running the server is stap-server, -each server request is run with limits specified in ~stap-server/.systemtap/rc -otherwise, no limits are imposed. -

-

3
-Run stap-server with a TMPDIR environment variable that -points to a separate and/or quota-enforced directory, in -order to prevent filling up of important filesystems. -

-The default TMPDIR is /tmp/. -

-

4
-Activate network firewalls to limit stap client connections -to relatively trustworthy networks. -

-For automatic selection of servers by clients, avahi must be installed -on both the server and client hosts and mDNS messages must be allowed through the firewall. -

-

-

- -The systemtap compile server and its related utilities use the Secure Socket Layer -(SSL) as implemented by Network Security Services (NSS) -for network security. NSS is also used -for the generation and management of certificates. The related -certificate databases must be protected in order to maintain the security of -the system. -Use of the utilities provided will help to ensure that the proper protection -is maintained. The systemtap client will check for proper -access permissions before making use of any certificate database. -

-  -

FILES

- -
-
Important files and their corresponding paths can be located in the
-stappaths (7) manual page. -

-

-  -

SEE ALSO

- -stap(1), - -staprun(8), - -stapprobes(3stap), - -stappaths(7), - -stapex(3stap), - -avahi, - -ulimit(1), - -NSS - -

-  -

BUGS

- -Use the Bugzilla link of the project web page or our mailing list. - -http://sourceware.org/systemtap/, <systemtap@sourceware.org>. - - -

-

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
DESCRIPTION
-
ARGUMENTS
-
OPTIONS
-
CONFIGURATION
-
Global Configuration
-
Individual Server Configuration
-
SERVER AUTHENTICAION
-
EXAMPLES
-
SAFETY AND SECURITY
-
FILES
-
SEE ALSO
-
BUGS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:21 GMT, March 20, 2013 - - diff --git a/man/stap.1.html b/man/stap.1.html deleted file mode 100644 index 8afae72b..00000000 --- a/man/stap.1.html +++ /dev/null @@ -1,2940 +0,0 @@ - -Manpage of STAP - -

STAP

-Section: User Commands (1)
Index -Return to Main Contents
- -  -

NAME

- -stap - systemtap script translator/driver -

- - - -

-  -

SYNOPSIS

- -

-
- -stap - -[ -OPTIONS - -] -FILENAME - -[ -ARGUMENTS - -] -
- -stap - -[ -OPTIONS - -] -- - -[ -ARGUMENTS - -] -
- -stap - -[ -OPTIONS - -] --e SCRIPT - -[ -ARGUMENTS - -] -
- -stap - -[ -OPTIONS - -] --l PROBE - -[ -ARGUMENTS - -] -
- -stap - -[ -OPTIONS - -] --L PROBE - -[ -ARGUMENTS - -] -

-  -

DESCRIPTION

- -

-The -stap - -program is the front-end to the Systemtap tool. It accepts probing -instructions (written in a simple scripting language), translates -those instructions into C code, compiles this C code, and loads the -resulting module into a running Linux kernel or a DynInst user-space -mutator, to perform the requested system trace/probe functions. You -can supply the script in a named file (FILENAME) from standard input -(use - instead of FILENAME), or from the command line (using -e -SCRIPT). The program runs until it is interrupted by the user, or if -the script voluntarily invokes the -exit() - -function, or by sufficient number of soft errors. -

- -The language, which is described in a later section, is strictly typed, -declaration free, procedural, and inspired by -awk. - -It allows source code points or events in the kernel to be associated -with handlers, which are subroutines that are executed synchronously. It is -somewhat similar conceptually to "breakpoint command lists" in the -gdb - -debugger. -

-  -

OPTIONS

- -The systemtap translator supports the following options. Any other option -prints a list of supported options. Options may be given on the command line, -as usual. If the file $SYSTEMTAP_DIR/rc exist, options are also loaded from -there and interpreted first. ($SYSTEMTAP_DIR defaults to $HOME/.systemtap if unset.) -
-
- - -
-Use standard input instead of a given FILENAME as probe language input, -unless -e SCRIPT is given. -
-h --help - -
-Show help message. -
-V --version - -
-Show version message. -
-p NUM - -
-Stop after pass NUM. The passes are numbered 1-5: parse, elaborate, -translate, compile, run. See the -PROCESSING - -section for details. -
-v - -
-Increase verbosity for all passes. Produce a larger volume of -informative (?) output each time option repeated. -
--vp ABCDE - -
-Increase verbosity on a per-pass basis. For example, "--vp 002" -adds 2 units of verbosity to pass 3 only. The combination "-v --vp 00004" -adds 1 unit of verbosity for all passes, and 4 more for pass 5. -
-k - -
-Keep the temporary directory after all processing. This may be useful -in order to examine the generated C code, or to reuse the compiled -kernel object. -
-g - -
-Guru mode. Enable parsing of unsafe expert-level constructs like -embedded C. -
-P - -
-Prologue-searching mode. Activate heuristics to work around incorrect -debugging information for $target variables. -
-u - -
-Unoptimized mode. Disable unused code elision during elaboration. -
-w - -
-Suppressed warnings mode. Disables all warning messages. -
-b - -
-Use bulk mode (percpu files) for kernel-to-user data transfer. -
-t - -
-Collect timing information on the number of times probe executes -and average amount of time spent in each probe-point. Also shows -the derivation for each probe-point. -
-sNUM - -
-Use NUM megabyte buffers for kernel-to-user data transfer. On a -multiprocessor in bulk mode, this is a per-processor amount. -
-I DIR - -
-Add the given directory to the tapset search directory. See the -description of pass 2 for details. -
-D NAME=VALUE - -
-Add the given C preprocessor directive to the module Makefile. These can -be used to override limit parameters described below. -
-B NAME=VALUE - -
-Add the given make directive to the kernel module build's make invocation. -These can be used to add or override kconfig options. -
-a ARCH - -
-Use a cross-compilation mode for the given target architecture. This requires -access to the cross-compiler and the kernel build tree, and goes along -with the --B CROSS_COMPILE=arch-tool-prefix- and -r /build/tree - -options. -
--modinfo NAME=VALUE - -
-Add the name/value pair as a MODULE_INFO macro call to the generated module. -This may be useful to inform or override various module-related checks in -the kernel. -
-G NAME=VALUE - -
-Sets the value of global variable NAME to VALUE when staprun is invoked. -This applies to scalar variables declared global in the script/tapset. -
-R DIR - -
-Look for the systemtap runtime sources in the given directory. -
-r /DIR - -
-Build for kernel in given build tree. Can also be set with the -SYSTEMTAP_RELEASE - -environment variable. -
-r RELEASE - -
-Build for kernel in build tree -/lib/modules/RELEASE/build. - -Can also be set with the -SYSTEMTAP_RELEASE - -environment variable. -
-m MODULE - -
-Use the given name for the generated kernel object module, instead -of a unique randomized name. The generated kernel object module is -copied to the current directory. -
-d MODULE - -
-Add symbol/unwind information for the given module into the kernel object -module. This may enable symbolic tracebacks from those modules/programs, -even if they do not have an explicit probe placed into them. -
--ldd - -
-Add symbol/unwind information for all shared libraries suspected by -ldd to be necessary for user-space binaries being probe or listed with -the -d option. Caution: this can make the probe modules considerably -larger. -
--all-modules - -
-Equivalent to specifying "-dkernel" and a "-d" for each kernel module that is -currently loaded. Caution: this can make the probe modules considerably -larger. -
-o FILE - -
-Send standard output to named file. In bulk mode, percpu files will -start with FILE_ (FILE_cpu with -F) followed by the cpu number. -This supports strftime(3) formats for FILE. -
-c CMD - -
-Start the probes, run CMD, and exit when CMD finishes. This also has the -effect of setting target() to the pid of the command ran. -
-x PID - -
-Sets target() to PID. This allows scripts to be written that filter on -a specific process. -
-e SCRIPT - -
-Run the given SCRIPT specified on the command line. -
-l PROBE - -
-Instead of running a probe script, just list all available probe -points matching the given single probe point. The pattern may include -wildcards and aliases, but not comma-separated multiple probe points. -The process result code will indicate failure if there are no matches. -
-L PROBE - -
-Similar to "-l", but list probe points and script-level local variables. -
-F - -
-Without -o option, load module and start probes, then detach from the module -leaving the probes running. -With -o option, run staprun in background as a daemon and show its pid. -
-S size[,N] - -
-Sets the maximum size of output file and the maximum number of output files. -If the size of output file will exceed -size - -, systemtap switches output file to the next file. And if the number of -output files exceed -N - -, systemtap removes the oldest output file. You can omit the second argument. -
--skip-badvars - -
-Ignore unresolvable or run-time-inaccessible context variables and -substitute with 0, without errors. -

-

--suppress-handler-errors - -
-Wrap all probe handlers into something like this - -
- -
-
-try { ... } catch { next }
-
-
- -
- - -block, which causes any runtime errors to be quietly suppressed. -Suppressed errors do not count against -MAXERRORS - -limits. In this mode, the -MAXSKIPPED - -limits are also suppressed, so that many errors and skipped probes -may be accumulated during a script's runtime. Any overall counts will -still be reported at shutdown. -

-

--compatible VERSION - -
-Suppress recent script language or tapset changes which are incompatible -with given older version of systemtap. This may be useful if a much older -systemtap script fails to run. See the DEPRECATION section for more -details. -

-

--check-version - -
-This option is used to check if the active script has any constructors -that may be systemtap version specific. See the DEPRECATION section -for more details. -

-

--clean-cache - -
-This option prunes stale entries from the cache directory. This is normally -done automatically after successful runs, but this option will trigger the -cleanup manually and then exit. See the CACHING section for more details about -cache limits. -

-

--disable-cache - -
-This option disables all use of the cache directory. No files will be either -read from or written to the cache. -

-

--poison-cache - -
-This option treats files in the cache directory as invalid. No files will be -read from the cache, but resulting files from this run will still be written to -the cache. This is meant as a troubleshooting aid when stap's cached behavior -seems to be misbehaving. -

-

--privilege[=stapusr | =stapsys | =stapdev]
-This option instructs stap to examine the script looking for constructs -which are not allowed for the specified privilege level (see UNPRIVILEGED USERS). -Compilation fails if any such -constructs are used. -If stapusr or stapsys are specified when using a compile server -(see --use-server), -the server will examine the script and, if compilation succeeds, the -server will cryptographically sign the resulting kernel module, certifying -that is it safe for use by users at the specified privilege level. -

-If --privilege has not been specified, --pN has not been specified with N < 5, -and the invoking user is not -root, and is not a member of the group stapdev, -then stap will automatically -add the appropriate --privilege option to the options already specified. -

-

--unprivileged - -
-This option is equivalent to --privilege=stapusr. -

-

--use-server[=HOSTNAME[:PORT] | =IP_ADDRESS[:PORT] | =CERT_SERIAL]
-Specify compile-server(s) to be used for compilation and/or in conjunction -with ---list-servers - -and ---trust-servers - -(see below). If no argument is -supplied, then the default in unprivileged mode (see ---privilege) - -is to select compatible servers which are trusted as SSL peers and as -module signers and currently online. Otherwise the default is to select -compatible servers which are trusted as SSL peers -and currently online. ---use-server - -may be -specified more than once, in which case a list of servers is accumulated -in the order specified. Servers may be specified by host name, ip address, or -by certificate serial number (obtained using ---list-servers). - -The latter is most commonly used when adding or revoking -trust in a server (see ---trust-servers - -below). If a server is specified by host name or ip address, then an optional -port number may be specified. This is useful for accessing servers which are -not on the local network or to specify a particular server. -

-IP addresses may be IPv4 or IPv6 addresses. -

-If a particular IPv6 address is link local and exists -on more than one interface, the intended interface may be specified by appending the address with -a percent sign (%) followed by the intended interface name. For example, -"fe80::5eff:35ff:fe07:55ca%eth0". -

-In order to specify a port number with an IPv6 address, it is necessary to enclose the IPv6 address -in square brackets ([]) in order to separate the port number from the rest of the address. For -example, "[fe80::5eff:35ff:fe07:55ca]:5000" or "[fe80::5eff:35ff:fe07:55ca%eth0]:5000". -

-If --use-server has not been specified, --pN has not been specified with N < 5, -and the invoking user not root, -is not a member of the group stapdev, but is a member of the group -stapusr, then stap will automatically -add --use-server to the options already specified. -

-

--use-server-on-error[=yes|=no]
-Instructs stap to retry compilation of a script using a compile server if -compilation on the local host fails in a manner which suggests that it might -succeed using a server. -If this option is not specified, the default is no. -If no argument is provided, then the default -is yes. Compilation will be retried for certain types of errors -(e.g. insufficient data or resources) which may not occur during -re-compilation by a compile -server. Compile servers will be selected automatically for the -re-compilation attempt as if --use-server was specified with no -arguments. -

-

--list-servers[=SERVERS] - -
-Display the status of the requested -SERVERS, - -where -SERVERS - -is a comma-separated -list of server attributes. The list of attributes is combined to filter the -list of servers displayed. Supported attributes are: -
-
-
all - -
-specifies all known servers (trusted SSL peers, trusted module signers, online -servers). -
specified - -
-specifies servers specified using ---use-server. - -
online - -
-filters the output by retaining information about servers which are currently -online. -
trusted - -
-filters the output by retaining information about servers which are trusted as -SSL peers. -
signer - -
-filters the output by retaining information about servers which are trusted as -module signers (see ---privilege). - -
compatible - -
-filters the output by retaining information about servers which are compatible -with the current kernel release and architecture. -
-
- -
-If no argument is provided, then the default is -specified. - -If no servers were specified using ---use-server, - -then the default servers for ---use-server - -are listed. -

-Note that ---list-servers - -uses the -avahi-daemon - -service to detect online servers. If this service is not avaiable, then ---list-servers - -will fail to detect any -online - -servers. In order for ---list-servers - -to detect servers listening on IPv6 addresses, the -avahi-daemon - -configuration file -/etc/avahi/avahi-daemon.conf - -must contain an active "use-ipv6=yes" line. The service must be restarted after adding this line -in order for IPv6 to be enabled. -

-

--trust-servers[=TRUST_SPEC] - -
-Grant or revoke trust in compile-servers, specified using ---use-server - -as specified by TRUST_SPEC, -where TRUST_SPEC is a comma-separated list specifying the trust which is to -be granted or revoked. Supported elements are: -
-
-
ssl - -
-trust the specified servers as SSL peers. -
signer - -
-trust the specified servers as module signers (see ---privilege). - -Only root can specify -signer. - -
all-users - -
-grant trust as an ssl peer for all users on the local host. The default is -to grant trust as an ssl peer for the current user only. Trust as a module -signer is always granted for all users. Only root can specify -all-users. - -
revoke - -
-revoke the specified trust. The default is to grant it. -
no-prompt - -
-do not prompt the user for confirmation before carrying out the requested -action. The default is to prompt the user for confirmation. -
-
- -
-If no argument is provided, then the default is -ssl. - -If no servers were specified using ---use-server, - -then no trust will be granted or revoked. -
-Unless no-prompt has been specified, -the user will be prompted to confirm the trust to be granted or revoked before -the operation is performed. -

-

--dump-probe-types - -
-Dumps a list of supported probe types. If ---privilege=stapusr - -is also specified, the list will be limited to probe types available to unprivileged users. -

-

--remote URL - -
-Set the execution target to the given host. This option may be -repeated to target multiple execution targets. Passes 1-4 are -completed locally as normal to build the script, and then pass 5 will -copy the module to the target and run it. Acceptable URL forms include: -[USER@]HOSTNAME - -and -ssh://[USER@]HOSTNAME/ - -This mode uses ssh, optionally using a username not matching your own. -If a custom ssh_config file is in use, add -SendEnv LANG - -to retain internationalization functionality. -The -direct:// - -URL is available as a special loopback mode to run on the local host. -

-

--remote-prefix - -
-Prefix each line of remote output with "N:", where N is the index of the remote -execution target from which the given line originated. -

-

--download-debuginfo[=OPTION] - -
-Enable, disable or set a timeout for the automatic debuginfo downloading feature -offered by abrt as specified by OPTION, where OPTION is one of the following: -
-
-
yes - -
-enable automatic downloading of debuginfo with no timeout. This is the same -as not providing an OPTION value to ---download-debuginfo - -
no - -
-explicitly disable automatic dowloading of debuginfo. This is the same as -not using the option at all. -
ask - -
-show abrt output, and ask before continuing download. No timeout will be set. -
<timeout> - -
-specify a timeout as a positive number to stop the download if it is taking -too long. -
-
- -
-

-

--rlimit-as=NUM - -
-Specify the maximum size of the process's virtual memory (address space), -in bytes. If nothing is specified, no limits are imposed. -

-

--rlimit-cpu=NUM - -
-Specify the CPU time limit, in seconds. If nothing is specified, no limits are -imposed. -

-

--rlimit-nproc=NUM - -
-Specify the maximum number of processes that can be created. If nothing is -specified, no limits are imposed. -

-

--rlimit-stack=NUM - -
-Specify the maximum size of the process stack, in bytes. If nothing is specified, -no limits are imposed. -

-

--rlimit-fsize=NUM - -
-Specify the maximum size of files that the process may create, in bytes. If nothing is specified, no limits are -imposed. -

-

--sysroot=DIR - -
-Specify sysroot directory where target files (executables, libraries, etc.) -are located. With -r RELEASE, the sysroot will be searched for the -appropriate kernel build directory. With -r /DIR, however, the sysroot -will not be used to find the kernel build. -

-

--sysenv=VAR=VALUE - -
-Provide an alternate value for an environment variable where the value on a -remote system differs. Path variables (e.g. PATH, LD_LIBRARY_PATH) are assumed -to be relative to the directory provided by --sysroot, if provided. -

-

--suppress-time-limits - -
-Disable -DSTP_NO_OVERLOAD -MAXACTION -MAXTRYLOCK options. This option -requires guru mode. -

-

--runtime=MODE - -
-Set the pass-5 runtime mode. Valid options are kernel (default) -and dyninst. See -ALTERNATE RUNTIMES - -below for more information. -

-

--dyninst - -
-Shorthand for --runtime=dyninst. -

-

-  -

ARGUMENTS

- -

-Any additional arguments on the command line are passed to the script -parser for substitution. See below. -

-  -

SCRIPT LANGUAGE

- -

-The systemtap script language resembles -awk. - -There are two main outermost constructs: probes and functions. Within -these, statements and expressions use C-like operator syntax and -precedence. -

-  -

GENERAL SYNTAX

- -Whitespace is ignored. Three forms of comments are supported: -
-
- -# ... shell style, to the end of line, except for $# and @# - -
- -// ... C++ style, to the end of line - -
- -/* ... C style ... */ - -
- -Literals are either strings enclosed in double-quotes (passing through -the usual C escape codes with backslashes, and with adjacent string -literals glued together, also as in C), or integers (in decimal, -hexadecimal, or octal, using the same notation as in C). All strings -are limited in length to some reasonable value (a few hundred bytes). -Integers are 64-bit signed quantities, although the parser also -accepts (and wraps around) values above positive 2**63. -

- -In addition, script arguments given at the end of the command line may -be inserted. Use -$1 ... $<NN> - -for insertion unquoted, -@1 ... @<NN> - -for insertion as a string literal. The number of arguments may be accessed -through -$# - -(as an unquoted number) or through -@# - -(as a quoted number). These may be used at any place a token may begin, -including within the preprocessing stage. Reference to an argument -number beyond what was actually given is an error. -

-  -

PREPROCESSING

- -A simple conditional preprocessing stage is run as a part of parsing. -The general form is similar to the -cond ? exp1 : exp2 - -ternary operator: - -
- -
-
-%( CONDITION %? TRUE-TOKENS %)
-%( CONDITION %? TRUE-TOKENS %: FALSE-TOKENS %)
-
-
- -
- - -The CONDITION is either an expression whose format is determined by its -first keyword, or a string literals comparison or a numeric literals -comparison. It can be also composed of many alternatives and conjunctions -of CONDITIONs (meant as in previous sentence) using || and && respectively. -However, parentheses are not supported yet, so remembering that conjunction -takes precedence over alternative is important. -

- -If the first part is the identifier -kernel_vr or kernel_v - -to refer to the kernel version number, with ("2.6.13-1.322FC3smp") or -without ("2.6.13") the release code suffix, then -the second part is one of the six standard numeric comparison operators -<, <=, ==, !=, >, and >=, - -and the third part is a string literal that contains an RPM-style -version-release value. The condition is deemed satisfied if the -version of the target kernel (as optionally overridden by the --r - -option) compares to the given version string. The comparison is -performed by the glibc function -strverscmp. - -As a special case, if the operator is for simple equality -(==), - -or inequality -(!=), - -and the third part contains any wildcard characters -(* or ? or [), - -then the expression is treated as a wildcard (mis)match as evaluated -by -fnmatch. - -

- -If, on the other hand, the first part is the identifier -arch - -to refer to the processor architecture (as named by the kernel -build system ARCH/SUBARCH), then the second -part is one of the two string comparison operators -== or !=, - -and the third part is a string literal for matching it. This -comparison is a wildcard (mis)match. -

- -Similarly, if the first part is an identifier like -CONFIG_something - -to refer to a kernel configuration option, then the second part is -== or !=, - -and the third part is a string literal for matching the value -(commonly "y" or "m"). Nonexistent or unset kernel configuration -options are represented by the empty string. This comparison is also -a wildcard (mis)match. -

- -If the first part is the identifier -systemtap_v, - -the test refers to the systemtap compatibility version, which may be -overridden for old scripts with the ---compatible - -flag. The comparison operator is as is for -kernel_v - -and the right operand is a version string. See also the DEPRECATION -section below. -

- -If the first part is the identifier -systemtap_privilege, - -the test refers to the privilege level that the systemtap script is -compiled with. Here the second part is -== or !=, - -and the third part is a string literal, either "stapusr" or "stapsys" -or "stapdev". -

- -Otherwise, the CONDITION is expected to be a comparison between two string -literals or two numeric literals. In this case, the arguments are the only -variables usable. -

- -The TRUE-TOKENS and FALSE-TOKENS are zero or more general parser -tokens (possibly including nested preprocessor conditionals), and are -passed into the input stream if the condition is true or false. For -example, the following code induces a parse error unless the target -kernel version is newer than 2.6.5: - -
- -

-
-%( kernel_v <= "2.6.5" %? **ERROR** %) # invalid token sequence
-
-
- -
- - -The following code might adapt to hypothetical kernel version drift: - -
- -
-
-probe kernel.function (
-  %( kernel_v <= "2.6.12" %? "__mm_do_fault" %:
-     %( kernel_vr == "2.6.13*smp" %? "do_page_fault" %:
-        UNSUPPORTED %) %)
-) { /* ... */ }
-
-%( arch == "ia64" %?
-   probe syscall.vliw = kernel.function("vliw_widget") {}
-%)
-
-
- -
- - -

-  -

PREPROCESSOR MACROS (EXPERIMENTAL)

- -The preprocessor also supports a simple macro facility, run as a -separate pass before conditional preprocessing. -

- -Macros are defined using the following construct: - -
- -

-
-@define NAME %( BODY %)
-@define NAME(PARAM_1, PARAM_2, ...) %( BODY %)
-
-
- -
- - -Macros, and parameters inside a macro body, are both invoked by -prefixing the macro name with an @ symbol: - -
- -
-
-@define foo %( x %)
-@define add(a,b) %( ((@a)+(@b)) %)
-
-   @foo = @add(2,2)
-
-
- -
- - -

- -Macro expansion is currently performed in a separate pass before -conditional compilation. Therefore, both TRUE- and FALSE-tokens in -conditional expressions will be macroexpanded regardless of how the -condition is evaluated. This can sometimes lead to errors: - -
- -

-
-// The following results in a conflict:
-%( CONFIG_UTRACE == "y" %?
-    @define foo %( process.syscall %)
-%:
-    @define foo %( **ERROR** %)
-%)
-
-// The following works properly as expected:
-@define foo %(
-  %( CONFIG_UTRACE == "y" %? process.syscall %: **ERROR** %)
-%)
-
-
- -
- - -The first example is incorrect because both @defines are evaluated in -a pass prior to the conditional being evaluated. -

-Normally, a macro definition is local to the file it occurs in. Thus, -defining a macro in a tapset does not make it available to the user of -the tapset. Publically available library macros can be defined by -including .stpm files on the tapset search path. These files may only -contain @define constructs, which become visible across all tapsets -and user scripts. -

-  -

VARIABLES

- -Identifiers for variables and functions are an alphanumeric sequence, -and may include "_" and "$" characters. They may not start with a -plain digit, as in C. Each variable is by default local to the probe -or function statement block within which it is mentioned, and therefore -its scope and lifetime is limited to a particular probe or function -invocation. - -

- -Scalar variables are implicitly typed as either string or integer. -Associative arrays also have a string or integer value, and a -tuple of strings and/or integers serving as a key. Here are a -few basic expressions. - -
- -

-
-var1 = 5
-var2 = "bar"
-array1 [pid()] = "name"     # single numeric key
-array2 ["foo",4,i++] += 5   # vector of string/num/num keys
-if (["hello",5,4] in array2) println ("yes")  # membership test
-
-
- -
- - -

- -The translator performs -type inference - -on all identifiers, including array indexes and function parameters. -Inconsistent type-related use of identifiers signals an error. -

- -Variables may be declared global, so that they are shared amongst all -probes and live as long as the entire systemtap session. There is one -namespace for all global variables, regardless of which script file -they are found within. Concurrent access to global variables is -automatically protected with locks, see the -SAFETY AND SECURITY - -section for more details. A global declaration may be written at the -outermost level anywhere, not within a block of code. Global -variables which are written but never read will be displayed -automatically at session shutdown. The translator will -infer for each its value type, and if it is used as an array, its key -types. Optionally, scalar globals may be initialized with a string -or number literal. The following declaration marks variables as global. -

-global var1, var2, var3=4 - -
- -

- -Global variables can also be set as module options. One can do this by either -using the -G option, or the module must first be compiled using stap -p4. -Global variables can then be set on the command line when calling staprun on -the module generated by stap -p4. See -staprun(8) - -for more information. -

-
- -

- -Arrays are limited in size by the MAXMAPENTRIES variable -- see the -SAFETY AND SECURITY - -section for details. Optionally, global arrays may be declared with a -maximum size in brackets, overriding MAXMAPENTRIES for that array only. -Note that this doesn't indicate the type of keys for the array, just the -size. -

-global tiny_array[10], normal_array, big_array[50000] - -
- -

- -Arrays may be configured for wrapping using the '%' suffix. This -causes older elements to be overwritten if more elements are inserted -than the array can hold. This works for both associative and statistics -typed arrays. -

-global wrapped_array1%[10], wrapped_array2% - -
- -

-  -

STATEMENTS

- -Statements enable procedural control flow. They may occur within -functions and probe handlers. The total number of statements executed -in response to any single probe event is limited to some number -defined by a macro in the translated C code, and is in the -neighbourhood of 1000. -
-
EXP
-Execute the string- or integer-valued expression and throw away -the value. -
{ STMT1 STMT2 ... } - -
-Execute each statement in sequence in this block. Note that -separators or terminators are generally not necessary between statements. -
; - -
-Null statement, do nothing. It is useful as an optional separator between -statements to improve syntax-error detection and to handle certain -grammar ambiguities. -
if (EXP) STMT1 [ else STMT2 ] - -
-Compare integer-valued EXP to zero. Execute the first (non-zero) -or second STMT (zero). -
while (EXP) STMT - -
-While integer-valued EXP evaluates to non-zero, execute STMT. -
for (EXP1; EXP2; EXP3) STMT - -
-Execute EXP1 as initialization. While EXP2 is non-zero, execute -STMT, then the iteration expression EXP3. -
foreach (VAR in ARRAY [ limit EXP ]) STMT - -
-Loop over each element of the named global array, assigning current -key to VAR. The array may not be modified within the statement. -By adding a single -+ or - - -operator after the VAR or the ARRAY identifier, the iteration will -proceed in a sorted order, by ascending or descending index or value. -If the array contains statistics aggregates, adding the desired -@operator - -between the ARRAY identifier and the -+ or - - -will specify the sorting aggregate function. See the STATISTICS -section below for the ones available. Default is -@count. - -Using the optional -limit - -keyword limits the number of loop iterations to EXP times. EXP is -evaluated once at the beginning of the loop. -
foreach ([VAR1, VAR2, ...] in ARRAY [ limit EXP ]) STMT - -
-Same as above, used when the array is indexed with a tuple of keys. -A sorting suffix may be used on at most one VAR or ARRAY identifier. -
foreach (VALUE = VAR in ARRAY [ limit EXP ]) STMT - -
-This variant of foreach saves current value into VALUE on each -iteration, so it is the same as ARRAY[VAR]. This also works with a -tuple of keys. Sorting suffixes on VALUE have the same effect as on ARRAY. -
break, continue - -
-Exit or iterate the innermost nesting loop -(while or for or foreach) - -statement. -
return EXP - -
-Return EXP value from enclosing function. If the function's value is -not taken anywhere, then a return statement is not needed, and the -function will have a special "unknown" type with no return value. -
next - -
-Return now from enclosing probe handler. This is especially useful in -probe aliases that apply event filtering predicates. -
try { STMT1 } catch { STMT2 } - -
-Run the statements in the first block. Upon any run-time errors, abort -STMT1 and start executing STMT2. Any errors in STMT2 will propagate to -outer try/catch blocks, if any. -
try { STMT1 } catch(VAR) { STMT2 } - -
-Same as above, plus assign the error message to the string scalar variable VAR. -
delete ARRAY[INDEX1, INDEX2, ...] - -
-Remove from ARRAY the element specified by the index tuple. The value will no -longer be available, and subsequent iterations will not report the element. -It is not an error to delete an element that does not exist. -
delete ARRAY - -
-Remove all elements from ARRAY. -
delete SCALAR - -
-Removes the value of SCALAR. Integers and strings are cleared to 0 and "" -respectively, while statistics are reset to the initial empty state. -

-

-  -

EXPRESSIONS

- -Systemtap supports a number of operators that have the same general syntax, -semantics, and precedence as in C and awk. Arithmetic is performed as per -typical C rules for signed integers. Division by zero or overflow is -detected and results in an error. -
-
binary numeric operators
-* / % + - >> << & ^ | && || - -
binary string operators
-. - -(string concatenation) -
numeric assignment operators
-= *= /= %= += -= >>= <<= &= ^= |= - -
string assignment operators
-= .= - -
unary numeric operators
-+ - ! ~ ++ -- - -
binary numeric, string comparison or regex matching operators
-< > <= >= == != =~ !~ - -
ternary operator
-cond ? exp1 : exp2 - -
grouping operator
-( exp ) - -
function call
-fn ([ arg1, arg2, ... ]) - -
array membership check
-exp in array - -
- -[exp1, exp2, ...] in array - -

-

-  -

REGULAR EXPRESSION MATCHING (experimental)

- -The scripting language has proof-of-concept support for regular -expression matching. The basic syntax is as follows: - -
- -
-
-exp =~ regex
-exp !~ regex
-
-
- -
- - -(The first operand must be an expression evaluating to a string; the -second operand must be a string literal containing a syntactically -valid regular expression.) -

- -The regular expression syntax supports most of the features of POSIX -Extended Regular Expressions, aside from subexpression reuse ("\1") -and named character classes ("[:digit:]", "[:alpha:]", ...). The -ability to capture and extract the contents of the matched string and -subexpressions has not yet been implemented. -

-  -

PROBES

- -The main construct in the scripting language identifies probes. -Probes associate abstract events with a statement block ("probe -handler") that is to be executed when any of those events occur. The -general syntax is as follows: - -
- -
-
-probe PROBEPOINT [, PROBEPOINT] { [STMT ...] }
-
-
- -
- - -

- -Events are specified in a special syntax called "probe points". There -are several varieties of probe points defined by the translator, and -tapset scripts may define further ones using aliases. Probe points -may be wildcarded, grouped, or listed in preference sequences, or -declared optional. More details on probe point syntax and semantics -are listed on the -stapprobes(3stap) - -manual page. -

- -The probe handler is interpreted relative to the context of each -event. For events associated with kernel code, this context may -include -variables - -defined in the -source code - -at that spot. These "target variables" are presented to the script as -variables whose names are prefixed with "$". They may be accessed -only if the kernel's compiler preserved them despite optimization. -This is the same constraint that a debugger user faces when working -with optimized code. Some other events have very little context. -See the -stapprobes(3stap) - -man pages to see the kinds of context variables available at each kind -of probe point. -

- -New probe points may be defined using "aliases". Probe point aliases -look similar to probe definitions, but instead of activating a probe -at the given point, it just defines a new probe point name as an alias -to an existing one. There are two types of alias, i.e. the prologue -style and the epilogue style which are identified by "=" and "+=" -respectively. -

- -For prologue style alias, the statement block that follows an alias -definition is implicitly added as a prologue to any probe that refers -to the alias. While for the epilogue style alias, the statement block -that follows an alias definition is implicitly added as an epilogue to -any probe that refers to the alias. For example: -

- -
- -

-
-probe syscall.read = kernel.function("sys_read") {
-  fildes = $fd
-  if (execname() == "init") next  # skip rest of probe
-}
-
-
- -
- - -defines a new probe point - -syscall.read, - - -which expands to - -kernel.function(sys_read), - - -with the given statement as a prologue, which is useful to predefine -some variables for the alias user and/or to skip probe processing -entirely based on some conditions. And - -
- -
-
-probe syscall.read += kernel.function("sys_read") {
-  if (tracethis) println ($fd)
-}
-
-
- -
- - -defines a new probe point with the given statement as an epilogue, which -is useful to take actions based upon variables set or left over by the -the alias user. Please note that in each case, the statements in the -alias handler block are treated ordinarily, so that variables assigned -there constitute mere initialization, not a macro substitution. -

-An alias is used just like a built-in probe type. - -
- -

-
-probe syscall.read {
-  printf("reading fd=%d, fildes)
-  if (fildes > 10) tracethis = 1
-}
-
-
- -
- - -

-  -

FUNCTIONS

- -Systemtap scripts may define subroutines to factor out common work. -Functions take any number of scalar (integer or string) arguments, and -must return a single scalar (integer or string). An example function -declaration looks like this: - -
- -
-
-function thisfn (arg1, arg2) {
-   return arg1 + arg2
-}
-
-
- -
- - -Note the general absence of type declarations, which are instead -inferred by the translator. However, if desired, a function -definition may include explicit type declarations for its return value -and/or its arguments. This is especially helpful for embedded-C -functions. In the following example, the type inference engine need -only infer type type of arg2 (a string). - -
- -
-
-function thatfn:string (arg1:long, arg2) {
-   return sprint(arg1) . arg2
-}
-
-
- -
- - -Functions may call others or themselves -recursively, up to a fixed nesting limit. This limit is defined by -a macro in the translated C code and is in the neighbourhood of 10. -

-  -

PRINTING

- -There are a set of function names that are specially treated by the -translator. They format values for printing to the standard systemtap -output stream in a more convenient way. The -sprint* - -variants return the formatted string instead of printing it. -
-
print, sprint - -
-Print one or more values of any type, concatenated directly together. -
println, sprintln - -
-Print values like -print and sprint, - -but also append a newline. -
printd, sprintd - -
-Take a string delimiter and two or more values of any type, and print the -values with the delimiter interposed. The delimiter must be a literal -string constant. -
printdln, sprintdln - -
-Print values with a delimiter like -printd and sprintd, - -but also append a newline. -
printf, sprintf - -
-Take a formatting string and a number of values of corresponding types, -and print them all. The format must be a literal string constant. -
-

- -The -printf - -formatting directives similar to those of C, except that they are -fully type-checked by the translator: -

-
-
%b
-Writes a binary blob of the value given, instead of ASCII text. The width specifier determines the number of bytes to write; valid specifiers are %b %1b %2b %4b %8b. Default (%b) is 8 bytes. -
%c
-Character. -
%d,%i
-Signed decimal. -
%m
-Safely reads kernel memory at the given address, outputs its content. The precision specifier determines the number of bytes to read. Default is 1 byte. -
%M
-Same as %m, but outputs in hexadecimal. The minimal size of output is double the precision specifier. -
%o
-Unsigned octal. -
%p
-Unsigned pointer address. -
%s
-String. -
%u
-Unsigned decimal. -
%x
-Unsigned hex value, in all lower-case. -
%X
-Unsigned hex value, in all upper-case. -
%%
-Writes a %. -
-
- -

- -The -# - -flag selects the alternate forms. For octal, this prefixes a 0. For hex, this -prefixes 0x or 0X, depending on case. For characters, this escapes -non-printing values with either C-like escapes or raw octal. -

- -Examples: - -
- -

-
-        a = "alice", b = "bob", p = 0x1234abcd, i = 123, j = -1, id[a] = 1234, id[b] = 4567
-        print("hello")
-                Prints: hello
-        println(b)
-                Prints: bob\n
-        println(a . " is " . sprint(16))
-                Prints: alice is 16
-        foreach (name in id)  printdln("|", strlen(name), name, id[name])
-                Prints: 5|alice|1234\n3|bob|4567
-        printf("%c is %s; %x or %X or %p; %d or %u\n",97,a,p,p,p,j,j)
-                Prints: a is alice; 1234abcd or 1234ABCD or 0x1234abcd; -1 or 18446744073709551615\n
-        printf("2 bytes of kernel buffer at address %p: %2m", p, p)
-                Prints: 2 byte of kernel buffer at address 0x1234abcd: <binary data>
-        printf("%4b", p)
-                Prints (these values as binary data): 0x1234abcd
-        printf("%#o %#x %#X\n", 1, 2, 3)
-                Prints: 01 0x2 0X3
-        printf("%#c %#c %#c\n", 0, 9, 42)
-                Prints: \000 \t *
-
-
- -
- - -

-  -

STATISTICS

- -It is often desirable to collect statistics in a way that avoids the -penalties of repeatedly exclusive locking the global variables those -numbers are being put into. Systemtap provides a solution using a -special operator to accumulate values, and several pseudo-functions to -extract the statistical aggregates. -

- -The aggregation operator is -<<<, - -and resembles an assignment, or a C++ output-streaming operation. -The left operand specifies a scalar or array-index lvalue, which must -be declared global. The right operand is a numeric expression. The -meaning is intuitive: add the given number to the pile of numbers to -compute statistics of. (The specific list of statistics to gather -is given separately, by the extraction functions.) - -
- -

-
-    foo <<< 1
-    stats[pid()] <<< memsize
-
-
- -
- - -

- -The extraction functions are also special. For each appearance of a -distinct extraction function operating on a given identifier, the -translator arranges to compute a set of statistics that satisfy it. -The statistics system is thereby "on-demand". Each execution of -an extraction function causes the aggregation to be computed for -that moment across all processors. -

- -Here is the set of extractor functions. The first argument of each is -the same style of lvalue used on the left hand side of the accumulate -operation. The -@count(v), @sum(v), @min(v), @max(v), @avg(v) - -extractor functions compute the number/total/minimum/maximum/average -of all accumulated values. The resulting values are all simple -integers. Arrays containing aggregates may be sorted and iterated. -See the -foreach - -construct above. -

- -Histograms are also available, but are more complicated because they -have a vector rather than scalar value. -@hist_linear(v,start,stop,interval) - -represents a linear histogram from "start" to "stop" by increments -of "interval". The interval must be positive. Similarly, -@hist_log(v) - -represents a base-2 logarithmic histogram. Printing a histogram -with the -print - -family of functions renders a histogram object as a tabular -"ASCII art" bar chart. - -
- -

-
-probe timer.profile {
-  x[1] <<< pid()
-  x[2] <<< uid()
-  y <<< tid()
-}
-global x // an array containing aggregates
-global y // a scalar
-probe end {
-  foreach ([i] in x @count+) {
-     printf ("x[%d]: avg %d = sum %d / count %d\n",
-             i, @avg(x[i]), @sum(x[i]), @count(x[i]))
-     println (@hist_log(x[i]))
-  }
-  println ("y:")        
-  println (@hist_log(y))  
-}
-
-
- -
- - -

-  -

TYPECASTING

- -Once a pointer has been saved into a script integer variable, the -translator loses the type information necessary to access members from -that pointer. Using the -@cast() - -operator tells the translator how to read a pointer. - -
- -
-
-@cast(p, "type_name"[, "module"])->member
-
-
- -
- - -

- -This will interpret -p - -as a pointer to a struct/union named -type_name - -and dereference the -member - -value. Further -->subfield - -expressions may be appended to dereference more levels. -NOTE: - -the same dereferencing operator --> - -is used to refer to both direct containment or pointer indirection. -Systemtap automatically determines which. The optional -module - -tells the translator where to look for information about that type. -Multiple modules may be specified as a list with -: - -separators. If the module is not specified, it will default either to -the probe module for dwarf probes, or to "kernel" for functions and all -other probes types. -

- -The translator can create its own module with type information from a header -surrounded by angle brackets, in case normal debuginfo is not available. For -kernel headers, prefix it with "kernel" to use the appropriate build system. -All other headers are build with default GCC parameters into a user module. -Multiple headers may be specified in sequence to resolve a codependency. - -
- -

-
-@cast(tv, "timeval", "<sys/time.h>")->tv_sec
-@cast(task, "task_struct", "kernel<linux/sched.h>")->tgid
-@cast(task, "task_struct",
-      "kernel<linux/sched.h><linux/fs_struct.h>")->fs->umask
-
-
- -
- - -Values acquired by -@cast - -may be pretty-printed by the -$ and $$ - -suffix operators, the same way as described in the CONTEXT VARIABLES -section of the -stapprobes(3stap) - -manual page. -

-

- -When in guru mode, the translator will also allow scripts to assign new -values to members of typecasted pointers. -

- -Typecasting is also useful in the case of -void* - -members whose type may be determinable at runtime. - -
- -

-
-probe foo {
-  if ($var->type == 1) {
-    value = @cast($var->data, "type1")->bar
-  } else {
-    value = @cast($var->data, "type2")->baz
-  }
-  print(value)
-}
-
-
- -
- - -

-  -

EMBEDDED C

- -When in guru mode, the translator accepts embedded code in the -top level of the script. Such code is enclosed between -%{ - -and -%} - -markers, and is transcribed verbatim, without analysis, in some -sequence, into the top level of the generated C code. At the -outermost level, this may be useful to add -#include - -instructions, and any auxiliary definitions for use by other embedded -code. -

- -Another place where embedded code is permitted is as a function body. -In this case, the script language body is replaced entirely by a piece -of C code enclosed again between -%{ and %} - -markers. -This C code may do anything reasonable and safe. There are a number -of undocumented but complex safety constraints on atomicity, -concurrency, resource consumption, and run time limits, so this -is an advanced technique. -

- -The memory locations set aside for input and output values -are made available to it using macros -STAP_ARG_* - -and -STAP_RETVALUE. - -Here are some examples: - -
- -

-
-function add_one (val) %{
-  STAP_RETVALUE = STAP_ARG_val + 1;
-%}
-function add_one_str (val) %{
-  strlcpy (STAP_RETVALUE, STAP_ARG_val, MAXSTRINGLEN);
-  strlcat (STAP_RETVALUE, "one", MAXSTRINGLEN);
-%}
-
-
- -
- - -The function argument and return value types have to be inferred by -the translator from the call sites in order for this to work. The -user should examine C code generated for ordinary script-language -functions in order to write compatible embedded-C ones. -

- -The last place where embedded code is permitted is as an expression rvalue. -In this case, the C code enclosed between -%{ and %} - -markers is interpreted as an ordinary expression value. It is assumed -to be a normal 64-bit signed number, unless the marker -/* string */ - -is included, in which case it's treated as a string. - -
- -

-
-function add_one (val) {
-  return val + %{ 1 %}
-}
-function add_string_two (val) {
-  return val . %{ /* string */ "two" %}
-}
-
-
- -
- - -

- -The embedded-C code may contain markers to assert optimization -and safety properties. -

-
/* pure */ - -
-means that the C code has no side effects and may be elided entirely if its -value is not used by script code. -
/* unprivileged */ - -
-means that the C code is so safe that even unprivileged users are permitted -to use it. -
/* myproc-unprivileged */ - -
-means that the C code is so safe that even unprivileged users are permitted -to use it, provided that the target of the current probe is within the user's -own process. -
/* guru */ - -
-means that the C code is so unsafe that a systemtap user must specify --g - -(guru mode) to use this. -
/* unmangled */ - -
-in an embedded-C function, means that the legacy (pre-1.8) argument -access syntax should be made available inside the function. Hence, in -addition to -STAP_ARG_foo - -and -STAP_RETVALUE - -one can use -THIS->foo - -and -THIS->__retvalue - -respectively inside the function. This is useful for quickly migrating code written for SystemTap version 1.7 and earlier. -
/* string */ - -
-in embedded-C expressions only, means that the expression has -const char * - -type and should be treated as a string value, instead of -the default long numeric. -

-

-  -

BUILT-INS

- -A set of builtin probe point aliases are provided -by the scripts installed in the directory specified in the -stappaths(7) - -manual page. The functions are described in the -stapprobes(3stap) - -manual page. -

-  -

PROCESSING

- -The translator begins pass 1 by parsing the given input script, -and all scripts (files named -*.stp) - -found in a tapset directory. The directories listed -with --I - -are processed in sequence, each processed in "guru mode". For each -directory, a number of subdirectories are also searched. These -subdirectories are derived from the selected kernel version (the --R - -option), -in order to allow more kernel-version-specific scripts to override less -specific ones. For example, for a kernel version -2.6.12-23.FC3 - -the following patterns would be searched, in sequence: -2.6.12-23.FC3/*.stp, - -2.6.12/*.stp, - -2.6/*.stp, - -and finally -*.stp - -Stopping the translator after pass 1 causes it to print the parse trees. -

-

- -In pass 2, the translator analyzes the input script to resolve symbols -and types. References to variables, functions, and probe aliases that -are unresolved internally are satisfied by searching through the -parsed tapset script files. If any tapset script file is selected -because it defines an unresolved symbol, then the entirety of that -file is added to the translator's resolution queue. This process -iterates until all symbols are resolved and a subset of tapset script -files is selected. -

- -Next, all probe point descriptions are validated -against the wide variety supported by the translator. Probe points that -refer to code locations ("synchronous probe points") require the -appropriate kernel debugging information to be installed. In the -associated probe handlers, target-side variables (whose names begin -with "$") are found and have their run-time locations decoded. -

- -Next, all probes and functions are analyzed for optimization -opportunities, in order to remove variables, expressions, and -functions that have no useful value and no side-effect. Embedded-C -functions are assumed to have side-effects unless they include the -magic string -/* pure */. - -Since this optimization can hide latent code errors such as type -mismatches or invalid $target variables, it sometimes may be useful -to disable the optimizations with the --u - -option. -

- -Finally, all variable, function, parameter, array, and index types are -inferred from context (literals and operators). Stopping the -translator after pass 2 causes it to list all the probes, functions, -and variables, along with all inferred types. Any inconsistent or -unresolved types cause an error. -

-

- -In pass 3, the translator writes C code that represents the actions -of all selected script files, and creates a -Makefile - -to build that into a kernel object. These files are placed into a -temporary directory. Stopping the translator at this point causes -it to print the contents of the C file. -

-

- -In pass 4, the translator invokes the Linux kernel build system to -create the actual kernel object file. This involves running -make - -in the temporary directory, and requires a kernel module build -system (headers, config and Makefiles) to be installed in the usual -spot -/lib/modules/VERSION/build. - -Stopping the translator after pass 4 is the last chance before -running the kernel object. This may be useful if you want to -archive the file. -

-

- -In pass 5, the translator invokes the systemtap auxiliary program -staprun - -program for the given kernel object. This program arranges to load -the module then communicates with it, copying trace data from the -kernel into temporary files, until the user sends an interrupt signal. -Any run-time error encountered by the probe handlers, such as running -out of memory, division by zero, exceeding nesting or runtime limits, -results in a soft error indication. Soft errors in excess of -MAXERRORS block of all subsequent probes (except error-handling -probes), and terminate the session. Finally, -staprun - -unloads the module, and cleans up. -

-  -

ABNORMAL TERMINATION

- -

-One should avoid killing the stap process forcibly, for example with -SIGKILL, because the stapio process (a child process of the stap -process) and the loaded module may be left running on the system. If -this happens, send SIGTERM or SIGINT to any remaining stapio -processes, then use rmmod to unload the systemtap module. -

-

-  -

EXAMPLES

- -See the -stapex(3stap) - -manual page for a collection of samples. -

-  -

CACHING

- -The systemtap translator caches the pass 3 output (the generated C -code) and the pass 4 output (the compiled kernel module) if pass 4 -completes successfully. This cached output is reused if the same -script is translated again assuming the same conditions exist (same kernel -version, same systemtap version, etc.). Cached files are stored in -the -$SYSTEMTAP_DIR/cache - -directory. The cache can be limited by having the file -cache_mb_limit - -placed in the cache directory (shown above) containing only an ASCII -integer representing how many MiB the cache should not exceed. In the -absence of this file, a default will be created with the limit set to 256MiB. -This is a 'soft' limit in that the cache will be cleaned after a new entry -is added if the cache clean interval is exceeded, so the total cache size may -temporarily exceed this limit. This interval can be specified by having the -file -cache_clean_interval_s - -placed in the cache directory (shown above) containing only an ASCII integer -representing the interval in seconds. In the absence of this file, a default -will be created with the interval set to 30 s. -

-  -

SAFETY AND SECURITY

- -Systemtap is an administrative tool. It exposes kernel internal data -structures and potentially private user information. -

-To actually run the kernel objects it builds, a user must be one of -the following: -

-
*
-the root user; -
*
-a member of the -stapdev - -and -stapusr - -groups; -
*
-a member of the -stapsys - -and -stapusr - -groups; or -
*
-a member of the -stapusr - -group. -
-

- -The root user or a user who is a member of both the -stapdev - -and -stapusr - -groups can build and run any systemtap script. -

- -A user who is a member of both the -stapsys - -and -stapusr - -groups can only use pre-built modules under the following conditions: -

-
*
-The module has been signed by a trusted signer. Trusted signers are normally -systemtap compile-servers which sign modules when the --privilege option is -specified by the client. See the -stap-server(8) - -manual page for more information. -
*
-The module was built using the --privilege=stapsys or the --privilege=stapusr -options. -
-

- -Members of only the -stapusr - -group can only use pre-built modules under the following conditions: -

-
*
-The module is located in -the /lib/modules/VERSION/systemtap directory. This directory -must be owned by root and not be world writable. -
-

- -or -

-
*
-The module has been signed by a trusted signer. Trusted signers are normally -systemtap compile-servers which sign modules when the --privilege option is -specified by the client. See the -stap-server(8) - -manual page for more information. -
*
-The module was built using the FI--privilege=stapusr option. -
-

- -The kernel modules generated by -stap - -program are run by the -staprun - -program. The latter is a part of the Systemtap package, dedicated to -module loading and unloading (but only in the white zone), and -kernel-to-user data transfer. Since -staprun - -does not perform any additional security checks on the kernel objects -it is given, it would be unwise for a system administrator to add -untrusted users to the -stapdev - -or -stapusr - -groups. -

- -The translator asserts certain safety constraints. It aims to ensure -that no handler routine can run for very long, allocate memory, -perform unsafe operations, or in unintentionally interfere with the -kernel. Uses of script global variables are automatically read/write -locked as appropriate, to protect against manipulation by concurrent probe -handlers. (Deadlocks are detected with timeouts. Use the --t - -flag to receive reports of excessive lock contention.) Use of guru mode -constructs such as embedded C can violate these constraints, leading -to kernel crash or data corruption. -

- -The resource use limits are set by macros in the generated C code. -These may be overridden with the --D - -flag. A selection of these is as follows: -

-
MAXNESTING
-Maximum number of nested function calls. Default determined by -script analysis, with a bonus 10 slots added for recursive -scripts. -
MAXSTRINGLEN
-Maximum length of strings, default 128. -
MAXTRYLOCK
-Maximum number of iterations to wait for locks on global variables -before declaring possible deadlock and skipping the probe, default 1000. -
MAXACTION
-Maximum number of statements to execute during any single probe hit -(with interrupts disabled), -default 1000. -
MAXACTION_INTERRUPTIBLE
-Maximum number of statements to execute during any single probe hit -which is executed with interrupts enabled (such as begin/end probes), -default (MAXACTION * 10). -
MAXBACKTRACE
-Maximum number of stack frames that will be be processed by the stap -runtime unwinder as produced by the backtrace functions in the -[u]context-unwind.stp tapsets, default 20. -
MAXMAPENTRIES
-Default maximum number of rows in any single global array, default 2048. -Individual arrays may be declared with a larger or smaller limit instead: - -
- -
-
-global big[10000],little[5]
-
-
- -
- - -or denoted with -% - -to make them wrap-around automatically. -
MAXERRORS
-Maximum number of soft errors before an exit is triggered, default 0, which -means that the first error will exit the script. Note that with the ---suppress-handler-errors - -option, this limit is not enforced. -
MAXSKIPPED
-Maximum number of skipped probes before an exit is triggered, default 100. -Running systemtap with -t (timing) mode gives more details about skipped -probes. With the default -DINTERRUPTIBLE=1 setting, probes skipped due to -reentrancy are not accumulated against this limit. Note that with the ---suppress-handler-errors - -option, this limit is not enforced. -
MINSTACKSPACE
-Minimum number of free kernel stack bytes required in order to -run a probe handler, default 1024. This number should be large enough -for the probe handler's own needs, plus a safety margin. -
MAXUPROBES
-Maximum number of concurrently armed user-space probes (uprobes), default -somewhat larger than the number of user-space probe points named in the script. -This pool needs to be potentialy large because individual uprobe objects (about -64 bytes each) are allocated for each process for each matching script-level probe. -
STP_MAXMEMORY
-Maximum amount of memory (in kilobytes) that the systemtap module -should use, default unlimited. The memory size includes the size of -the module itself, plus any additional allocations. This only tracks -direct allocations by the systemtap runtime. This does not track -indirect allocations (as done by kprobes/uprobes/etc. internals). -
STP_PROCFS_BUFSIZE
-Size of procfs probe read buffers (in bytes). Defaults to -MAXSTRINGLEN. - -This value can be overridden on a per-procfs file basis using the -procfs read probe -.maxsize(MAXSIZE) - -parameter. -
-

- -With scripts that contain probes on any interrupt path, it is possible that -those interrupts may occur in the middle of another probe handler. The probe -in the interrupt handler would be skipped in this case to avoid reentrance. -To work around this issue, execute stap with the option --DINTERRUPTIBLE=0 - -to mask interrupts throughout the probe handler. This does add some extra -overhead to the probes, but it may prevent reentrance for common problem -cases. However, probes in NMI handlers and in the callpath of the stap -runtime may still be skipped due to reentrance. -

-

- -Multiple scripts can write data into a relay buffer concurrently. A host -script provides an interface for accessing its relay buffer to guest scripts. -Then, the output of the guests are merged into the output of the host. -To run a script as a host, execute stap with --DRELAYHOST[=name] - -option. The -name - -identifies your host script among several hosts. -While running the host, execute stap with --DRELAYGUEST[=name] - -to add a guest script to the host. -Note that you must unload guests before unloading a host. If there are some -guests connected to the host, unloading the host will be failed. -

-

- -In case something goes wrong with -stap or staprun - -after a probe has already started running, one may safely kill both -user processes, and remove the active probe kernel module with -rmmod. - -Any pending trace messages may be lost. -

-

- -In addition to the methods outlined above, the generated kernel module -also uses overload processing to make sure that probes can't run for -too long. If more than STP_OVERLOAD_THRESHOLD cycles (default -500000000) have been spent in all the probes on a single cpu during -the last STP_OVERLOAD_INTERVAL cycles (default 1000000000), the probes -have overloaded the system and an exit is triggered. -

- -By default, overload processing is turned on for all modules. If you -would like to disable overload processing, define STP_NO_OVERLOAD (or -its alias STAP_NO_OVERLOAD). -

-  -

UNPRIVILEGED USERS

- -

-Systemtap exposes kernel internal data -structures and potentially private user information. Because of this, use of -systemtap's full capabilities are restricted to root and to users who are -members of the groups stapdev and stapusr. -

-However, a restricted set of systemtap's features can be made available to -trusted, unprivileged users. These users are members of the group stapusr -only, or members of the groups stapusr and stapsys. -These users can load systemtap modules which have been compiled and -certified by a trusted systemtap compile-server. See the descriptions of the -options --privilege and --use-server. See -README.unprivileged in the systemtap source code for information about -setting up a trusted compile server. -

-The restrictions enforced when --privilege=stapsys is specified are designed -to prevent unprivileged users from: -

-
-
*
-harming the system maliciously. -
-
- -

-The restrictions enforced when --privilege=stapusr is specified are designed -to prevent unprivileged users from: -

-
-
*
-harming the system maliciously. -
*
-gaining access to information which would not normally be available to an -unprivileged user. -
*
-disrupting the performance of processes owned by other users of the system. -Some overhead to the system in general is unavoidable since the -unprivileged user's probes -will be triggered at the appropriate times. What we would like to avoid is -targeted interruption of another user's processes which would not normally be -possible by an unprivileged user. -
-
- -

-  -

PROBE RESTRICTIONS

- -A member of the groups stapusr and stapsys may use all probe points. -

- -A member of only the group stapusr may use only the following probes: -

-
-
*
-begin, begin(n) -
*
-end, end(n) -
*
-error(n) -
*
-never -
*
-process.*, where the target process is owned by the user. -
*
-timer.{jiffies,s,sec,ms,msec,us,usec,ns,nsec}(n)* -
*
-timer.hz(n) -
-
- -

-  -

SCRIPTING LANGUAGE RESTRICTIONS

- -The following scripting language features are unavailable to all unprivileged users: -

-

-
-
*
-any feature enabled by the Guru Mode (-g) option. -
*
-embedded C code. -
-
- -

-  -

RUNTIME RESTRICTIONS

- -The following runtime restrictions are placed upon all unprivileged users: -
-
-
*
-Only the default runtime code (see -R) may be used. -
-
- -

-Additional restrictions are placed on members of only the group stapusr: -

-
-
*
-Probing of processes owned by other users is not permitted. -
*
-Access of kernel memory (read and write) is not permitted. -
-
- -

-  -

COMMAND LINE OPTION RESTRICTIONS

- -Some command line options provide access to features which must not be available -to all unprivileged users: -

-

-
-
*
--g may not be specified. -
*
-The following options may not be used by the compile-server client: - -
- -
-
-    -a, -B, -D, -I, -r, -R
-
-
- -
- - -
-
- -

-  -

ENVIRONMENT RESTRICTIONS

- -The following environment variables must not be set for all unprivileged users: - -
- -
-
-
-SYSTEMTAP_RUNTIME
-SYSTEMTAP_TAPSET
-SYSTEMTAP_DEBUGINFO_PATH
-
-
- -
- - -

-  -

TAPSET RESTRICTIONS

- -In general, tapset functions are only available for members of the -group stapusr when they do not gather information that an ordinary -program running with that user's privileges would be denied access to. -

-There are two categories of unprivileged tapset functions. The first -category consists of utility functions that are unconditionally -available to all users; these include such things as: - -
- -

-
-cpu:long ()
-exit ()
-str_replace:string (prnt_str:string, srch_str:string, rplc_str:string)
-
-
- -
- - -

-The second category consists of so-called -myproc-unprivileged - -functions that can only gather information within their own -processes. Scripts that wish to use these functions must test the -result of the tapset function is_myproc and only call these -functions if the result is 1. The script will exit immediately if any -of these functions are called by an unprivileged user within a probe -within a process which is not owned by that user. Examples of -myproc-unprivileged - -functions include: - -
- -

-
-print_usyms (stk:string)
-user_int:long (addr:long)
-usymname:string (addr:long)
-
-
- -
- - -

-A compile error is triggered when any function not in either of the -above categories is used by members of only the group stapusr. -

-No other built-in tapset functions may be used by members of only the -group stapusr. -

-  -

ALTERNATE RUNTIMES

- -

-As described above, systemtap's default runtime mode involves building and -loading kernel modules, with various security tradeoffs presented. Systemtap -now includes a new prototype backend, selected with --runtime=dyninst, -which uses Dyninst to instrument a user's own processes at runtime. This -backend does not use kernel modules, and does not require root privileges, but -is restricted with respect to the kinds of probes and other constructs that a -script may use. -

-The dyninst runtime operates in target-attach mode, so it does require -a -c COMMAND or -x PID process. For example: -

- -
- -

-
-stap --runtime=dyninst -c 'stap -V' \
-     -e 'probe process.function("main")
-         { println("hi from dyninst!") }'
-
-
- -
- - -

-It may be necessary to disable a conflicting selinux check with - -
- -

-
-# setsebool allow_execstack 1
-
-
- -
- - -

-  -

EXIT STATUS

- -

-The systemtap translator generally returns with a success code of 0 if -the requested script was processed and executed successfully through -the requested pass. Otherwise, errors may be printed to stderr and -a failure code is returned. Use --v - -or --vp N - -to increase (global or per-pass) verbosity to identify the source of the -trouble. -

-In listings mode -(-l and -L), - -error messages are normally suppressed. A success code of 0 is returned -if at least one matching probe was found. -

-A script executing in pass 5 that is interrupted with ^C / SIGINT is -considered to be successful. -

-  -

DEPRECATION

- -

-Over time, some features of the script language and the tapset library -may undergo incompatible changes, so that a script written against -an old version of systemtap may no longer run. In these cases, it may -help to run systemtap with the ---compatible VERSION - -flag, specifying the last known working version of systemtap. Running -systemtap with the ---check-version - -flag will output a warning if any possible incompatible elements have -been parsed. Below is a table of recently deprecated tapset functions -and syntax elements that require the given --compatible flag to use: -

- -

-
--compatible=1.2
-(none yet) -
--compatible=1.3
-The tapset alias 'syscall.compat_pselect7a' was misnamed. It should -have been 'syscall.compat_pselect7' (without the trailing 'a'). -Starting in release 1.4, the old name will be deprecated. -
--compatible=1.4
-In the 'syscall.add_key' probe, the 'description_auddr' variable -has been deprecated in favor of the new 'description_uaddr' -variable. -
-In the 'syscall.fgetxattr', 'syscall.fsetxattr', 'syscall.getxattr', -'syscall.lgetxattr', 'syscall.lremovexattr', 'nd_syscall.fgetxattr', -'nd_syscall.fremovexattr', 'nd_syscall.fsetxattr', 'nd_syscall.getxattr', -and 'nd_syscall.lremovexattr' probes, the 'name2' variable has been -deprecated in favor of the new 'name_str' variable. -
-In the 'nd_syscall.accept' probe the 'flag_str' variable -has been deprecated in favor of the new 'flags_str' variable. -
-In the 'nd_syscall.dup' probe the 'old_fd' variable has been -deprecated in favor of the new 'oldfd' variable. -
-The tapset alias 'nd_syscall.compat_pselect7a' was misnamed. It should -have been 'nd_syscall.compat_pselect7' (without the trailing 'a'). -
-The tapset function 'cpuid' is deprecated in favor of the better known 'cpu'. -
-In the i386 'syscall.sigaltstack' probe, the 'ussp' variable has -been deprecated in favor of the new 'uss_uaddr' variable. -
-In the ia64 'syscall.sigaltstack' probe, the 'ss_uaddr' and -'oss_uaddr' variables have been deprecated in favor of the new -'uss_uaddr' and 'uoss_uaddr' variables. -
-The powerpc tapset alias 'syscall.compat_sysctl' was deprecated -and renamed 'syscall.sysctl32'. -
-In the x86_64 'syscall.sigaltstack' probe, the 'regs_uaddr' -variable has been deprecated in favor of the new 'regs' variable. -
--compatible=1.7
-In the 'kprocess.release probe, the 'pid variable -has been deprecated in favor of the new 'released_pid' -variable. -
-In the '_sunrpc.clnt.create_client.rpc_new_client_inline' probe, -the 'args' variable in the has been deprecated in favor of the new -internal-only '__args' variable. -
-The following probe types have been deprecated: -
-
-
-kernel.function(number).inline -
- -module(string).function(number).inline -
- -process.function(number).inline -
- -process.library(string).function(number).inline -
- -process(string).function(number).inline -
- -process(string).library(string).function(number).inline -
-
- -
--compatible=1.8
-The daddr_to_string() tapset function has been deprecated in favor of -the new format_ipaddr() tapset function. -

- - -

- - - - -

-

-  -

FILES

- - -
-
Important files and their corresponding paths can be located in the
-stappaths (7) manual page. -

-

-  -

SEE ALSO

- -stapprobes(3stap), - -function::*(3stap), - -probe::*(3stap), - -tapset::*(3stap), - -error::reporting(7stap), - -stappaths(7), - -staprun(8), - -stapvars(3stap), - -stapex(3stap), - -stap-server(8), - -awk(1), - -gdb(1) - -

-  -

BUGS

- -Use the Bugzilla link of the project web page or our mailing list. - -http://sourceware.org/systemtap/,<systemtap@sourceware.org>. - - -

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
DESCRIPTION
-
OPTIONS
-
ARGUMENTS
-
SCRIPT LANGUAGE
-
-
GENERAL SYNTAX
-
PREPROCESSING
-
PREPROCESSOR MACROS (EXPERIMENTAL)
-
VARIABLES
-
STATEMENTS
-
EXPRESSIONS
-
REGULAR EXPRESSION MATCHING (experimental)
-
PROBES
-
FUNCTIONS
-
PRINTING
-
STATISTICS
-
TYPECASTING
-
EMBEDDED C
-
BUILT-INS
-
-
PROCESSING
-
-
ABNORMAL TERMINATION
-
-
EXAMPLES
-
CACHING
-
SAFETY AND SECURITY
-
UNPRIVILEGED USERS
-
-
PROBE RESTRICTIONS
-
SCRIPTING LANGUAGE RESTRICTIONS
-
RUNTIME RESTRICTIONS
-
COMMAND LINE OPTION RESTRICTIONS
-
ENVIRONMENT RESTRICTIONS
-
TAPSET RESTRICTIONS
-
-
ALTERNATE RUNTIMES
-
EXIT STATUS
-
DEPRECATION
-
FILES
-
SEE ALSO
-
BUGS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:15 GMT, March 20, 2013 - - diff --git a/man/stapex.3stap.html b/man/stapex.3stap.html deleted file mode 100644 index 3f309df6..00000000 --- a/man/stapex.3stap.html +++ /dev/null @@ -1,219 +0,0 @@ - -Manpage of STAPEX - -

STAPEX

-Section: Misc. Reference Manual Pages (3stap)
Index -Return to Main Contents
- -  -

NAME

- -stapex - systemtap examples -

- - - -

-  -

LANGUAGE BASICS

- -These examples give a feel for basic systemtap syntax and -control structures. -

- -
- -

-
-global odds, evens
-
-probe begin {
-  # "no" and "ne" are local integers
-  for (i=0; i<10; i++) {
-    if (i % 2) odds [no++] = i
-    else evens [ne++] = i 
-  }
-  delete odds[2]
-  delete evens[3]
-  exit ()
-}
-
-probe end {
-  foreach (x+ in odds) {
-    printf ("odds[%d] = %d, x, odds[x])
-  }
-  foreach (x in evens-) {
-    printf ("evens[%d] = %d, x, evens[x])
-  }
-}
-
-
- -
- - -This prints: - -
- -
-
-odds[1] = 1
-odds[3] = 5
-odds[4] = 7
-odds[5] = 9
-evens[5] = 8
-evens[4] = 6
-evens[2] = 2
-evens[1] = 0
-
-
- -
- - -Note that all variables types are inferred, and that all locals -and globals are automatically initialized. -

-

- -This script prints the primes between 0 and 49. - -
- -

-
-function isprime (x) {
-  if (x < 2) return 0
-  for (i=2; i<x; i++) {
-    if (x % i == 0) return 0
-    if (i * i > x) break
-  }
-  return 1
-}
-probe begin {
-  for (i=0; i<50; i++)
-    if (isprime (i)) printf("%d, i)
-  exit()
-}
-
-
- -
- - -

-

- -This script demonstrates recursive functions. - -
- -

-
-function fibonacci(i) {
-  if (i < 1) error ("bad number")
-  if (i == 1) return 1
-  if (i == 2) return 2
-  return fibonacci (i-1) + fibonacci (i-2)
-}
-probe begin {
-  printf ("11th fibonacci number: %d, fibonacci (11))
-  exit ()
-}
-
-
- -
- - -Any larger number may exceed the MAXACTION or MAXNESTING -limits, and result in an error. -

-

-  -

PROBING

- -

-To trace entry and exit from a function, use a pair of probes: - -
- -

-
-probe kernel.function("sys_mkdir") { println ("enter") }
-probe kernel.function("sys_mkdir").return { println ("exit") }
-
-
- -
- - -

-To list the probeable functions in the kernel, use the listings mode. - -
- -

-
-% stap -l [aq]kernel.function("*")[aq]
-
-
- -
- - -

-To list the probeable functions and local variables in the kernel, use another listings mode. - -
- -

-
-% stap -L [aq]kernel.function("*")[aq]
-
-
- -
- - -

-  -

MORE EXAMPLES

- -

-The directory to find more examples can be found in the stappaths (7) manual page, -and online at - -http://sourceware.org/systemtap/examples/ - - -

-  -

SEE ALSO

- -stap(1) - -stapprobes(3stap) - -stappaths(7) - -

-

- -


- 

Index

-
-
NAME
-
LANGUAGE BASICS
-
PROBING
-
MORE EXAMPLES
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/stapfuncs.3stap.html b/man/stapfuncs.3stap.html deleted file mode 100644 index 93c812f2..00000000 --- a/man/stapfuncs.3stap.html +++ /dev/null @@ -1,55 +0,0 @@ - -Manpage of STAPFUNCS - -

STAPFUNCS

-Section: Misc. Reference Manual Pages (3stap)
Index -Return to Main Contents
- -  -

NAME

- -stapfuncs - systemtap functions -

-  -

DESCRIPTION

- -Functions in the standard systemtap tapset are individually documented -in the -3stap - -manual section, with the -function:: - -prefix. Some built-in functions such as -printf - -are documented on the -stap(1) - -man page. -

-  -

SEE ALSO

- -stap(1), - -function::*(3stap), - -tapset::*(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/stappaths.7.html b/man/stappaths.7.html deleted file mode 100644 index e39d1450..00000000 --- a/man/stappaths.7.html +++ /dev/null @@ -1,188 +0,0 @@ - -Manpage of STAP - -

STAP

-Section: Environments, Tables, and Troff Macros (7)
Updated: Systemtap Team
Index -Return to Main Contents
- -  -

NAME

- -

-stappaths - systemtap configurable file paths -

-

- - - -

-  -

DESCRIPTION

- -This manual page was generated on 2013-03-20 for systemtap 2.1. -The following section will list the main paths in systemtap that are -important to know and may be required to reference. -
-
share/systemtap/tapset/
-The directory for the standard probe-alias / function tapset library, -unless overridden by the -SYSTEMTAP_TAPSET - -environment variable or the -XDG_DATA_DIRS - -environment variable. -These are described in the -stapprobes(3stap), - -probe::*(3stap), - -and -function::*(3stap) - -manual pages. -
share/systemtap/runtime/
-The runtime sources, unless overridden by the -SYSTEMTAP_RUNTIME - -environment variable. -
bin/staprun
-The auxiliary program supervising module loading, interaction, and -unloading. -
${exec_prefix}/libexec/systemtap/stapio
-The auxiliary program for module input and output handling. -
/usr/include/sys/sdt.h
-Location of the <sys/sdt.h> headers. -
Kernel debuginfo Path: /usr/lib/debug/lib/modules/$(uname -r)/
-The location of kernel debugging information when packaged into the -kernel-debuginfo - -RPM, unless overridden by the -SYSTEMTAP_DEBUGINFO_PATH - -environment variable. The default value for this variable is -+:.debug:/usr/lib/debug:build - -

- -directory of which various subdirectories will be searched for finding debuginfo -for the kernel, kernel modules, and user-space binaries. -By default, systemtap will also look for vmlinux in these locations: -

- -
- -

-
-/boot/vmlinux-`uname -r` 
-/lib/modules/`uname -r`/vmlinux
-/lib/modules/`uname -r`/vmlinux.debug
-/lib/modules/`uname -r`/build/vmlinux
-/lib/modules/`uname -r`/.debug/vmlinux.debug
-/usr/lib/debug/lib/modules/`uname -r`/vmlinux.debug
-/var/cache/abrt-di/usr/debug/lib/modules/`uname -r`/
-/var/cache/abrt-di/usr/lib/debug/lib/modules/`uname -r`/vmlinux.debug
-
-
-
- -
- - -
-
       -Corresponding source files are usually located under /usr/src/debug/. -Further file information on user-space applications can be determined per-basis using -rpm -ql <package>-debuginfo. For supported user-space applications information please -visit the systemtap wiki. -
$HOME/.systemtap
-Systemtap data directory for cached systemtap files, unless overridden -by the -SYSTEMTAP_DIR - -environment variable. -
/tmp/stapXXXXXX
-Temporary directory for systemtap files, including translated C code -and kernel object. -
/lib/modules/VERSION/build
-The location of kernel module building infrastructure. -
share/doc/systemtap*/examples
-Examples with greater detail can be found here. Each example comes with a .txt -or .meta file explaining what the example, sample or demo does and how it is -ordinarily run. -
$SYSTEMTAP_DIR/ssl/server
-User's server-side SSL certificate database. If SYSTEMTAP_DIR is not -set, the default is $HOME/.systemtap. -
$SYSTEMTAP_DIR/ssl/client
-User's private client-side SSL certificate database. If SYSTEMTAP_DIR is not -set, the default is $HOME/.systemtap. -
${prefix}/etc/systemtap/ssl/client
-Global client-side SSL certificate database. -
${prefix}/etc/systemtap/staprun/
-staprun[aq]s trusted signer certificate database. -
${prefix}/etc/sysconfig/stap-server/
-stap-server service global configuration file. -
${prefix}/etc/stap-server/conf.d/*.conf
-stap-server service configuration files for default servers. -
/var/run/stap-server/
-stap-server service default location of status files for running servers. -
/var/log/stap-server/log
-stap-server service default log file. -

-

-

-

- -  -

FILES

- - -share/systemtap/tapset - - -

-  -

SEE ALSO

- -stapprobes(3stap), - -staprun(8), - -stapvars(3stap), - -stapex(3stap), - -stap-server(8), - -awk(1), - -gdb(1) - -

-

-  -

BUGS

- -Use the Bugzilla link of the project web page or our mailing list. - -http://sourceware.org/systemtap/,<systemtap@sourceware.org>. - - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
FILES
-
SEE ALSO
-
BUGS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:21 GMT, March 20, 2013 - - diff --git a/man/stapprobes.3stap.html b/man/stapprobes.3stap.html deleted file mode 100644 index 09c56ee7..00000000 --- a/man/stapprobes.3stap.html +++ /dev/null @@ -1,1748 +0,0 @@ - -Manpage of STAPPROBES - -

STAPPROBES

-Section: Misc. Reference Manual Pages (3stap)
Index -Return to Main Contents
- -  -

NAME

- -stapprobes - systemtap probe points -

- - - -

-  -

DESCRIPTION

- -The following sections enumerate the variety of probe points supported -by the systemtap translator, and some of the additional aliases defined by -standard tapset scripts. Many are individually documented in the -3stap - -manual section, with the -probe:: - -prefix. -

-  -

SYNTAX

- -

-

- - -
- -

-
-probe PROBEPOINT [, PROBEPOINT] { [STMT ...] }
-
-
- -
- - -

- -A probe declaration may list multiple comma-separated probe points in -order to attach a handler to all of the named events. Normally, the -handler statements are run whenever any of events occur. -

- -The syntax of a single probe point is a general dotted-symbol -sequence. This allows a breakdown of the event namespace into parts, -somewhat like the Domain Name System does on the Internet. Each -component identifier may be parametrized by a string or number -literal, with a syntax like a function call. A component may include -a "*" character, to expand to a set of matching probe points. It may -also include "**" to match multiple sequential components at once. -Probe aliases likewise expand to other probe points. -

- -Probe aliases can be given on their own, or with a suffix. The suffix -attaches to the underlying probe point that the alias is expanded -to. For example, - -
- -

-
-syscall.read.return.maxactive(10)
-
-
- -
- - -expands to - -
- -
-
-kernel.function("sys_read").return.maxactive(10)
-
-
- -
- - -with the component -maxactive(10) - -being recognized as a suffix. -

- -Normally, each and every probe point resulting from wildcard- and -alias-expansion must be resolved to some low-level system -instrumentation facility (e.g., a kprobe address, marker, or a timer -configuration), otherwise the elaboration phase will fail. -

- -However, a probe point may be followed by a "?" character, to indicate -that it is optional, and that no error should result if it fails to -resolve. Optionalness passes down through all levels of -alias/wildcard expansion. Alternately, a probe point may be followed -by a "!" character, to indicate that it is both optional and -sufficient. (Think vaguely of the Prolog cut operator.) If it does -resolve, then no further probe points in the same comma-separated list -will be resolved. Therefore, the "!" sufficiency mark only makes -sense in a list of probe point alternatives. -

- -Additionally, a probe point may be followed by a "if (expr)" statement, in -order to enable/disable the probe point on-the-fly. With the "if" statement, -if the "expr" is false when the probe point is hit, the whole probe body -including alias's body is skipped. The condition is stacked up through -all levels of alias/wildcard expansion. So the final condition becomes -the logical-and of conditions of all expanded alias/wildcard. The expressions -are necessarily restricted to global variables. -

- -These are all -syntactically - -valid probe points. (They are generally -semantically - -invalid, depending on the contents of the tapsets, and the versions of -kernel/user software installed.) -

- -
- -

-
-kernel.function("foo").return
-process("/bin/vi").statement(0x2222)
-end
-syscall.*
-syscall.*.return.maxactive(10)
-sys**open
-kernel.function("no_such_function") ?
-module("awol").function("no_such_function") !
-signal.*? if (switch)
-kprobe.function("foo")
-
-
- -
- - -

-Probes may be broadly classified into "synchronous" and -"asynchronous". A "synchronous" event is deemed to occur when any -processor executes an instruction matched by the specification. This -gives these probes a reference point (instruction address) from which -more contextual data may be available. Other families of probe points -refer to "asynchronous" events such as timers/counters rolling over, -where there is no fixed reference point that is related. Each probe -point specification may match multiple locations (for example, using -wildcards or aliases), and all them are then probed. A probe -declaration may also contain several comma-separated specifications, -all of which are probed. -

-  -

DWARF DEBUGINFO

- -

-Resolving some probe points requires DWARF debuginfo or "debug -symbols" for the specific part being instrumented. For some others, -DWARF is automatically synthesized on the fly from source code header -files. For others, it is not needed at all. Since a systemtap script -may use any mixture of probe points together, the union of their DWARF -requirements has to be met on the computer where script compilation -occurs. (See the --use-server option and the stap-server(8) man page for information about the remote compilation facility, -which allows these requirements to be met on a different machine.) -

- -The following point lists many of the available probe point families, -to classify them with respect to their need for DWARF debuginfo. -

- - - - - - - - - - - - - - -
DWARFNON-DWARF

kernel.function, .statementkernel.mark
module.function, .statementprocess.mark, process.plt
process.function, .statementbegin, end, error, never
process.mark (backup)timer
perf
procfs
AUTO-DWARFkernel.statement.absolute
kernel.data
kernel.tracekprobe.function
process.statement.absolute
process.begin, .end, .error
- -

-  -

PROBE POINT FAMILIES

- -

-  -

BEGIN/END/ERROR

- -

-The probe points -begin and end - -are defined by the translator to refer to the time of session startup -and shutdown. All "begin" probe handlers are run, in some sequence, -during the startup of the session. All global variables will have -been initialized prior to this point. All "end" probes are run, in -some sequence, during the -normal - -shutdown of a session, such as in the aftermath of an -exit () - -function call, or an interruption from the user. In the case of an -error-triggered shutdown, "end" probes are not run. There are no -target variables available in either context. -

- -If the order of execution among "begin" or "end" probes is significant, -then an optional sequence number may be provided: -

- -
- -

-
-begin(N)
-end(N)
-
-
- -
- - -

-The number N may be positive or negative. The probe handlers are run in -increasing order, and the order between handlers with the same sequence -number is unspecified. When "begin" or "end" are given without a -sequence, they are effectively sequence zero. -

-The -error - -probe point is similar to the -end - -probe, except that each such probe handler run when the session ends -after errors have occurred. In such cases, "end" probes are skipped, -but each "error" probe is still attempted. This kind of probe can be -used to clean up or emit a "final gasp". It may also be numerically -parametrized to set a sequence. -

-  -

NEVER

- -The probe point -never - -is specially defined by the translator to mean "never". Its probe -handler is never run, though its statements are analyzed for symbol / -type correctness as usual. This probe point may be useful in -conjunction with optional probes. -

-  -

SYSCALL

- -

-The -syscall.* - -aliases define several hundred probes, too many to -detail here. They are of the general form: -

- -
- -

-
-syscall.NAME
-
-syscall.NAME.return - -
- -
- - -

-Generally, two probes are defined for each normal system call as listed in the -syscalls(2) - -manual page, one for entry and one for return. Those system calls that never -return do not have a corresponding -.return - -probe. -

- -Each probe alias provides a variety of variables. Looking at the tapset source -code is the most reliable way. Generally, each variable listed in the standard -manual page is made available as a script-level variable, so -syscall.open - -exposes -filename, flags, and mode. - -In addition, a standard suite of variables is available at most aliases: -

-
argstr - -
-A pretty-printed form of the entire argument list, without parentheses. -
name - -
-The name of the system call. -
retstr - -
-For return probes, a pretty-printed form of the system-call result. -
-

- -As usual for probe aliases, these variables are all simply initialized -once from the underlying $context variables, so that later changes to -$context variables are not automatically reflected. Not all probe -aliases obey all of these general guidelines. Please report any -bothersome ones you encounter as a bug. -

-

-  -

TIMERS

- -

-Intervals defined by the standard kernel "jiffies" timer may be used -to trigger probe handlers asynchronously. Two probe point variants -are supported by the translator: -

- -
- -

-
-timer.jiffies(N)
-timer.jiffies(N).randomize(M)
-
-
- -
- - -

-The probe handler is run every N jiffies (a kernel-defined unit of -time, typically between 1 and 60 ms). If the "randomize" component is -given, a linearly distributed random value in the range [-M..+M] is -added to N every time the handler is run. N is restricted to a -reasonable range (1 to around a million), and M is restricted to be -smaller than N. There are no target variables provided in either -context. It is possible for such probes to be run concurrently on -a multi-processor computer. -

- -Alternatively, intervals may be specified in units of time. -There are two probe point variants similar to the jiffies timer: -

- -
- -

-
-timer.ms(N)
-timer.ms(N).randomize(M)
-
-
- -
- - -

-Here, N and M are specified in milliseconds, but the full options for units -are seconds (s/sec), milliseconds (ms/msec), microseconds (us/usec), -nanoseconds (ns/nsec), and hertz (hz). Randomization is not supported for -hertz timers. -

-The actual resolution of the timers depends on the target kernel. For -kernels prior to 2.6.17, timers are limited to jiffies resolution, so -intervals are rounded up to the nearest jiffies interval. After 2.6.17, -the implementation uses hrtimers for tighter precision, though the actual -resolution will be arch-dependent. In either case, if the "randomize" -component is given, then the random value will be added to the interval -before any rounding occurs. -

- -Profiling timers are also available to provide probes that execute on -all CPUs at the rate of the system tick (CONFIG_HZ). This probe takes -no parameters. On some kernels, this is a one-concurrent-user-only or -disabled facility, resulting in error -16 (EBUSY) during probe -registration. -

- -
- -

-
-timer.profile
-
-
- -
- - -

-Full context information of the interrupted process is available, making -this probe suitable for a time-based sampling profiler. -

-  -

DWARF

- -

-This family of probe points uses symbolic debugging information for -the target kernel/module/program, as may be found in unstripped -executables, or the separate -debuginfo - -packages. They allow placement of probes logically into the execution -path of the target program, by specifying a set of points in the -source or object code. When a matching statement executes on any -processor, the probe handler is run in that context. -

- -Points in a kernel, which are identified by -module, source file, line number, function name, or some -combination of these. -

- -Here is a list of probe point families currently supported. The -.function - -variant places a probe near the beginning of the named function, so that -parameters are available as context variables. The -.return - -variant places a probe at the moment -after - -the return from the named function, so the return value is available -as the "$return" context variable. The -.inline - -modifier for -.function - -filters the results to include only instances of inlined functions. -The -.call - -modifier selects the opposite subset. The -.exported - -modifier -filters the results to include only exported functions. Inline -functions do not have an identifiable return point, so -.return - -is not supported on -.inline - -probes. The -.statement - -variant places a probe at the exact spot, exposing those local variables -that are visible there. -

- -
- -

-
-kernel.function(PATTERN)
-
-kernel.function(PATTERN).call -
-kernel.function(PATTERN).return -
-kernel.function(PATTERN).inline -
-kernel.function(PATTERN).label(LPATTERN) -
-module(MPATTERN).function(PATTERN) -
-module(MPATTERN).function(PATTERN).call -
-module(MPATTERN).function(PATTERN).return -
-module(MPATTERN).function(PATTERN).inline -
-module(MPATTERN).function(PATTERN).label(LPATTERN) -
-
-kernel.statement(PATTERN) -
-kernel.statement(ADDRESS).absolute -
-module(MPATTERN).statement(PATTERN) -
-process("PATH").function("NAME") -
-process("PATH").statement("*@FILE.c:123") -
-process("PATH").library("PATH").function("NAME") -
-process("PATH").library("PATH").statement("*@FILE.c:123") -
-process("PATH").function("*").return -
-process("PATH").function("myfun").label("foo") -
-process(PID).statement(ADDRESS).absolute - -
- -
- - -

-(See the USER-SPACE section below for more information on the process -probes.) -

-In the above list, MPATTERN stands for a string literal that aims to -identify the loaded kernel module of interest and LPATTERN stands for -a source program label. Both MPATTERN and LPATTERN may include the "*" -"[]", and "?" wildcards. -PATTERN stands for a string literal that -aims to identify a point in the program. It is made up of three -parts: -

-
*
-The first part is the name of a function, as would appear in the -nm - -program's output. This part may use the "*" and "?" wildcarding -operators to match multiple names. -
*
-The second part is optional and begins with the "@" character. -It is followed by the path to the source file containing the function, -which may include a wildcard pattern, such as mm/slab*. -If it does not match as is, an implicit "*/" is optionally added -before - -the pattern, so that a script need only name the last few components -of a possibly long source directory path. -
*
-Finally, the third part is optional if the file name part was given, -and identifies the line number in the source file preceded by a ":" -or a "+". The line number is assumed to be an -absolute line number if preceded by a ":", or relative to the entry of -the function if preceded by a "+". -All the lines in the function can be matched with ":*". -A range of lines x through y can be matched with ":x-y". -
-

- -As an alternative, PATTERN may be a numeric constant, indicating an -address. Such an address may be found from symbol tables of the -appropriate kernel / module object file. It is verified against -known statement code boundaries, and will be relocated for use at -run time. -

- -In guru mode only, absolute kernel-space addresses may be specified with -the ".absolute" suffix. Such an address is considered already relocated, -as if it came from -/proc/kallsyms, - -so it cannot be checked against statement/instruction boundaries. -

-  -

CONTEXT VARIABLES

- -

-

- -Many of the source-level context variables, such as function parameters, -locals, globals visible in the compilation unit, may be visible to -probe handlers. They may refer to these variables by prefixing their -name with "$" within the scripts. In addition, a special syntax -allows limited traversal of structures, pointers, and arrays. More -syntax allows pretty-printing of individual variables or their groups. -See also -@cast. - -

-

-
$var
-refers to an in-scope variable "var". If it's an integer-like type, -it will be cast to a 64-bit int for systemtap script use. String-like -pointers (char *) may be copied to systemtap string values using the -kernel_string or user_string - -functions. -
@var("varname")
-an alternative syntax for -$varname - -
@var("varname@src/file.c")
-refers to the global (either file local or external) variable -varname - -defined when the file -src/file.c - -was compiled. The CU in which the variable is resolved is the first CU -in the module of the probe point which matches the given file name at -the end and has the shortest file name path (e.g. given -@var(foo@bar/baz.c) - -and CUs with file name paths -src/sub/module/bar/baz.c - -and -src/bar/baz.c - -the second CU will be chosen to resolve the (file) global variable -foo - -
$var->field traversal via a structure's or a pointer's field. This
-generalized indirection operator may be repeated to follow more -levels. Note that the -. - -operator is not used for plain structure -members, only --> - -for both purposes. (This is because "." is reserved for string -concatenation.) -
$return
-is available in return probes only for functions that are declared -with a return value. -
$var[N]
-indexes into an array. The index given with a literal number or even -an arbitrary numeric expression. -
-

- -A number of operators exist for such basic context variable expressions: -

-
$$vars
-expands to a character string that is equivalent to - -
- -
-
-sprintf("parm1=%x ... parmN=%x var1=%x ... varN=%x",
-        parm1, ..., parmN, var1, ..., varN)
-
-
- -
- - -for each variable in scope at the probe point. Some values may be -printed as -=? - -if their run-time location cannot be found. -
$$locals
-expands to a subset of $$vars for only local variables. -
$$parms
-expands to a subset of $$vars for only function parameters. -
$$return
-is available in return probes only. It expands to a string that -is equivalent to sprintf("return=%x", $return) -if the probed function has a return value, or else an empty string. -
& $EXPR
-expands to the address of the given context variable expression, if it -is addressable. -
@defined($EXPR)
-expands to 1 or 0 iff the given context variable expression is resolvable, -for use in conditionals such as - -
- -
-
-@defined($foo->bar) ? $foo->bar : 0
-
-
- -
- - -
$EXPR$
-expands to a string with all of $EXPR's members, equivalent to - -
- -
-
-sprintf("{.a=%i, .b=%u, .c={...}, .d=[...]}",
-         $EXPR->a, $EXPR->b)
-
-
- -
- - -
$EXPR$$
-expands to a string with all of $var's members and submembers, equivalent to - -
- -
-
-sprintf("{.a=%i, .b=%u, .c={.x=%p, .y=%c}, .d=[%i, ...]}",
-        $EXPR->a, $EXPR->b, $EXPR->c->x, $EXPR->c->y, $EXPR->d[0])
-
-
- -
- - -

-

-  -

MORE ON RETURN PROBES

- -

-

- -For the kernel ".return" probes, only a certain fixed number of -returns may be outstanding. The default is a relatively small number, -on the order of a few times the number of physical CPUs. If many -different threads concurrently call the same blocking function, such -as futex(2) or read(2), this limit could be exceeded, and skipped -"kretprobes" would be reported by "stap -t". To work around this, -specify a - -
- -

-
-probe FOO.return.maxactive(NNN)
-
-
- -
- - -suffix, with a large enough NNN to cover all expected concurrently blocked -threads. Alternately, use the - -
- -
-
-stap -DKRETACTIVE=NNNN
-
-
- -
- - -stap command line macro setting to override the default for all -".return" probes. -

-

- -For ".return" probes, context variables other than the "$return" may -be accessible, as a convenience for a script programmer wishing to -access function parameters. These values are snapshots -taken at the time of function entry. Local variables within the -function are not generally accessible, since those variables did -not exist in allocated/initialized form at the snapshot moment. -

- -In addition, arbitrary entry-time expressions can also be saved for -".return" probes using the -@entry(expr) - -operator. For example, one can compute the elapsed time of a function: - -
- -

-
-probe kernel.function("do_filp_open").return {
-    println( get_timeofday_us() - @entry(get_timeofday_us()) )
-}
-
-
- -
- - -

-

- -The following table summarizes how values related to a function -parameter context variable, a pointer named addr, may be -accessed from a -.return - -probe. - - - - - - - -
at-entry valuepast-exit value

$addrnot available
$addr->x->y@cast(@entry($addr),"struct zz")->x->y
$addr[0]{kernel,user}_{char,int,...}(& $addr[0])
- -

-

-  -

DWARFLESS

- -In absence of debugging information, entry & exit points of kernel & module -functions can be probed using the "kprobe" family of probes. -However, these do not permit looking up the arguments / local variables -of the function. -Following constructs are supported : - -
- -
-
-kprobe.function(FUNCTION)
-kprobe.function(FUNCTION).call
-kprobe.function(FUNCTION).return
-kprobe.module(NAME).function(FUNCTION)
-kprobe.module(NAME).function(FUNCTION).call
-kprobe.module(NAME).function(FUNCTION).return
-kprobe.statement.(ADDRESS).absolute
-
-
- -
- - -

- -Probes of type -function - -are recommended for kernel functions, whereas probes of type -module - -are recommended for probing functions of the specified module. -In case the absolute address of a kernel or module function is known, -statement - -probes can be utilized. -

- -Note that -FUNCTION - -and -MODULE - -names -must not - -contain wildcards, or the probe will not be registered. -Also, statement probes must be run under guru-mode only. -

-

-  -

USER-SPACE

- -Support for user-space probing is available for kernels that are -configured with the utrace extensions, or have the uprobes facility in -linux 3.5. (Various kernel build configuration options need to be -enabled; systemtap will advise if these are missing.) -

-

- -There are several forms. First, a non-symbolic probe point: - -
- -

-
-process(PID).statement(ADDRESS).absolute
-
-
- -
- - -is analogous to -kernel.statement(ADDRESS).absolute - -in that both use raw (unverified) virtual addresses and provide -no $variables. The target PID parameter must identify a running -process, and ADDRESS should identify a valid instruction address. -All threads of that process will be probed. -

- -Second, non-symbolic user-kernel interface events handled by -utrace may be probed: - -
- -

-
-process(PID).begin
-process("FULLPATH").begin
-process.begin
-process(PID).thread.begin
-process("FULLPATH").thread.begin
-process.thread.begin
-process(PID).end
-process("FULLPATH").end
-process.end
-process(PID).thread.end
-process("FULLPATH").thread.end
-process.thread.end
-process(PID).syscall
-process("FULLPATH").syscall
-process.syscall
-process(PID).syscall.return
-process("FULLPATH").syscall.return
-process.syscall.return
-process(PID).insn
-process("FULLPATH").insn
-process(PID).insn.block
-process("FULLPATH").insn.block
-
-
- -
- - -

- -A -.begin - -probe gets called when new process described by PID or FULLPATH gets created. -A -.thread.begin - -probe gets called when a new thread described by PID or FULLPATH gets created. -A -.end - -probe gets called when process described by PID or FULLPATH dies. -A -.thread.end - -probe gets called when a thread described by PID or FULLPATH dies. -A -.syscall - -probe gets called when a thread described by PID or FULLPATH makes a -system call. The system call number is available in the -$syscall - -context variable, and the first 6 arguments of the system call -are available in the -$argN - -(ex. $arg1, $arg2, ...) context variable. -A -.syscall.return - -probe gets called when a thread described by PID or FULLPATH returns from a -system call. The system call number is available in the -$syscall - -context variable, and the return value of the system call is available -in the -$return - -context variable. -A -.insn - -probe gets called for every single-stepped instruction of the process described by PID or FULLPATH. -A -.insn.block - -probe gets called for every block-stepped instruction of the process described by PID or FULLPATH. -

- -If a process probe is specified without a PID or FULLPATH, all user -threads will be probed. However, if systemtap was invoked with the --c or -x - -options, then process probes are restricted to the process -hierarchy associated with the target process. If a process probe is -specified without a PID or FULLPATH, but with the --c - -option, the PATH of the --c - -cmd will be heuristically filled into the process PATH. -

-

- -Third, symbolic static instrumentation compiled into programs and -shared libraries may be -probed: - -
- -

-
-process("PATH").mark("LABEL")
-process("PATH").provider("PROVIDER").mark("LABEL")
-
-
- -
- - -

- -A -.mark - -probe gets called via a static probe which is defined in the -application by STAP_PROBE1(PROVIDER,LABEL,arg1), which are macros defined in -sys/sdt.h. - -The PROVIDER is an arbitrary application identifier, LABEL is the -marker site identifier, and arg1 is the integer-typed argument. -STAP_PROBE1 is used for probes with 1 argument, STAP_PROBE2 is used -for probes with 2 arguments, and so on. The arguments of the probe -are available in the context variables $arg1, $arg2, ... An -alternative to using the STAP_PROBE macros is to use the dtrace script -to create custom macros. Additionally, the variables $$name and -$$provider are available as parts of the probe point name. The -sys/sdt.h - -macro names DTRACE_PROBE* are available as aliases for STAP_PROBE*. -

-

- -Finally, full symbolic source-level probes in user-space programs and -shared libraries are supported. These are exactly analogous to the -symbolic DWARF-based kernel/module probes described above. They -expose the same sorts of context $variables for function parameters, -local variables, and so on. - -
- -

-
-process("PATH").function("NAME")
-process("PATH").statement("*@FILE.c:123")
-process("PATH").plt("NAME")
-process("PATH").library("PATH").plt("NAME")
-process("PATH").library("PATH").function("NAME")
-process("PATH").library("PATH").statement("*@FILE.c:123")
-process("PATH").function("*").return
-process("PATH").function("myfun").label("foo")
-
-
- -
- - -

-

- -Note that for all process probes, -PATH - -names refer to executables that are searched the same way shells do: relative -to the working directory if they contain a "/" character, otherwise in -$PATH. - -If PATH names refer to scripts, the actual interpreters (specified in the -script in the first line after the #! characters) are probed. -If PATH is a process component parameter referring to shared libraries -then all processes that map it at runtime would be selected for -probing. If PATH is a library component parameter referring to shared -libraries then the process specified by the process component would be -selected. -

-

- -A .plt probe will probe functions in the program linkage table -corresponding to the rest of the probe point. .plt can be specified -as a shorthand for .plt("*"). The symbol name is available as a -$$name context variable; function arguments are not available, since -PLTs are processed without debuginfo. -

-

- -If the PATH string contains wildcards as in the MPATTERN case, then -standard globbing is performed to find all matching paths. In this -case, the -$PATH - -environment variable is not used. -

-

- -If systemtap was invoked with the --c or -x - -options, then process probes are restricted to the process -hierarchy associated with the target process. -

-  -

PROCFS

- -

-These probe points allow procfs "files" in -/proc/systemtap/MODNAME to be created, read and written using a -permission that may be modified using the proper umask value. Default permissions are 0400 for read -probes, and 0200 for write probes. If both a read and write probe are being -used on the same file, a default permission of 0600 will be used. -Using procfs.umask(0040).read would -result in a 0404 permission set for the file. -(MODNAME - -is the name of the systemtap module). The -proc - -filesystem is a pseudo-filesystem which is used an an interface to -kernel data structures. There are several probe point variants supported -by the translator: -

- -
- -

-
-procfs("PATH").read
-procfs("PATH").umask(UMASK).read
-procfs("PATH").read.maxsize(MAXSIZE)
-procfs("PATH").umask(UMASK).maxsize(MAXSIZE)
-procfs("PATH").write
-procfs("PATH").umask(UMASK).write
-procfs.read
-procfs.umask(UMASK).read
-procfs.read.maxsize(MAXSIZE)
-procfs.umask(UMASK).read.maxsize(MAXSIZE)
-procfs.write
-procfs.umask(UMASK).write
-
-
- -
- - -

-PATH - -is the file name (relative to /proc/systemtap/MODNAME) to be created. -If no -PATH - -is specified (as in the last two variants above), -PATH - -defaults to "command". -

- -When a user reads /proc/systemtap/MODNAME/PATH, the corresponding -procfs -read - -probe is triggered. The string data to be read should be assigned to -a variable named -$value, - -like this: -

- -
- -

-
-procfs("PATH").read { $value = "100\n" }
-
-
- -
- - -

- -When a user writes into /proc/systemtap/MODNAME/PATH, the -corresponding procfs -write - -probe is triggered. The data the user wrote is available in the -string variable named -$value, - -like this: -

- -
- -

-
-procfs("PATH").write { printf("user wrote: %s", $value) }
-
-
- -
- - -

- -MAXSIZE - -is the size of the procfs read buffer. Specifying -MAXSIZE - -allows larger procfs output. If no -MAXSIZE - -is specified, the procfs read buffer defaults to -STP_PROCFS_BUFSIZE - -(which defaults to -MAXSTRINGLEN, - -the maximum length of a string). -If setting the procfs read buffers for more than one file is needed, -it may be easiest to override the -STP_PROCFS_BUFSIZE - -definition. -Here's an example of using -MAXSIZE: - -

- -
- -

-
-procfs.read.maxsize(1024) {
-    $value = "long string..."
-    $value .= "another long string..."
-    $value .= "another long string..."
-    $value .= "another long string..."
-}
-
-
- -
- - -

-  -

NETFILTER HOOKS

- -

-These probe points allow observation of network packets using the -netfilter mechanism. A netfilter probe in systemtap corresponds to a -netfilter hook function in the original netfilter probes API. It is -probably more convenient to use -tapset::netfilter(3stap), - -which wraps the primitive netfilter hooks and does the work of -extracting useful information from the context variables. -

-

- -There are several probe point variants supported by the translator: -

- -
- -

-
-netfilter.hook("HOOKNAME").pf("PROTOCOL_F")
-netfilter.pf("PROTOCOL_F").hook("HOOKNAME")
-netfilter.hook("HOOKNAME").pf("PROTOCOL_F").priority("PRIORITY")
-netfilter.pf("PROTOCOL_F").hook("HOOKNAME").priority("PRIORITY")
-
-
- -
- - -

-

- -PROTOCOL_F - -is the protocol family to listen for, currently one of -NFPROTO_IPV4, - -NFPROTO_IPV6, - -NFPROTO_ARP, - -or -NFPROTO_BRIDGE. - -

-

- -HOOKNAME - -is the point, or 'hook', in the protocol stack at which to intercept -the packet. The available hook names for each protocol family are -taken from the kernel header files <linux/netfilter_ipv4.h>, -<linux/netfilter_ipv6.h>, <linux/netfilter_arp.h> and -<linux/netfilter_bridge.h>. For instance, allowable hook names for -NFPROTO_IPV4 - -are -NF_INET_PRE_ROUTING, - -NF_INET_LOCAL_IN, - -NF_INET_FORWARD, - -NF_INET_LOCAL_OUT, - -and -NF_INET_POST_ROUTING. - -

-

- -PRIORITY - -is an integer priority giving the order in which the probe point -should be triggered relative to any other netfilter hook functions -which trigger on the same packet. Hook functions execute on each -packet in order from smallest priority number to largest priority number. If no -PRIORITY - -is specified (as in the first two probe point variants above), -PRIORITY - -defaults to "0". -

-There are a number of predefined priority names of the form -NF_IP_PRI_* - -and -NF_IP6_PRI_* - -which are defined in the kernel header files <linux/netfilter_ipv4.h> and <linux/netfilter_ipv6.h> respectively. The script is permitted to use these -instead of specifying an integer priority. (The probe points for -NFPROTO_ARP - -and -NFPROTO_BRIDGE - -currently do not expose any named hook priorities to the script writer.) -Thus, allowable ways to specify the priority include: -

- -
- -

-
-priority("255")
-priority("NF_IP_PRI_SELINUX_LAST")
-
-
- -
- - -

-A script using guru mode is permitted to specify any identifier or -number as the parameter for hook, pf, and priority. This feature -should be used with caution, as the parameter is inserted verbatim into -the C code generated by systemtap. -

-The netfilter probe points define the following context variables: -

-
$skb - -
-The address of the sk_buff struct representing the packet. See -<linux/skbuff.h> for details on how to use this struct, or -alternatively use the tapset -tapset::netfilter(3stap) - -for easy access to key information. -

-

$in - -
-The address of the net_device struct representing the network device -on which the packet was received (if any). May be 0 if the device is -unknown or undefined at that stage in the protocol stack. -

-

$out - -
-The address of the net_device struct representing the network device -on which the packet will be sent (if any). May be 0 if the device is -unknown or undefined at that stage in the protocol stack. -

-

$verdict - -
-(Guru mode only.) Assigning one of the verdict values defined in -<linux/netfilter.h> to this variable alters the further progress of -the packet through the protocol stack. For instance, the following -guru mode script forces all ipv6 network packets to be dropped: -

- -
- -

-
-probe netfilter.pf("NFPROTO_IPV6").hook("NF_IP6_PRE_ROUTING") {
-  $verdict = 0 /* nf_drop */
-}
-
-
- -
- - -

-For convenience, unlike the primitive probe points discussed here, the -probes defined in -tapset::netfilter(3stap) - -export the lowercase names of the verdict constants (e.g. NF_DROP -becomes nf_drop) as local variables. -

-

-  -

MARKERS

- -

-This family of probe points hooks up to static probing markers -inserted into the kernel or modules. These markers are special macro -calls inserted by kernel developers to make probing faster and more -reliable than with DWARF-based probes. Further, DWARF debugging -information is -not - -required to probe markers. -

-Marker probe points begin with -kernel. - -The next part names the marker itself: -mark(name). - -The marker name string, which may contain the usual wildcard characters, -is matched against the names given to the marker macros when the kernel -and/or module was compiled. Optionally, you can specify -format(format). - -Specifying the marker format string allows differentiation between two -markers with the same name but different marker format strings. -

-The handler associated with a marker-based probe may read the -optional parameters specified at the macro call site. These are -named -$arg1 through $argNN, - -where NN is the number of parameters supplied by the macro. Number -and string parameters are passed in a type-safe manner. -

-The marker format string associated with a marker is available in -$format. - -And also the marker name string is available in -$name. - -

-  -

TRACEPOINTS

- -

-This family of probe points hooks up to static probing tracepoints -inserted into the kernel or modules. As with markers, these -tracepoints are special macro calls inserted by kernel developers to -make probing faster and more reliable than with DWARF-based probes, -and DWARF debugging information is not required to probe tracepoints. -Tracepoints have an extra advantage of more strongly-typed parameters -than markers. -

-Tracepoint probes begin with -kernel. - -The next part names the tracepoint itself: -trace(name). - -The tracepoint name string, which may contain the usual wildcard -characters, is matched against the names defined by the kernel -developers in the tracepoint header files. -

-The handler associated with a tracepoint-based probe may read the -optional parameters specified at the macro call site. These are -named according to the declaration by the tracepoint author. For -example, the tracepoint probe -kernel.trace(sched_switch) - -provides the parameters -$rq, $prev, and $next. - -If the parameter is a complex type, as in a struct pointer, then a -script can access fields with the same syntax as DWARF $target -variables. Also, tracepoint parameters cannot be modified, but in -guru-mode a script may modify fields of parameters. -

-The name of the tracepoint is available in -$$name, - -and a string of name=value pairs for all parameters of the tracepoint -is available in -$$vars or $$parms. - -

-  -

HARDWARE BREAKPOINTS

- -This family of probes is used to set hardware watchpoints for a given -
 (global) kernel symbol. The probes take three components as inputs : -

-1. The -virtualaddress/name - -of the kernel symbol to be traced is supplied as argument to this class -of probes. ( Probes for only data segment variables are supported. Probing -local variables of a function cannot be done.) -

-2. Nature of access to be probed : -a. -.write - -probe gets triggered when a write happens at the specified address/symbol -name. -b. -rw - -probe is triggered when either a read or write happens. -

-3. -.length - -(optional) -Users have the option of specifying the address interval to be probed -using "length" constructs. The user-specified length gets approximated -to the closest possible address length that the architecture can -support. If the specified length exceeds the limits imposed by -architecture, an error message is flagged and probe registration fails. -Wherever 'length' is not specified, the translator requests a hardware -breakpoint probe of length 1. It should be noted that the "length" -construct is not valid with symbol names. -

-Following constructs are supported : - -
- -

-
-probe kernel.data(ADDRESS).write
-probe kernel.data(ADDRESS).rw
-probe kernel.data(ADDRESS).length(LEN).write
-probe kernel.data(ADDRESS).length(LEN).rw
-probe kernel.data("SYMBOL_NAME").write
-probe kernel.data("SYMBOL_NAME").rw
-
-
- -
- - -

-This set of probes make use of the debug registers of the processor, -which is a scarce resource. (4 on x86 , 1 on powerpc ) The script -translation flags a warning if a user requests more hardware breakpoint probes -than the limits set by architecture. For example,a pass-2 warning is flashed -when an input script requests 5 hardware breakpoint probes on an x86 -system while x86 architecture supports a maximum of 4 breakpoints. -Users are cautioned to set probes judiciously. -

-  -

PERF

- -

-This -prototype - -family of probe points interfaces to the kernel "perf event" -infrastructure for controlling hardware performance counters. -The events being attached to are described by the "type", -"config" fields of the -perf_event_attr - -structure, and are sampled at an interval governed by the -"sample_period" field. -

-These fields are made available to systemtap scripts using -the following syntax: - -
- -

-
-probe perf.type(NN).config(MM).sample(XX)
-probe perf.type(NN).config(MM)
-probe perf.type(NN).config(MM).process("PROC")
-probe perf.type(NN).config(MM).counter("COUNTER")
-probe perf.type(NN).config(MM).process("PROC").counter("COUNTER")
-
-
- -
- - -The systemtap probe handler is called once per XX increments -of the underlying performance counter. The default sampling -count is 1000000. -The range of valid type/config is described by the -perf_event_open(2) - -system call, and/or the -linux/perf_event.h - -file. Invalid combinations or exhausted hardware counter resources -result in errors during systemtap script startup. Systemtap does -not sanity-check the values: it merely passes them through to -the kernel for error- and safety-checking. By default the perf event -probe is systemwide unless .process is specified, which will bind the -probe to a specific task. If the name is omitted then it -is inferred from the stap -c argument. A perf event can be read on -demand using .counter. The body of the perf probe handler will not be -invoked for a .counter probe; instead, the counter is read in a user -space probe via: -
-

   process("PROCESS").statement("func@file") {stat <<< @perf("NAME")} 
-

-

-

-  -

EXAMPLES

- -

- -Here are some example probe points, defining the associated events. -

-
begin, end, end
-refers to the startup and normal shutdown of the session. In this -case, the handler would run once during startup and twice during -shutdown. -
timer.jiffies(1000).randomize(200)
-refers to a periodic interrupt, every 1000 +/- 200 jiffies. -
kernel.function("*init*"), kernel.function("*exit*")
-refers to all kernel functions with "init" or "exit" in the name. -
kernel.function("*@kernel/time.c:240")
-refers to any functions within the "kernel/time.c" file that span -line 240. -Note - -that this is -not - -a probe at the statement at that line number. Use the -kernel.statement - -probe instead. -
kernel.mark("getuid")
-refers to an STAP_MARK(getuid, ...) macro call in the kernel. -
module("usb*").function("*sync*").return
-refers to the moment of return from all functions with "sync" in the -name in any of the USB drivers. -
kernel.statement(0xc0044852)
-refers to the first byte of the statement whose compiled instructions -include the given address in the kernel. -
kernel.statement("*@kernel/time.c:296")
-refers to the statement of line 296 within "kernel/time.c". -
kernel.statement("bio_init@fs/bio.c+3")
-refers to the statement at line bio_init+3 within "fs/bio.c". -
kernel.data("pid_max").write
-refers to a hardware breakpoint of type "write" set on pid_max -
syscall.*.return
-refers to the group of probe aliases with any name in the third position -

-

-  -

SEE ALSO

- -stap(1), - -probe::*(3stap), - -tapset::*(3stap) - -

- - - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SYNTAX
-
DWARF DEBUGINFO
-
PROBE POINT FAMILIES
-
-
BEGIN/END/ERROR
-
NEVER
-
SYSCALL
-
TIMERS
-
DWARF
-
CONTEXT VARIABLES
-
MORE ON RETURN PROBES
-
DWARFLESS
-
USER-SPACE
-
PROCFS
-
NETFILTER HOOKS
-
MARKERS
-
TRACEPOINTS
-
HARDWARE BREAKPOINTS
-
PERF
-
-
EXAMPLES
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/staprun.8.html b/man/staprun.8.html deleted file mode 100644 index 13a7bb08..00000000 --- a/man/staprun.8.html +++ /dev/null @@ -1,409 +0,0 @@ - -Manpage of STAPRUN - -

STAPRUN

-Section: Maintenance Commands (8)
Index -Return to Main Contents
- -  -

NAME

- -staprun - systemtap runtime -

-  -

SYNOPSIS

- -

-
- -staprun - -[ -OPTIONS - -] -MODULE - -[ -MODULE-OPTIONS - -] -

-  -

DESCRIPTION

- -

-The -staprun - -program is the back-end of the Systemtap tool. It expects a kernel -module produced by the front-end -stap - -tool. -

- -Splitting the systemtap tool into a front-end and a back-end allows a -user to compile a systemtap script on a development machine that has -the kernel debugging information (need to compile the script) and then -transfer the resulting kernel module to a production machine that -doesn't have any development tools or kernel debugging information installed. -

- -Please refer to stappaths (7) for the version number, or run -rpm -q systemtap (fedora/red hat) -apt-get -v systemtap (ubuntu) -

-  -

OPTIONS

- -The -staprun - -program supports the following options. Any other option -prints a list of supported options. -
-
-v - -
-Verbose mode. -
-V - -
-Print version number and exit. -
-w - -
-Suppress warnings from the script. -
-u - -
-Load the uprobes.ko module. -
-c CMD - -
-Command CMD will be run and the -staprun - -program will exit when CMD -does. The '_stp_target' variable will contain the pid for CMD. -
-x PID - -
-The '_stp_target' variable will be set to PID. -
-o FILE - -
-Send output to FILE. If the module uses bulk mode, the output will -be in percpu files FILE_x(FILE_cpux in background and bulk mode) -where 'x' is the cpu number. This supports strftime(3) formats -for FILE. -
-b BUFFER_SIZE - -
-The systemtap module will specify a buffer size. -Setting one here will override that value. The value should be -an integer between 1 and 4095 which be assumed to be the -buffer size in MB. That value will be per-cpu if bulk mode is used. -
-L - -
-Load module and start probes, then detach from the module leaving the -probes running. The module can be attached to later by using the --A - -option. -
-A - -
-Attach to loaded systemtap module. -
-d - -
-Delete a module. Only detached or unused modules -the user has permission to access will be deleted. Use "*" -(quoted) to delete all unused modules. -
-D - -
-Run staprun in background as a daemon and show it's pid. -
-R - -
-Rename the module to a unique name before inserting it. -
-r N:URI - -
-Pass the given number and URI data to the tapset functions -remote_id() and remote_uri(). -
-S size[,N] - -
-Sets the maximum size of output file and the maximum number of output files. -If the size of output file will exceed -size - -, systemtap switches output file to the next file. And if the number of -output files exceed -N - -, systemtap removes the oldest output file. You can omit the second argument. -
-T timeout - -
-Sets maximum time reader thread will wait before dumping trace buffer. Value is -in ms, default is 200ms. Setting this to a high value decreases number of stapio -wake-ups, allowing deeper sleep for embedded platforms. But it impacts interactivity -on terminal as traces are dumped less often in case of low throughput. -There is no interactivity or performance impact for high throughput as trace is -dumped when buffer is full, before this timeout expires. -
var1=val - -
-Sets the value of global variable var1 to val. Global variables contained -within a module are treated as module options and can be set from the -staprun command line. -

-

-  -

ARGUMENTS

- -MODULE - -is either a module path or a module name. If it is a module name, -the module will be looked for in the following directory -(where 'VERSION' is the output of "uname -r"): -
-
-/lib/modules/VERSION/systemtap -
-

- - -Any additional arguments on the command line are passed to the -module. One use of these additional module arguments is to set the value -of global variables declared within the module. -

- -

- $ stap -p4 -m mod1 -e [aq]global var1="foo"; probe begin{printf("%s\n", var1); exit()}[aq] -
- -

- -Running this with an additional module argument: -

- -

- $ staprun mod1.ko var1="HelloWorld" -
- - HelloWorld -

- -Spaces and exclamation marks currently cannot be passed into global variables -this way. -

-  -

EXAMPLES

- -See the -stapex(3stap) - -manual page for a collection of sample scripts. -

- -Here is a very basic example of how to use -staprun. - -First, use -stap - -to compile a script. The -stap - -program will report the pathname to the resulting module. -

- - $ stap -p4 -e [aq]probe begin { printf("Hello World!\n"); exit() }[aq] -
- - /home/user/.systemtap/cache/85/stap_8553d83f78c_265.ko -

- -Run -staprun - -with the pathname to the module as an argument. -

- - $ staprun /home/user/.systemtap/cache/85/stap_8553d83f78c_265.ko -
- - Hello World! -  -

MODULE DETACHING AND ATTACHING

- -After the -staprun - -program installs a Systemtap kernel module, users can detach from the -kernel module and reattach to it later. The --L - -option loads the module and automatically detaches. Users can also -detach from the kernel module interactively by sending the SIGQUIT -signal from the keyboard (typically by typing Ctrl-\). -

- -To reattach to a kernel module, the -staprun - --A - -option would be used. -

-  -

FILE SWITCHING BY SIGNAL

- -After the -staprun - -launched the -stapio - -, users can command it to switch output file to next file when it -outputs to file(s) (running staprun with --o - -option) by sending a -SIGUSR2 - -signal to the -stapio - -process. When it receives SIGUSR2, it will switch output file to -new file with suffix -.N - -where N is the sequential number. -For example, -

- - $ staprun -o foo ... -

- -outputs trace logs to -foo - -and if it receives -SIGUSR2 - -signal, it switches output to -foo.1 - -file. And receiving -SIGUSR2 - -again, it switches to -foo.2 - -file. -

-  -

SAFETY AND SECURITY

- -Systemtap is an administrative tool. It exposes kernel internal data -structures and potentially private user information. See the -stap(1) - -manual page for additional information on safety and security. -

- -To increase system security, only the root user and members of both -stapdev and staprun - -groups can use -staprun - -to insert systemtap modules (or attach to existing ones). -Members of the -stapusr - -group only can use -staprun - -to insert or remove systemtap modules (or attach to existing systemtap modules) -under the following conditions: -

-
*
-The module is located in -the /lib/modules/VERSION/systemtap directory. This directory -must be owned by root and not be world writable. -
*
-The module has been signed by a trusted signer. Trusted signers are normally -systemtap compile servers which sign modules when the --unprivileged option is -specified by the client. See the -stap-server(8) - -manual page for a for more information. -
-  -

FILES

- -
-
/lib/modules/VERSION/systemtap
-If MODULE is a module name, the module will be looked for in this directory. -Users who are only in the -'stapusr' - -group can install modules -located in this directory. This directory must be owned by the root -user and not be world writable. -
-  -

SEE ALSO

- -stap(1), - -stapprobes(3stap), - -stap-server(8), - -stapex(3stap) - -

-  -

BUGS

- -Use the Bugzilla link of the project web page or our mailing list. - -http://sourceware.org/systemtap/, <systemtap@sourceware.org>. - - -

-

- -


- 

Index

-
-
NAME
-
SYNOPSIS
-
DESCRIPTION
-
OPTIONS
-
ARGUMENTS
-
EXAMPLES
-
MODULE DETACHING AND ATTACHING
-
FILE SWITCHING BY SIGNAL
-
SAFETY AND SECURITY
-
FILES
-
SEE ALSO
-
BUGS
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:21 GMT, March 20, 2013 - - diff --git a/man/stapvars.3stap.html b/man/stapvars.3stap.html deleted file mode 100644 index 72be270e..00000000 --- a/man/stapvars.3stap.html +++ /dev/null @@ -1,95 +0,0 @@ - -Manpage of STAPVARS - -

STAPVARS

-Section: Misc. Reference Manual Pages (3stap)
Index -Return to Main Contents
- -  -

NAME

- -stapvars - systemtap variables -

-  -

DESCRIPTION

- -The following sections enumerate the public variables provided by -standard tapsets installed, (the installation path is show in the -stappaths (7) manual page). Each variable is described with a -type, and its behavior/restrictions. -The syntax is the same as printed with the -stap option -p2. - -Examples: -

-

-
example1:long
-Variable "example1" contains an integer. -

-

example2:string [long]
-Variable "example2" is an array of strings, indexed by integers. -

-

-  -

ARGV

- -

-

-
argc:long
-Contains the value of the -$# - -value: the number of command line arguments passed to the systemtap script. -It is initialized with an implicit begin(-1) probe. -

-

argv:string [long]
-Contains each command line argument as a string. argv[1] will equal @1 if -there was at least one command line argument. Arguments beyond #32 are not -transcribed, and produce a warning message within the begin(-1) probe that -initializes this array. -

-

-  -

NULL

- -

-

-
NULL:long
-Simply defined as the number 0. -

-

-  -

FILES

- -
-
More files and their corresponding paths can be found in the stappaths (7) manual page.
-

-

-  -

SEE ALSO

- -stap(1) - -stappaths(7) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
-
ARGV
-
NULL
-
-
FILES
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::ansi.3stap.html b/man/tapset::ansi.3stap.html deleted file mode 100644 index 618d0b4c..00000000 --- a/man/tapset::ansi.3stap.html +++ /dev/null @@ -1,174 +0,0 @@ - -Manpage of tapset::ansi - -

tapset::ansi

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::ansi - systemtap ansi tapset -
  -  -

DESCRIPTION

- -
-
-
-
ansi_clear_screen - -
-Move cursor to top left and clear screen. -
-See -function::ansi_clear_screen(3stap) - -
 for details. - -
ansi_set_color - -
-Set the ansi Select Graphic Rendition mode. -
-See -function::ansi_set_color(3stap) - -
 for details. - -
ansi_set_color2 - -
-Set the ansi Select Graphic Rendition mode. -
-See -function::ansi_set_color2(3stap) - -
 for details. - -
ansi_set_color3 - -
-Set the ansi Select Graphic Rendition mode. -
-See -function::ansi_set_color3(3stap) - -
 for details. - -
ansi_reset_color - -
-Resets Select Graphic Rendition mode. -
-See -function::ansi_reset_color(3stap) - -
 for details. - -
ansi_new_line - -
-Move cursor to new line. -
-See -function::ansi_new_line(3stap) - -
 for details. - -
ansi_cursor_move - -
-Move cursor to new coordinates. -
-See -function::ansi_cursor_move(3stap) - -
 for details. - -
ansi_cursor_hide - -
-Hides the cursor. -
-See -function::ansi_cursor_hide(3stap) - -
 for details. - -
ansi_cursor_save - -
-Saves the cursor position. -
-See -function::ansi_cursor_save(3stap) - -
 for details. - -
ansi_cursor_restore - -
-Restores a previously saved cursor position. -
-See -function::ansi_cursor_restore(3stap) - -
 for details. - -
ansi_cursor_show - -
-Shows the cursor. -
-See -function::ansi_cursor_show(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::ansi_clear_screen(3stap), - -function::ansi_set_color(3stap), - -function::ansi_set_color2(3stap), - -function::ansi_set_color3(3stap), - -function::ansi_reset_color(3stap), - -function::ansi_new_line(3stap), - -function::ansi_cursor_move(3stap), - -function::ansi_cursor_hide(3stap), - -function::ansi_cursor_save(3stap), - -function::ansi_cursor_restore(3stap), - -function::ansi_cursor_show(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::atomic.3stap.html b/man/tapset::atomic.3stap.html deleted file mode 100644 index 5337a88a..00000000 --- a/man/tapset::atomic.3stap.html +++ /dev/null @@ -1,66 +0,0 @@ - -Manpage of tapset::atomic - -

tapset::atomic

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::atomic - systemtap atomic tapset -
  -  -

DESCRIPTION

- -
-
-
-
atomic_read - -
-Retrieves an atomic variable from kernel memory -
-See -function::atomic_read(3stap) - -
 for details. - -
atomic_long_read - -
-Retrieves an atomic long variable from kernel memory -
-See -function::atomic_long_read(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::atomic_read(3stap), - -function::atomic_long_read(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::context-caller.3stap.html b/man/tapset::context-caller.3stap.html deleted file mode 100644 index 3a002222..00000000 --- a/man/tapset::context-caller.3stap.html +++ /dev/null @@ -1,82 +0,0 @@ - -Manpage of tapset::context-caller - -

tapset::context-caller

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::context-caller - systemtap context-caller tapset -
  -  -

DESCRIPTION

- -

-
 Provides caller and caller_addr function for context for kernel and user -
 space. -

-

-
-
-
callers - -
-Return first n elements of kernel stack backtrace -
-See -function::callers(3stap) - -
 for details. - -
caller - -
-Return name and address of calling function -
-See -function::caller(3stap) - -
 for details. - -
caller_addr - -
-Return caller address -
-See -function::caller_addr(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::callers(3stap), - -function::caller(3stap), - -function::caller_addr(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::context-envvar.3stap.html b/man/tapset::context-envvar.3stap.html deleted file mode 100644 index f7f2cad4..00000000 --- a/man/tapset::context-envvar.3stap.html +++ /dev/null @@ -1,59 +0,0 @@ - -Manpage of tapset::context-envvar - -

tapset::context-envvar

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::context-envvar - systemtap context-envvar tapset -
  -  -

DESCRIPTION

- -

-
 Context functions provide additional information about where an event occurred. These functions can -provide information such as a backtrace to where the event occurred and the current register values for the -processor. -

-

-
-
-
env_var - -
-Fetch environment variable from current process -
-See -function::env_var(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::env_var(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::context-symbols.3stap.html b/man/tapset::context-symbols.3stap.html deleted file mode 100644 index 1e7d811a..00000000 --- a/man/tapset::context-symbols.3stap.html +++ /dev/null @@ -1,167 +0,0 @@ - -Manpage of tapset::context-symbols - -

tapset::context-symbols

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::context-symbols - systemtap context-symbols tapset -
  -  -

DESCRIPTION

- -

-
 Context functions provide additional information about where an event occurred. These functions can  -provide information such as a backtrace to where the event occurred and the current register values for the -processor. -

-

-
-
-
stack - -
-Return address at given depth of kernel stack backtrace -
-See -function::stack(3stap) - -
 for details. - -
print_stack - -
-Print out kernel stack from string -
-See -function::print_stack(3stap) - -
 for details. - -
sprint_stack - -
-Return stack for kernel addresses from string -
-See -function::sprint_stack(3stap) - -
 for details. - -
probefunc - -
-Return the probe point's function name, if known -
-See -function::probefunc(3stap) - -
 for details. - -
probemod - -
-Return the probe point's kernel module name -
-See -function::probemod(3stap) - -
 for details. - -
modname - -
-Return the kernel module name loaded at the address -
-See -function::modname(3stap) - -
 for details. - -
symname - -
-Return the kernel symbol associated with the given address -
-See -function::symname(3stap) - -
 for details. - -
symdata - -
-Return the kernel symbol and module offset for the address -
-See -function::symdata(3stap) - -
 for details. - -
print_syms - -
-Print out kernel stack from string -
-See -function::print_syms(3stap) - -
 for details. - -
sprint_syms - -
-Return stack for kernel addresses from string -
-See -function::sprint_syms(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::stack(3stap), - -function::print_stack(3stap), - -function::sprint_stack(3stap), - -function::probefunc(3stap), - -function::probemod(3stap), - -function::modname(3stap), - -function::symname(3stap), - -function::symdata(3stap), - -function::print_syms(3stap), - -function::sprint_syms(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::context-unwind.3stap.html b/man/tapset::context-unwind.3stap.html deleted file mode 100644 index 0a20363a..00000000 --- a/man/tapset::context-unwind.3stap.html +++ /dev/null @@ -1,95 +0,0 @@ - -Manpage of tapset::context-unwind - -

tapset::context-unwind

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::context-unwind - systemtap context-unwind tapset -
  -  -

DESCRIPTION

- -

-
 Context functions provide additional information about where an event occurred. These functions can  -provide information such as a backtrace to where the event occurred and the current register values for the -processor. -

-

-
-
-
print_backtrace - -
-Print kernel stack back trace -
-See -function::print_backtrace(3stap) - -
 for details. - -
sprint_backtrace - -
-Return stack back trace as string -
-See -function::sprint_backtrace(3stap) - -
 for details. - -
backtrace - -
-Hex backtrace of current kernel stack -
-See -function::backtrace(3stap) - -
 for details. - -
task_backtrace - -
-Hex backtrace of an arbitrary task -
-See -function::task_backtrace(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::print_backtrace(3stap), - -function::sprint_backtrace(3stap), - -function::backtrace(3stap), - -function::task_backtrace(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::context.3stap.html b/man/tapset::context.3stap.html deleted file mode 100644 index 3721e2a0..00000000 --- a/man/tapset::context.3stap.html +++ /dev/null @@ -1,455 +0,0 @@ - -Manpage of tapset::context - -

tapset::context

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::context - systemtap context tapset -
  -  -

DESCRIPTION

- -

-
 Context functions provide additional information about where an event occurred. These functions can -provide information such as a backtrace to where the event occurred and the current register values for the -processor. -

-

-
-
-
print_regs - -
-Print a register dump -
-See -function::print_regs(3stap) - -
 for details. - -
pp - -
-Returns the active probe point -
-See -function::pp(3stap) - -
 for details. - -
ppfunc - -
-Returns the function name parsed from pp() -
-See -function::ppfunc(3stap) - -
 for details. - -
probe_type - -
-The low level probe handler type of the current probe. -
-See -function::probe_type(3stap) - -
 for details. - -
execname - -
-Returns the execname of a target process (or group of processes) -
-See -function::execname(3stap) - -
 for details. - -
pid - -
-Returns the ID of a target process -
-See -function::pid(3stap) - -
 for details. - -
tid - -
-Returns the thread ID of a target process -
-See -function::tid(3stap) - -
 for details. - -
ppid - -
-Returns the process ID of a target process's parent process -
-See -function::ppid(3stap) - -
 for details. - -
pgrp - -
-Returns the process group ID of the current process -
-See -function::pgrp(3stap) - -
 for details. - -
sid - -
-Returns the session ID of the current process -
-See -function::sid(3stap) - -
 for details. - -
pexecname - -
-Returns the execname of a target process's parent process -
-See -function::pexecname(3stap) - -
 for details. - -
gid - -
-Returns the group ID of a target process -
-See -function::gid(3stap) - -
 for details. - -
egid - -
-Returns the effective gid of a target process -
-See -function::egid(3stap) - -
 for details. - -
uid - -
-Returns the user ID of a target process -
-See -function::uid(3stap) - -
 for details. - -
euid - -
-Return the effective uid of a target process -
-See -function::euid(3stap) - -
 for details. - -
is_myproc - -
-Determines if the current probe point has occurred in the user's own process -
-See -function::is_myproc(3stap) - -
 for details. - -
cpuid - -
-Returns the current cpu number -
-See -function::cpuid(3stap) - -
 for details. - -
cpu - -
-Returns the current cpu number -
-See -function::cpu(3stap) - -
 for details. - -
registers_valid - -
-Determines validity of register() and u_register() in current context -
-See -function::registers_valid(3stap) - -
 for details. - -
user_mode - -
-Determines if probe point occurs in user-mode -
-See -function::user_mode(3stap) - -
 for details. - -
is_return - -
-Whether the current probe context is a return probe -
-See -function::is_return(3stap) - -
 for details. - -
target - -
-Return the process ID of the target process -
-See -function::target(3stap) - -
 for details. - -
module_name - -
-The module name of the current script -
-See -function::module_name(3stap) - -
 for details. - -
stp_pid - -
-The process id of the stapio process -
-See -function::stp_pid(3stap) - -
 for details. - -
remote_id - -
-The index of this instance in a remote execution. -
-See -function::remote_id(3stap) - -
 for details. - -
remote_uri - -
-The name of this instance in a remote execution. -
-See -function::remote_uri(3stap) - -
 for details. - -
stack_size - -
-Return the size of the kernel stack -
-See -function::stack_size(3stap) - -
 for details. - -
stack_used - -
-Returns the amount of kernel stack used -
-See -function::stack_used(3stap) - -
 for details. - -
stack_unused - -
-Returns the amount of kernel stack currently available -
-See -function::stack_unused(3stap) - -
 for details. - -
addr - -
-Address of the current probe point. -
-See -function::addr(3stap) - -
 for details. - -
uaddr - -
-User space address of current running task -
-See -function::uaddr(3stap) - -
 for details. - -
cmdline_args - -
-Fetch command line arguments from current process -
-See -function::cmdline_args(3stap) - -
 for details. - -
cmdline_arg - -
-Fetch a command line argument -
-See -function::cmdline_arg(3stap) - -
 for details. - -
cmdline_str - -
-Fetch all command line arguments from current process -
-See -function::cmdline_str(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::print_regs(3stap), - -function::pp(3stap), - -function::ppfunc(3stap), - -function::probe_type(3stap), - -function::execname(3stap), - -function::pid(3stap), - -function::tid(3stap), - -function::ppid(3stap), - -function::pgrp(3stap), - -function::sid(3stap), - -function::pexecname(3stap), - -function::gid(3stap), - -function::egid(3stap), - -function::uid(3stap), - -function::euid(3stap), - -function::is_myproc(3stap), - -function::cpuid(3stap), - -function::cpu(3stap), - -function::registers_valid(3stap), - -function::user_mode(3stap), - -function::is_return(3stap), - -function::target(3stap), - -function::module_name(3stap), - -function::stp_pid(3stap), - -function::remote_id(3stap), - -function::remote_uri(3stap), - -function::stack_size(3stap), - -function::stack_used(3stap), - -function::stack_unused(3stap), - -function::addr(3stap), - -function::uaddr(3stap), - -function::cmdline_args(3stap), - -function::cmdline_arg(3stap), - -function::cmdline_str(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::conversions-guru.3stap.html b/man/tapset::conversions-guru.3stap.html deleted file mode 100644 index 33ab0cc7..00000000 --- a/man/tapset::conversions-guru.3stap.html +++ /dev/null @@ -1,126 +0,0 @@ - -Manpage of tapset::conversions-guru - -

tapset::conversions-guru

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::conversions-guru - systemtap conversions-guru tapset -
  -  -

DESCRIPTION

- -
-
-
-
set_kernel_string - -
-Writes a string to kernel memory -
-See -function::set_kernel_string(3stap) - -
 for details. - -
set_kernel_string_n - -
-Writes a string of given length to kernel memory -
-See -function::set_kernel_string_n(3stap) - -
 for details. - -
set_kernel_long - -
-Writes a long value to kernel memory -
-See -function::set_kernel_long(3stap) - -
 for details. - -
set_kernel_int - -
-Writes an int value to kernel memory -
-See -function::set_kernel_int(3stap) - -
 for details. - -
set_kernel_short - -
-Writes a short value to kernel memory -
-See -function::set_kernel_short(3stap) - -
 for details. - -
set_kernel_char - -
-Writes a char value to kernel memory -
-See -function::set_kernel_char(3stap) - -
 for details. - -
set_kernel_pointer - -
-Writes a pointer value to kernel memory. -
-See -function::set_kernel_pointer(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::set_kernel_string(3stap), - -function::set_kernel_string_n(3stap), - -function::set_kernel_long(3stap), - -function::set_kernel_int(3stap), - -function::set_kernel_short(3stap), - -function::set_kernel_char(3stap), - -function::set_kernel_pointer(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::conversions.3stap.html b/man/tapset::conversions.3stap.html deleted file mode 100644 index a08c0d29..00000000 --- a/man/tapset::conversions.3stap.html +++ /dev/null @@ -1,186 +0,0 @@ - -Manpage of tapset::conversions - -

tapset::conversions

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::conversions - systemtap conversions tapset -
  -  -

DESCRIPTION

- -
-
-
-
kernel_string - -
-Retrieves string from kernel memory -
-See -function::kernel_string(3stap) - -
 for details. - -
kernel_string2 - -
-Retrieves string from kernel memory with alternative error string -
-See -function::kernel_string2(3stap) - -
 for details. - -
kernel_string_n - -
-Retrieves string of given length from kernel memory -
-See -function::kernel_string_n(3stap) - -
 for details. - -
kernel_string_utf32 - -
-Retrieves UTF-32 string from kernel memory -
-See -function::kernel_string_utf32(3stap) - -
 for details. - -
kernel_string2_utf32 - -
-Retrieves UTF-32 string from kernel memory with alternative error string -
-See -function::kernel_string2_utf32(3stap) - -
 for details. - -
kernel_string_utf16 - -
-Retrieves UTF-16 string from kernel memory -
-See -function::kernel_string_utf16(3stap) - -
 for details. - -
kernel_string2_utf16 - -
-Retrieves UTF-16 string from kernel memory with alternative error string -
-See -function::kernel_string2_utf16(3stap) - -
 for details. - -
kernel_long - -
-Retrieves a long value stored in kernel memory -
-See -function::kernel_long(3stap) - -
 for details. - -
kernel_int - -
-Retrieves an int value stored in kernel memory -
-See -function::kernel_int(3stap) - -
 for details. - -
kernel_short - -
-Retrieves a short value stored in kernel memory -
-See -function::kernel_short(3stap) - -
 for details. - -
kernel_char - -
-Retrieves a char value stored in kernel memory -
-See -function::kernel_char(3stap) - -
 for details. - -
kernel_pointer - -
-Retrieves a pointer value stored in kernel memory -
-See -function::kernel_pointer(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::kernel_string(3stap), - -function::kernel_string2(3stap), - -function::kernel_string_n(3stap), - -function::kernel_string_utf32(3stap), - -function::kernel_string2_utf32(3stap), - -function::kernel_string_utf16(3stap), - -function::kernel_string2_utf16(3stap), - -function::kernel_long(3stap), - -function::kernel_int(3stap), - -function::kernel_short(3stap), - -function::kernel_char(3stap), - -function::kernel_pointer(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::ctime.3stap.html b/man/tapset::ctime.3stap.html deleted file mode 100644 index f6bcb26a..00000000 --- a/man/tapset::ctime.3stap.html +++ /dev/null @@ -1,54 +0,0 @@ - -Manpage of tapset::ctime - -

tapset::ctime

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::ctime - systemtap ctime tapset -
  -  -

DESCRIPTION

- -
-
-
-
ctime - -
-Convert seconds since epoch into human readable date/time string -
-See -function::ctime(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::ctime(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::dentry.3stap.html b/man/tapset::dentry.3stap.html deleted file mode 100644 index 7622f793..00000000 --- a/man/tapset::dentry.3stap.html +++ /dev/null @@ -1,41 +0,0 @@ - -Manpage of tapset::dentry - -

tapset::dentry

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::dentry - systemtap dentry tapset -
  -  -

DESCRIPTION

- -
-
-
-  -

SEE ALSO

- -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::dev.3stap.html b/man/tapset::dev.3stap.html deleted file mode 100644 index 28c73415..00000000 --- a/man/tapset::dev.3stap.html +++ /dev/null @@ -1,90 +0,0 @@ - -Manpage of tapset::dev - -

tapset::dev

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::dev - systemtap dev tapset -
  -  -

DESCRIPTION

- -
-
-
-
MAJOR - -
-Extract major device number from a kernel device number (kdev_t) -
-See -function::MAJOR(3stap) - -
 for details. - -
MINOR - -
-Extract minor device number from a kernel device number (kdev_t) -
-See -function::MINOR(3stap) - -
 for details. - -
MKDEF - -
-Creates a value that can be compared to a kernel device number (kdev_t) -
-See -function::MKDEF(3stap) - -
 for details. - -
usrdev2kerndev - -
-Converts a user-space device number into the format used in the kernel -
-See -function::usrdev2kerndev(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::MAJOR(3stap), - -function::MINOR(3stap), - -function::MKDEF(3stap), - -function::usrdev2kerndev(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::errno.3stap.html b/man/tapset::errno.3stap.html deleted file mode 100644 index f4b67891..00000000 --- a/man/tapset::errno.3stap.html +++ /dev/null @@ -1,90 +0,0 @@ - -Manpage of tapset::errno - -

tapset::errno

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::errno - systemtap errno tapset -
  -  -

DESCRIPTION

- -
-
-
-
errno_str - -
-Symbolic string associated with error code -
-See -function::errno_str(3stap) - -
 for details. - -
returnval - -
-Possible return value of probed function -
-See -function::returnval(3stap) - -
 for details. - -
returnstr - -
-Formats the return value as a string -
-See -function::returnstr(3stap) - -
 for details. - -
return_str - -
-Formats the return value as a string -
-See -function::return_str(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::errno_str(3stap), - -function::returnval(3stap), - -function::returnstr(3stap), - -function::return_str(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::guru-delay.3stap.html b/man/tapset::guru-delay.3stap.html deleted file mode 100644 index 80671417..00000000 --- a/man/tapset::guru-delay.3stap.html +++ /dev/null @@ -1,72 +0,0 @@ - -Manpage of tapset::guru-delay - -

tapset::guru-delay

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::guru-delay - systemtap guru-delay tapset -
  -  -

DESCRIPTION

- -

-
 Functions in the guru-delay tapset allow a probe handler to insert -
 deliberate delays.  This is sometimes useful as a fault-injection -
 aid.  Due to its likelihood of interference with the kernel, guru -
 mode is required, and overload-prevention is suppressed. -

-

-
-
-
mdelay - -
-millisecond delay -
-See -function::mdelay(3stap) - -
 for details. - -
udelay - -
-microsecond delay -
-See -function::udelay(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::mdelay(3stap), - -function::udelay(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::indent.3stap.html b/man/tapset::indent.3stap.html deleted file mode 100644 index 5e83f726..00000000 --- a/man/tapset::indent.3stap.html +++ /dev/null @@ -1,66 +0,0 @@ - -Manpage of tapset::indent - -

tapset::indent

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::indent - systemtap indent tapset -
  -  -

DESCRIPTION

- -
-
-
-
thread_indent - -
-returns an amount of space with the current task information -
-See -function::thread_indent(3stap) - -
 for details. - -
indent - -
-returns an amount of space to indent -
-See -function::indent(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::thread_indent(3stap), - -function::indent(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::inet.3stap.html b/man/tapset::inet.3stap.html deleted file mode 100644 index 0a0afd1e..00000000 --- a/man/tapset::inet.3stap.html +++ /dev/null @@ -1,114 +0,0 @@ - -Manpage of tapset::inet - -

tapset::inet

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::inet - systemtap inet tapset -
  -  -

DESCRIPTION

- -
-
-
-
htonll - -
-Convert 64-bit long long from host to network order -
-See -function::htonll(3stap) - -
 for details. - -
htonl - -
-Convert 32-bit long from host to network order -
-See -function::htonl(3stap) - -
 for details. - -
htons - -
-Convert 16-bit short from host to network order -
-See -function::htons(3stap) - -
 for details. - -
ntohll - -
-Convert 64-bit long long from network to host order -
-See -function::ntohll(3stap) - -
 for details. - -
ntohl - -
-Convert 32-bit long from network to host order -
-See -function::ntohl(3stap) - -
 for details. - -
ntohs - -
-Convert 16-bit short from network to host order -
-See -function::ntohs(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::htonll(3stap), - -function::htonl(3stap), - -function::htons(3stap), - -function::ntohll(3stap), - -function::ntohl(3stap), - -function::ntohs(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::inet_sock.3stap.html b/man/tapset::inet_sock.3stap.html deleted file mode 100644 index ff7be79e..00000000 --- a/man/tapset::inet_sock.3stap.html +++ /dev/null @@ -1,66 +0,0 @@ - -Manpage of tapset::inet_sock - -

tapset::inet_sock

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::inet_sock - systemtap inet_sock tapset -
  -  -

DESCRIPTION

- -
-
-
-
inet_get_local_port - -
-Provide local port number for a kernel socket -
-See -function::inet_get_local_port(3stap) - -
 for details. - -
inet_get_ip_source - -
-Provide IP source address string for a kernel socket -
-See -function::inet_get_ip_source(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::inet_get_local_port(3stap), - -function::inet_get_ip_source(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::ioblock.3stap.html b/man/tapset::ioblock.3stap.html deleted file mode 100644 index 14ae0e0b..00000000 --- a/man/tapset::ioblock.3stap.html +++ /dev/null @@ -1,102 +0,0 @@ - -Manpage of tapset::ioblock - -

tapset::ioblock

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::ioblock - systemtap ioblock tapset -
  -  -

DESCRIPTION

- -
-
-
-
ioblock.request - -
-Fires whenever making a generic block I/O request. -
-
 See  -probe::ioblock.request(3stap) - -
 for details. - -
ioblock.end - -
-Fires whenever a block I/O transfer is complete. -
-
 See  -probe::ioblock.end(3stap) - -
 for details. - -
ioblock_trace.bounce - -
-Fires whenever a buffer bounce is needed for at least one page of a block IO request. -
-
 See  -probe::ioblock_trace.bounce(3stap) - -
 for details. - -
ioblock_trace.request - -
-Fires just as a generic block I/O request is created for a bio. -
-
 See  -probe::ioblock_trace.request(3stap) - -
 for details. - -
ioblock_trace.end - -
-Fires whenever a block I/O transfer is complete. -
-
 See  -probe::ioblock_trace.end(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -probe::ioblock.request(3stap), - -probe::ioblock.end(3stap), - -probe::ioblock_trace.bounce(3stap), - -probe::ioblock_trace.request(3stap), - -probe::ioblock_trace.end(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::ioscheduler.3stap.html b/man/tapset::ioscheduler.3stap.html deleted file mode 100644 index 4107d995..00000000 --- a/man/tapset::ioscheduler.3stap.html +++ /dev/null @@ -1,201 +0,0 @@ - -Manpage of tapset::ioscheduler - -

tapset::ioscheduler

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::ioscheduler - systemtap ioscheduler tapset -
  -  -

DESCRIPTION

- -

-
 This family of probe points is used to probe IO scheduler activities.  -

-

-
-
-
ioscheduler.elv_next_request - -
-Fires when a request is retrieved from the request queue -
-
 See  -probe::ioscheduler.elv_next_request(3stap) - -
 for details. - -
ioscheduler.elv_next_request.return - -
-Fires when a request retrieval issues a return signal -
-
 See  -probe::ioscheduler.elv_next_request.return(3stap) - -
 for details. - -
ioscheduler.elv_completed_request - -
-Fires when a request is completed -
-
 See  -probe::ioscheduler.elv_completed_request(3stap) - -
 for details. - -
ioscheduler.elv_add_request.kp - -
-kprobe based probe to indicate that a request was added to the request queue -
-
 See  -probe::ioscheduler.elv_add_request.kp(3stap) - -
 for details. - -
ioscheduler.elv_add_request.tp - -
-tracepoint based probe to indicate a request is added to the request queue. -
-
 See  -probe::ioscheduler.elv_add_request.tp(3stap) - -
 for details. - -
ioscheduler.elv_add_request - -
-probe to indicate request is added to the request queue. -
-
 See  -probe::ioscheduler.elv_add_request(3stap) - -
 for details. - -
ioscheduler_trace.elv_completed_request - -
-Fires when a request is -
-
 See  -probe::ioscheduler_trace.elv_completed_request(3stap) - -
 for details. - -
ioscheduler_trace.elv_issue_request - -
-Fires when a request is -
-
 See  -probe::ioscheduler_trace.elv_issue_request(3stap) - -
 for details. - -
ioscheduler_trace.elv_requeue_request - -
-Fires when a request is -
-
 See  -probe::ioscheduler_trace.elv_requeue_request(3stap) - -
 for details. - -
ioscheduler_trace.elv_abort_request - -
-Fires when a request is aborted. -
-
 See  -probe::ioscheduler_trace.elv_abort_request(3stap) - -
 for details. - -
ioscheduler_trace.plug - -
-Fires when a request queue is plugged; -
-
 See  -probe::ioscheduler_trace.plug(3stap) - -
 for details. - -
ioscheduler_trace.unplug_io - -
-Fires when a request queue is unplugged; -
-
 See  -probe::ioscheduler_trace.unplug_io(3stap) - -
 for details. - -
ioscheduler_trace.unplug_timer - -
-Fires when unplug timer associated -
-
 See  -probe::ioscheduler_trace.unplug_timer(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -probe::ioscheduler.elv_next_request(3stap), - -probe::ioscheduler.elv_next_request.return(3stap), - -probe::ioscheduler.elv_completed_request(3stap), - -probe::ioscheduler.elv_add_request.kp(3stap), - -probe::ioscheduler.elv_add_request.tp(3stap), - -probe::ioscheduler.elv_add_request(3stap), - -probe::ioscheduler_trace.elv_completed_request(3stap), - -probe::ioscheduler_trace.elv_issue_request(3stap), - -probe::ioscheduler_trace.elv_requeue_request(3stap), - -probe::ioscheduler_trace.elv_abort_request(3stap), - -probe::ioscheduler_trace.plug(3stap), - -probe::ioscheduler_trace.unplug_io(3stap), - -probe::ioscheduler_trace.unplug_timer(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::ip.3stap.html b/man/tapset::ip.3stap.html deleted file mode 100644 index 4dc2ee76..00000000 --- a/man/tapset::ip.3stap.html +++ /dev/null @@ -1,66 +0,0 @@ - -Manpage of tapset::ip - -

tapset::ip

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::ip - systemtap ip tapset -
  -  -

DESCRIPTION

- -
-
-
-
format_ipaddr - -
-Returns a string representation for an IP address -
-See -function::format_ipaddr(3stap) - -
 for details. - -
ip_ntop - -
-Returns a string representation for an IPv4 address -
-See -function::ip_ntop(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::format_ipaddr(3stap), - -function::ip_ntop(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::ipmib-filter-default.3stap.html b/man/tapset::ipmib-filter-default.3stap.html deleted file mode 100644 index 58a44b67..00000000 --- a/man/tapset::ipmib-filter-default.3stap.html +++ /dev/null @@ -1,54 +0,0 @@ - -Manpage of tapset::ipmib-filter-default - -

tapset::ipmib-filter-default

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::ipmib-filter-default - systemtap ipmib-filter-default tapset -
  -  -

DESCRIPTION

- -
-
-
-
ipmib_filter_key - -
-Default filter function for ipmib.* probes -
-See -function::ipmib_filter_key(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::ipmib_filter_key(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::ipmib.3stap.html b/man/tapset::ipmib.3stap.html deleted file mode 100644 index 197d9a90..00000000 --- a/man/tapset::ipmib.3stap.html +++ /dev/null @@ -1,234 +0,0 @@ - -Manpage of tapset::ipmib - -

tapset::ipmib

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::ipmib - systemtap ipmib tapset -
  -  -

DESCRIPTION

- -
-
-
-
ipmib_remote_addr - -
-Get the remote ip address -
-See -function::ipmib_remote_addr(3stap) - -
 for details. - -
ipmib_local_addr - -
-Get the local ip address -
-See -function::ipmib_local_addr(3stap) - -
 for details. - -
ipmib_tcp_remote_port - -
-Get the remote tcp port -
-See -function::ipmib_tcp_remote_port(3stap) - -
 for details. - -
ipmib_tcp_local_port - -
-Get the local tcp port -
-See -function::ipmib_tcp_local_port(3stap) - -
 for details. - -
ipmib_get_proto - -
-Get the protocol value -
-See -function::ipmib_get_proto(3stap) - -
 for details. - -
ipmib.InReceives - -
-Count an arriving packet -
-
 See  -probe::ipmib.InReceives(3stap) - -
 for details. - -
ipmib.InNoRoutes - -
-Count an arriving packet with no matching socket -
-
 See  -probe::ipmib.InNoRoutes(3stap) - -
 for details. - -
ipmib.InAddrErrors - -
-Count arriving packets with an incorrect address -
-
 See  -probe::ipmib.InAddrErrors(3stap) - -
 for details. - -
ipmib.InUnknownProtos - -
-Count arriving packets with an unbound proto -
-
 See  -probe::ipmib.InUnknownProtos(3stap) - -
 for details. - -
ipmib.InDiscards - -
-Count discarded inbound packets -
-
 See  -probe::ipmib.InDiscards(3stap) - -
 for details. - -
ipmib.ForwDatagrams - -
-Count forwarded packet -
-
 See  -probe::ipmib.ForwDatagrams(3stap) - -
 for details. - -
ipmib.OutRequests - -
-Count a request to send a packet -
-
 See  -probe::ipmib.OutRequests(3stap) - -
 for details. - -
ipmib.ReasmTimeout - -
-Count Reassembly Timeouts -
-
 See  -probe::ipmib.ReasmTimeout(3stap) - -
 for details. - -
ipmib.ReasmReqds - -
-Count number of packet fragments reassembly requests -
-
 See  -probe::ipmib.ReasmReqds(3stap) - -
 for details. - -
ipmib.FragOKs - -
-Count datagram fragmented successfully -
-
 See  -probe::ipmib.FragOKs(3stap) - -
 for details. - -
ipmib.FragFails - -
-Count datagram fragmented unsuccessfully -
-
 See  -probe::ipmib.FragFails(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::ipmib_remote_addr(3stap), - -function::ipmib_local_addr(3stap), - -function::ipmib_tcp_remote_port(3stap), - -function::ipmib_tcp_local_port(3stap), - -function::ipmib_get_proto(3stap), - -probe::ipmib.InReceives(3stap), - -probe::ipmib.InNoRoutes(3stap), - -probe::ipmib.InAddrErrors(3stap), - -probe::ipmib.InUnknownProtos(3stap), - -probe::ipmib.InDiscards(3stap), - -probe::ipmib.ForwDatagrams(3stap), - -probe::ipmib.OutRequests(3stap), - -probe::ipmib.ReasmTimeout(3stap), - -probe::ipmib.ReasmReqds(3stap), - -probe::ipmib.FragOKs(3stap), - -probe::ipmib.FragFails(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::irq.3stap.html b/man/tapset::irq.3stap.html deleted file mode 100644 index b7448381..00000000 --- a/man/tapset::irq.3stap.html +++ /dev/null @@ -1,138 +0,0 @@ - -Manpage of tapset::irq - -

tapset::irq

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::irq - systemtap irq tapset -
  -  -

DESCRIPTION

- -
-
-
-
workqueue.create - -
-Creating a new workqueue -
-
 See  -probe::workqueue.create(3stap) - -
 for details. - -
workqueue.insert - -
-Queuing work on a workqueue -
-
 See  -probe::workqueue.insert(3stap) - -
 for details. - -
workqueue.execute - -
-Executing deferred work -
-
 See  -probe::workqueue.execute(3stap) - -
 for details. - -
workqueue.destroy - -
-Destroying workqueue -
-
 See  -probe::workqueue.destroy(3stap) - -
 for details. - -
irq_handler.entry - -
-Execution of interrupt handler starting -
-
 See  -probe::irq_handler.entry(3stap) - -
 for details. - -
irq_handler.exit - -
-Execution of interrupt handler completed -
-
 See  -probe::irq_handler.exit(3stap) - -
 for details. - -
softirq.entry - -
-Execution of handler for a pending softirq starting -
-
 See  -probe::softirq.entry(3stap) - -
 for details. - -
softirq.exit - -
-Execution of handler for a pending softirq completed -
-
 See  -probe::softirq.exit(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -probe::workqueue.create(3stap), - -probe::workqueue.insert(3stap), - -probe::workqueue.execute(3stap), - -probe::workqueue.destroy(3stap), - -probe::irq_handler.entry(3stap), - -probe::irq_handler.exit(3stap), - -probe::softirq.entry(3stap), - -probe::softirq.exit(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::kprocess.3stap.html b/man/tapset::kprocess.3stap.html deleted file mode 100644 index a2616c93..00000000 --- a/man/tapset::kprocess.3stap.html +++ /dev/null @@ -1,117 +0,0 @@ - -Manpage of tapset::kprocess - -

tapset::kprocess

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::kprocess - systemtap kprocess tapset -
  -  -

DESCRIPTION

- -

-
  This family of probe points is used to probe process-related activities. -

-

-
-
-
kprocess.create - -
-Fires whenever a new process or thread is successfully created -
-
 See  -probe::kprocess.create(3stap) - -
 for details. - -
kprocess.start - -
-Starting new process -
-
 See  -probe::kprocess.start(3stap) - -
 for details. - -
kprocess.exec - -
-Attempt to exec to a new program -
-
 See  -probe::kprocess.exec(3stap) - -
 for details. - -
kprocess.exec_complete - -
-Return from exec to a new program -
-
 See  -probe::kprocess.exec_complete(3stap) - -
 for details. - -
kprocess.exit - -
-Exit from process -
-
 See  -probe::kprocess.exit(3stap) - -
 for details. - -
kprocess.release - -
-Process released -
-
 See  -probe::kprocess.release(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -probe::kprocess.create(3stap), - -probe::kprocess.start(3stap), - -probe::kprocess.exec(3stap), - -probe::kprocess.exec_complete(3stap), - -probe::kprocess.exit(3stap), - -probe::kprocess.release(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::linuxmib-filter-default.3stap.html b/man/tapset::linuxmib-filter-default.3stap.html deleted file mode 100644 index f7d30c70..00000000 --- a/man/tapset::linuxmib-filter-default.3stap.html +++ /dev/null @@ -1,54 +0,0 @@ - -Manpage of tapset::linuxmib-filter-default - -

tapset::linuxmib-filter-default

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::linuxmib-filter-default - systemtap linuxmib-filter-default tapset -
  -  -

DESCRIPTION

- -
-
-
-
linuxmib_filter_key - -
-Default filter function for linuxmib.* probes -
-See -function::linuxmib_filter_key(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::linuxmib_filter_key(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::linuxmib.3stap.html b/man/tapset::linuxmib.3stap.html deleted file mode 100644 index a463dee7..00000000 --- a/man/tapset::linuxmib.3stap.html +++ /dev/null @@ -1,90 +0,0 @@ - -Manpage of tapset::linuxmib - -

tapset::linuxmib

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::linuxmib - systemtap linuxmib tapset -
  -  -

DESCRIPTION

- -
-
-
-
linuxmib.DelayedACKs - -
-Count of delayed acks -
-
 See  -probe::linuxmib.DelayedACKs(3stap) - -
 for details. - -
linuxmib.ListenOverflows - -
-Count of times a listen queue overflowed -
-
 See  -probe::linuxmib.ListenOverflows(3stap) - -
 for details. - -
linuxmib.ListenDrops - -
-Count of times conn request that were dropped -
-
 See  -probe::linuxmib.ListenDrops(3stap) - -
 for details. - -
linuxmib.TCPMemoryPressures - -
-Count of times memory pressure was used -
-
 See  -probe::linuxmib.TCPMemoryPressures(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -probe::linuxmib.DelayedACKs(3stap), - -probe::linuxmib.ListenOverflows(3stap), - -probe::linuxmib.ListenDrops(3stap), - -probe::linuxmib.TCPMemoryPressures(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::logging.3stap.html b/man/tapset::logging.3stap.html deleted file mode 100644 index 7d6730cc..00000000 --- a/man/tapset::logging.3stap.html +++ /dev/null @@ -1,114 +0,0 @@ - -Manpage of tapset::logging - -

tapset::logging

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::logging - systemtap logging tapset -
  -  -

DESCRIPTION

- -
-
-
-
log - -
-Send a line to the common trace buffer -
-See -function::log(3stap) - -
 for details. - -
warn - -
-Send a line to the warning stream -
-See -function::warn(3stap) - -
 for details. - -
exit - -
-Start shutting down probing script. -
-See -function::exit(3stap) - -
 for details. - -
error - -
-Send an error message -
-See -function::error(3stap) - -
 for details. - -
ftrace - -
-Send a message to the ftrace ring-buffer -
-See -function::ftrace(3stap) - -
 for details. - -
printk - -
-Send a message to the kernel trace buffer -
-See -function::printk(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::log(3stap), - -function::warn(3stap), - -function::exit(3stap), - -function::error(3stap), - -function::ftrace(3stap), - -function::printk(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::memory.3stap.html b/man/tapset::memory.3stap.html deleted file mode 100644 index af358900..00000000 --- a/man/tapset::memory.3stap.html +++ /dev/null @@ -1,237 +0,0 @@ - -Manpage of tapset::memory - -

tapset::memory

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::memory - systemtap memory tapset -
  -  -

DESCRIPTION

- -

-
 This family of probe points is used to probe memory-related events.  -

-

-
-
-
vm_fault_contains - -
-Test return value for page fault reason -
-See -function::vm_fault_contains(3stap) - -
 for details. - -
vm.pagefault - -
-Records that a page fault occurred -
-
 See  -probe::vm.pagefault(3stap) - -
 for details. - -
vm.pagefault.return - -
-Indicates what type of fault occurred -
-
 See  -probe::vm.pagefault.return(3stap) - -
 for details. - -
addr_to_node - -
-Returns which node a given address belongs to within a NUMA system -
-See -function::addr_to_node(3stap) - -
 for details. - -
vm.write_shared - -
-Attempts at writing to a shared page -
-
 See  -probe::vm.write_shared(3stap) - -
 for details. - -
vm.write_shared_copy - -
-Page copy for shared page write -
-
 See  -probe::vm.write_shared_copy(3stap) - -
 for details. - -
vm.mmap - -
-Fires when an mmap is requested -
-
 See  -probe::vm.mmap(3stap) - -
 for details. - -
vm.munmap - -
-Fires when an munmap is requested -
-
 See  -probe::vm.munmap(3stap) - -
 for details. - -
vm.brk - -
-Fires when a brk is requested (i.e. the heap will be resized) -
-
 See  -probe::vm.brk(3stap) - -
 for details. - -
vm.oom_kill - -
-Fires when a thread is selected for termination by the OOM killer -
-
 See  -probe::vm.oom_kill(3stap) - -
 for details. - -
vm.kmalloc - -
-Fires when kmalloc is requested -
-
 See  -probe::vm.kmalloc(3stap) - -
 for details. - -
vm.kmem_cache_alloc - -
-Fires when kmem_cache_alloc is requested -
-
 See  -probe::vm.kmem_cache_alloc(3stap) - -
 for details. - -
vm.kmalloc_node - -
-Fires when kmalloc_node is requested -
-
 See  -probe::vm.kmalloc_node(3stap) - -
 for details. - -
vm.kmem_cache_alloc_node - -
-Fires when kmem_cache_alloc_node is requested -
-
 See  -probe::vm.kmem_cache_alloc_node(3stap) - -
 for details. - -
vm.kfree - -
-Fires when kfree is requested -
-
 See  -probe::vm.kfree(3stap) - -
 for details. - -
vm.kmem_cache_free - -
-Fires when kmem_cache_free is requested -
-
 See  -probe::vm.kmem_cache_free(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::vm_fault_contains(3stap), - -function::addr_to_node(3stap), - -probe::vm.pagefault(3stap), - -probe::vm.pagefault.return(3stap), - -probe::vm.write_shared(3stap), - -probe::vm.write_shared_copy(3stap), - -probe::vm.mmap(3stap), - -probe::vm.munmap(3stap), - -probe::vm.brk(3stap), - -probe::vm.oom_kill(3stap), - -probe::vm.kmalloc(3stap), - -probe::vm.kmem_cache_alloc(3stap), - -probe::vm.kmalloc_node(3stap), - -probe::vm.kmem_cache_alloc_node(3stap), - -probe::vm.kfree(3stap), - -probe::vm.kmem_cache_free(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::netfilter.3stap.html b/man/tapset::netfilter.3stap.html deleted file mode 100644 index 53443b8a..00000000 --- a/man/tapset::netfilter.3stap.html +++ /dev/null @@ -1,148 +0,0 @@ - -Manpage of tapset::netfilter - -

tapset::netfilter

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::netfilter - systemtap netfilter tapset -
  -  -

DESCRIPTION

- -
-
-
-
netfilter.ip.pre_routing - -
-Called before an IP packet is routed -
-
 See  -probe::netfilter.ip.pre_routing(3stap) - -
 for details. - -
netfilter.ip.local_in - -
-Called on an incoming IP packet addressed to the local computer -
-
 See  -probe::netfilter.ip.local_in(3stap) - -
 for details. - -
netfilter.ip.forward - -
-Called on an incoming IP packet addressed to some other computer -
-
 See  -probe::netfilter.ip.forward(3stap) - -
 for details. - -
netfilter.ip.local_out - -
-Called on an outgoing IP packet -
-
 See  -probe::netfilter.ip.local_out(3stap) - -
 for details. - -
netfilter.ip.post_routing - -
-Called immediately before an outgoing IP packet leaves the computer -
-
 See  -probe::netfilter.ip.post_routing(3stap) - -
 for details. - -
netfilter.bridge.local_in - -
-Called on a bridging packet destined for the local computer -
-
 See  -probe::netfilter.bridge.local_in(3stap) - -
 for details. - -
netfilter.bridge.forward - -
-Called on an incoming bridging packet destined for some other computer -
-
 See  -probe::netfilter.bridge.forward(3stap) - -
 for details. - -
netfilter.bridge.local_out - -
-Called on a bridging packet coming from a local process -
-
 See  -probe::netfilter.bridge.local_out(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -probe::netfilter.ip.pre_routing(3stap), - -probe::netfilter.ip.local_in(3stap), - -probe::netfilter.ip.forward(3stap), - -probe::netfilter.ip.local_out(3stap), - -probe::netfilter.ip.post_routing(3stap), - -probe::netfilter.arp.in(3stap), - -probe::netfilter.arp.out(3stap), - -probe::netfilter.arp.forward(3stap), - -probe::netfilter.bridge.pre_routing(3stap), - -probe::netfilter.bridge.local_in(3stap), - -probe::netfilter.bridge.forward(3stap), - -probe::netfilter.bridge.local_out(3stap), - -probe::netfilter.bridge.post_routing(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::networking.3stap.html b/man/tapset::networking.3stap.html deleted file mode 100644 index 55d5604b..00000000 --- a/man/tapset::networking.3stap.html +++ /dev/null @@ -1,213 +0,0 @@ - -Manpage of tapset::networking - -

tapset::networking

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::networking - systemtap networking tapset -
  -  -

DESCRIPTION

- -

-
 This family of probe points is used to probe the activities of the network device.  -

-

-
-
-
netdev.receive - -
-Data received from network device. -
-
 See  -probe::netdev.receive(3stap) - -
 for details. - -
netdev.transmit - -
-Network device transmitting buffer -
-
 See  -probe::netdev.transmit(3stap) - -
 for details. - -
netdev.change_mtu - -
-Called when the netdev MTU is changed -
-
 See  -probe::netdev.change_mtu(3stap) - -
 for details. - -
netdev.open - -
-Called when the device is opened -
-
 See  -probe::netdev.open(3stap) - -
 for details. - -
netdev.close - -
-Called when the device is closed -
-
 See  -probe::netdev.close(3stap) - -
 for details. - -
netdev.hard_transmit - -
-Called when the devices is going to TX (hard) -
-
 See  -probe::netdev.hard_transmit(3stap) - -
 for details. - -
netdev.rx - -
-Called when the device is going to receive a packet -
-
 See  -probe::netdev.rx(3stap) - -
 for details. - -
netdev.change_rx_flag - -
-Called when the device RX flag will be changed -
-
 See  -probe::netdev.change_rx_flag(3stap) - -
 for details. - -
netdev.set_promiscuity - -
-Called when the device enters/leaves promiscuity -
-
 See  -probe::netdev.set_promiscuity(3stap) - -
 for details. - -
netdev.ioctl - -
-Called when the device suffers an IOCTL -
-
 See  -probe::netdev.ioctl(3stap) - -
 for details. - -
netdev.register - -
-Called when the device is registered -
-
 See  -probe::netdev.register(3stap) - -
 for details. - -
netdev.unregister - -
-Called when the device is being unregistered -
-
 See  -probe::netdev.unregister(3stap) - -
 for details. - -
netdev.get_stats - -
-Called when someone asks the device statistics -
-
 See  -probe::netdev.get_stats(3stap) - -
 for details. - -
netdev.change_mac - -
-Called when the netdev_name has the MAC changed -
-
 See  -probe::netdev.change_mac(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -probe::netdev.receive(3stap), - -probe::netdev.transmit(3stap), - -probe::netdev.change_mtu(3stap), - -probe::netdev.open(3stap), - -probe::netdev.close(3stap), - -probe::netdev.hard_transmit(3stap), - -probe::netdev.rx(3stap), - -probe::netdev.change_rx_flag(3stap), - -probe::netdev.set_promiscuity(3stap), - -probe::netdev.ioctl(3stap), - -probe::netdev.register(3stap), - -probe::netdev.unregister(3stap), - -probe::netdev.get_stats(3stap), - -probe::netdev.change_mac(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::nfs.3stap.html b/man/tapset::nfs.3stap.html deleted file mode 100644 index 8d5a8e28..00000000 --- a/man/tapset::nfs.3stap.html +++ /dev/null @@ -1,294 +0,0 @@ - -Manpage of tapset::nfs - -

tapset::nfs

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::nfs - systemtap nfs tapset -
  -  -

DESCRIPTION

- -
-
-
-
nfs.fop.llseek - -
-NFS client llseek operation -
-
 See  -probe::nfs.fop.llseek(3stap) - -
 for details. - -
nfs.fop.read - -
-NFS client read operation -
-
 See  -probe::nfs.fop.read(3stap) - -
 for details. - -
nfs.fop.write - -
-NFS client write operation -
-
 See  -probe::nfs.fop.write(3stap) - -
 for details. - -
nfs.fop.aio_read - -
-NFS client aio_read file operation -
-
 See  -probe::nfs.fop.aio_read(3stap) - -
 for details. - -
nfs.fop.aio_write - -
-NFS client aio_write file operation -
-
 See  -probe::nfs.fop.aio_write(3stap) - -
 for details. - -
nfs.fop.mmap - -
-NFS client mmap operation -
-
 See  -probe::nfs.fop.mmap(3stap) - -
 for details. - -
nfs.fop.open - -
-NFS client file open operation -
-
 See  -probe::nfs.fop.open(3stap) - -
 for details. - -
nfs.fop.flush - -
-NFS client flush file operation -
-
 See  -probe::nfs.fop.flush(3stap) - -
 for details. - -
nfs.fop.release - -
-NFS client release page operation -
-
 See  -probe::nfs.fop.release(3stap) - -
 for details. - -
nfs.fop.fsync - -
-NFS client fsync operation -
-
 See  -probe::nfs.fop.fsync(3stap) - -
 for details. - -
nfs.fop.lock - -
-NFS client file lock operation -
-
 See  -probe::nfs.fop.lock(3stap) - -
 for details. - -
nfs.fop.sendfile - -
-NFS client send file operation -
-
 See  -probe::nfs.fop.sendfile(3stap) - -
 for details. - -
nfs.fop.check_flags - -
-NFS client checking flag operation -
-
 See  -probe::nfs.fop.check_flags(3stap) - -
 for details. - -
nfs.aop.readpage - -
-NFS client synchronously reading a page -
-
 See  -probe::nfs.aop.readpage(3stap) - -
 for details. - -
nfs.aop.readpages - -
-NFS client reading multiple pages -
-
 See  -probe::nfs.aop.readpages(3stap) - -
 for details. - -
nfs.aop.set_page_dirty - -
-NFS client marking page as dirty -
-
 See  -probe::nfs.aop.set_page_dirty(3stap) - -
 for details. - -
nfs.aop.writepage - -
-NFS client writing a mapped page to the NFS server -
-
 See  -probe::nfs.aop.writepage(3stap) - -
 for details. - -
nfs.aop.writepages - -
-NFS client writing several dirty pages to the NFS server -
-
 See  -probe::nfs.aop.writepages(3stap) - -
 for details. - -
nfs.aop.write_begin - -
-NFS client begin to write data -
-
 See  -probe::nfs.aop.write_begin(3stap) - -
 for details. - -
nfs.aop.write_end - -
-NFS client complete writing data -
-
 See  -probe::nfs.aop.write_end(3stap) - -
 for details. - -
nfs.aop.release_page - -
-NFS client releasing page -
-
 See  -probe::nfs.aop.release_page(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -probe::nfs.fop.llseek(3stap), - -probe::nfs.fop.read(3stap), - -probe::nfs.fop.write(3stap), - -probe::nfs.fop.aio_read(3stap), - -probe::nfs.fop.aio_write(3stap), - -probe::nfs.fop.mmap(3stap), - -probe::nfs.fop.open(3stap), - -probe::nfs.fop.flush(3stap), - -probe::nfs.fop.release(3stap), - -probe::nfs.fop.fsync(3stap), - -probe::nfs.fop.lock(3stap), - -probe::nfs.fop.sendfile(3stap), - -probe::nfs.fop.check_flags(3stap), - -probe::nfs.aop.readpage(3stap), - -probe::nfs.aop.readpages(3stap), - -probe::nfs.aop.set_page_dirty(3stap), - -probe::nfs.aop.writepage(3stap), - -probe::nfs.aop.writepages(3stap), - -probe::nfs.aop.write_begin(3stap), - -probe::nfs.aop.write_end(3stap), - -probe::nfs.aop.release_page(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::nfs_proc.3stap.html b/man/tapset::nfs_proc.3stap.html deleted file mode 100644 index b877c679..00000000 --- a/man/tapset::nfs_proc.3stap.html +++ /dev/null @@ -1,234 +0,0 @@ - -Manpage of tapset::nfs_proc - -

tapset::nfs_proc

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::nfs_proc - systemtap nfs_proc tapset -
  -  -

DESCRIPTION

- -
-
-
-
nfs.proc.lookup - -
-NFS client opens/searches a file on server -
-
 See  -probe::nfs.proc.lookup(3stap) - -
 for details. - -
nfs.proc.read - -
-NFS client synchronously reads file from server -
-
 See  -probe::nfs.proc.read(3stap) - -
 for details. - -
nfs.proc.write - -
-NFS client synchronously writes file to server -
-
 See  -probe::nfs.proc.write(3stap) - -
 for details. - -
nfs.proc.commit - -
-NFS client committing data on server -
-
 See  -probe::nfs.proc.commit(3stap) - -
 for details. - -
nfs.proc.read_setup - -
-NFS client setting up a read RPC task -
-
 See  -probe::nfs.proc.read_setup(3stap) - -
 for details. - -
nfs.proc.read_done - -
-NFS client response to a read RPC task -
-
 See  -probe::nfs.proc.read_done(3stap) - -
 for details. - -
nfs.proc.write_setup - -
-NFS client setting up a write RPC task -
-
 See  -probe::nfs.proc.write_setup(3stap) - -
 for details. - -
nfs.proc.write_done - -
-NFS client response to a write RPC task -
-
 See  -probe::nfs.proc.write_done(3stap) - -
 for details. - -
nfs.proc.commit_setup - -
-NFS client setting up a commit RPC task -
-
 See  -probe::nfs.proc.commit_setup(3stap) - -
 for details. - -
nfs.proc.commit_done - -
-NFS client response to a commit RPC task -
-
 See  -probe::nfs.proc.commit_done(3stap) - -
 for details. - -
nfs.proc.open - -
-NFS client allocates file read/write context information -
-
 See  -probe::nfs.proc.open(3stap) - -
 for details. - -
nfs.proc.release - -
-
 NFS client releases file read/write context information -
-
 See  -probe::nfs.proc.release(3stap) - -
 for details. - -
nfs.proc.handle_exception - -
-NFS client handling an NFSv4 exception -
-
 See  -probe::nfs.proc.handle_exception(3stap) - -
 for details. - -
nfs.proc.create - -
-NFS client creating file on server -
-
 See  -probe::nfs.proc.create(3stap) - -
 for details. - -
nfs.proc.remove - -
-NFS client removes a file on server -
-
 See  -probe::nfs.proc.remove(3stap) - -
 for details. - -
nfs.proc.rename - -
-NFS client renames a file on server -
-
 See  -probe::nfs.proc.rename(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -probe::nfs.proc.lookup(3stap), - -probe::nfs.proc.read(3stap), - -probe::nfs.proc.write(3stap), - -probe::nfs.proc.commit(3stap), - -probe::nfs.proc.read_setup(3stap), - -probe::nfs.proc.read_done(3stap), - -probe::nfs.proc.write_setup(3stap), - -probe::nfs.proc.write_done(3stap), - -probe::nfs.proc.commit_setup(3stap), - -probe::nfs.proc.commit_done(3stap), - -probe::nfs.proc.open(3stap), - -probe::nfs.proc.release(3stap), - -probe::nfs.proc.handle_exception(3stap), - -probe::nfs.proc.create(3stap), - -probe::nfs.proc.remove(3stap), - -probe::nfs.proc.rename(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::nfsd.3stap.html b/man/tapset::nfsd.3stap.html deleted file mode 100644 index a673678a..00000000 --- a/man/tapset::nfsd.3stap.html +++ /dev/null @@ -1,248 +0,0 @@ - -Manpage of tapset::nfsd - -

tapset::nfsd

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::nfsd - systemtap nfsd tapset -
  -  -

DESCRIPTION

- -
-
-
-
nfsd.dispatch - -
-NFS server receives an operation from client -
-
 See  -probe::nfsd.dispatch(3stap) - -
 for details. - -
nfsd.proc.lookup - -
-NFS server opening or searching for a file for client -
-
 See  -probe::nfsd.proc.lookup(3stap) - -
 for details. - -
nfsd.proc.read - -
-NFS server reading file for client -
-
 See  -probe::nfsd.proc.read(3stap) - -
 for details. - -
nfsd.proc.write - -
-NFS server writing data to file for client -
-
 See  -probe::nfsd.proc.write(3stap) - -
 for details. - -
nfsd.proc.commit - -
-NFS server performing a commit operation for client -
-
 See  -probe::nfsd.proc.commit(3stap) - -
 for details. - -
nfsd.proc.create - -
-NFS server creating a file for client -
-
 See  -probe::nfsd.proc.create(3stap) - -
 for details. - -
nfsd.proc.remove - -
-NFS server removing a file for client -
-
 See  -probe::nfsd.proc.remove(3stap) - -
 for details. - -
nfsd.proc.rename - -
-NFS Server renaming a file for client -
-
 See  -probe::nfsd.proc.rename(3stap) - -
 for details. - -
nfsd.open - -
-NFS server opening a file for client -
-
 See  -probe::nfsd.open(3stap) - -
 for details. - -
nfsd.close - -
-NFS server closing a file for client -
-
 See  -probe::nfsd.close(3stap) - -
 for details. - -
nfsd.read - -
-NFS server reading data from a file for client -
-
 See  -probe::nfsd.read(3stap) - -
 for details. - -
nfsd.write - -
-NFS server writing data to a file for client -
-
 See  -probe::nfsd.write(3stap) - -
 for details. - -
nfsd.commit - -
-NFS server committing all pending writes to stable storage -
-
 See  -probe::nfsd.commit(3stap) - -
 for details. - -
nfsd.lookup - -
-NFS server opening or searching file for a file for client -
-
 See  -probe::nfsd.lookup(3stap) - -
 for details. - -
nfsd.create - -
-NFS server creating a file(regular,dir,device,fifo) for client -
-
 See  -probe::nfsd.create(3stap) - -
 for details. - -
nfsd.createv3 - -
-NFS server creating a regular file or set file attributes for client -
-
 See  -probe::nfsd.createv3(3stap) - -
 for details. - -
nfsd.unlink - -
-NFS server removing a file or a directory for client -
-
 See  -probe::nfsd.unlink(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -probe::nfsd.dispatch(3stap), - -probe::nfsd.proc.lookup(3stap), - -probe::nfsd.proc.read(3stap), - -probe::nfsd.proc.write(3stap), - -probe::nfsd.proc.commit(3stap), - -probe::nfsd.proc.create(3stap), - -probe::nfsd.proc.remove(3stap), - -probe::nfsd.proc.rename(3stap), - -probe::nfsd.open(3stap), - -probe::nfsd.close(3stap), - -probe::nfsd.read(3stap), - -probe::nfsd.write(3stap), - -probe::nfsd.commit(3stap), - -probe::nfsd.lookup(3stap), - -probe::nfsd.create(3stap), - -probe::nfsd.createv3(3stap), - -probe::nfsd.unlink(3stap), - -probe::nfsd.rename(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::nfsderrno.3stap.html b/man/tapset::nfsderrno.3stap.html deleted file mode 100644 index dac9b10a..00000000 --- a/man/tapset::nfsderrno.3stap.html +++ /dev/null @@ -1,54 +0,0 @@ - -Manpage of tapset::nfsderrno - -

tapset::nfsderrno

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::nfsderrno - systemtap nfsderrno tapset -
  -  -

DESCRIPTION

- -
-
-
-
nfsderror - -
-Convert nfsd error number into string -
-See -function::nfsderror(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::nfsderror(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::panic.3stap.html b/man/tapset::panic.3stap.html deleted file mode 100644 index 91b77a77..00000000 --- a/man/tapset::panic.3stap.html +++ /dev/null @@ -1,64 +0,0 @@ - -Manpage of tapset::panic - -

tapset::panic

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::panic - systemtap panic tapset -
  -  -

DESCRIPTION

- -

-
 Functions in the panic tapset allow a probe handler to invoke -
 the system panic routine with a user-specified message. -

-
 This may be used with a crash dump collection facility such as  -
 kexec/kdump in order to capture data for post-mortem debugging. -

-
 Due to the fact that this will bring the system to an immediate -
 halt the functions in this tapset require guru mode. -

-

-
-
-
panic - -
-trigger a panic -
-See -function::panic(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::panic(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::pn.3stap.html b/man/tapset::pn.3stap.html deleted file mode 100644 index 1c66330d..00000000 --- a/man/tapset::pn.3stap.html +++ /dev/null @@ -1,54 +0,0 @@ - -Manpage of tapset::pn - -

tapset::pn

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::pn - systemtap pn tapset -
  -  -

DESCRIPTION

- -
-
-
-
pn - -
-Returns the active probe name -
-See -function::pn(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::pn(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::proc_mem.3stap.html b/man/tapset::proc_mem.3stap.html deleted file mode 100644 index d80335d3..00000000 --- a/man/tapset::proc_mem.3stap.html +++ /dev/null @@ -1,230 +0,0 @@ - -Manpage of tapset::proc_mem - -

tapset::proc_mem

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::proc_mem - systemtap proc_mem tapset -
  -  -

DESCRIPTION

- -

-
 Process memory query and utility functions provide information about -
 the memory usage of the current application. These functions provide -
 information about the full size, resident, shared, code and data used -
 by the current process. And provide utility functions to query the -
 page size of the current architecture and create human readable string -
 representations of bytes and pages used. -

-

-
-
-
proc_mem_size - -
-Total program virtual memory size in pages -
-See -function::proc_mem_size(3stap) - -
 for details. - -
proc_mem_size_pid - -
-Total program virtual memory size in pages -
-See -function::proc_mem_size_pid(3stap) - -
 for details. - -
proc_mem_rss - -
-Program resident set size in pages -
-See -function::proc_mem_rss(3stap) - -
 for details. - -
proc_mem_rss_pid - -
-Program resident set size in pages -
-See -function::proc_mem_rss_pid(3stap) - -
 for details. - -
proc_mem_shr - -
-Program shared pages (from shared mappings) -
-See -function::proc_mem_shr(3stap) - -
 for details. - -
proc_mem_shr_pid - -
-Program shared pages (from shared mappings) -
-See -function::proc_mem_shr_pid(3stap) - -
 for details. - -
proc_mem_txt - -
-Program text (code) size in pages -
-See -function::proc_mem_txt(3stap) - -
 for details. - -
proc_mem_txt_pid - -
-Program text (code) size in pages -
-See -function::proc_mem_txt_pid(3stap) - -
 for details. - -
proc_mem_data - -
-Program data size (data + stack) in pages -
-See -function::proc_mem_data(3stap) - -
 for details. - -
proc_mem_data_pid - -
-Program data size (data + stack) in pages -
-See -function::proc_mem_data_pid(3stap) - -
 for details. - -
mem_page_size - -
-Number of bytes in a page for this architecture -
-See -function::mem_page_size(3stap) - -
 for details. - -
bytes_to_string - -
-Human readable string for given bytes -
-See -function::bytes_to_string(3stap) - -
 for details. - -
pages_to_string - -
-Turns pages into a human readable string -
-See -function::pages_to_string(3stap) - -
 for details. - -
proc_mem_string - -
-Human readable string of current proc memory usage -
-See -function::proc_mem_string(3stap) - -
 for details. - -
proc_mem_string_pid - -
-Human readable string of process memory usage -
-See -function::proc_mem_string_pid(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::proc_mem_size(3stap), - -function::proc_mem_size_pid(3stap), - -function::proc_mem_rss(3stap), - -function::proc_mem_rss_pid(3stap), - -function::proc_mem_shr(3stap), - -function::proc_mem_shr_pid(3stap), - -function::proc_mem_txt(3stap), - -function::proc_mem_txt_pid(3stap), - -function::proc_mem_data(3stap), - -function::proc_mem_data_pid(3stap), - -function::mem_page_size(3stap), - -function::bytes_to_string(3stap), - -function::pages_to_string(3stap), - -function::proc_mem_string(3stap), - -function::proc_mem_string_pid(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::pstrace.3stap.html b/man/tapset::pstrace.3stap.html deleted file mode 100644 index cbfbe178..00000000 --- a/man/tapset::pstrace.3stap.html +++ /dev/null @@ -1,54 +0,0 @@ - -Manpage of tapset::pstrace - -

tapset::pstrace

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::pstrace - systemtap pstrace tapset -
  -  -

DESCRIPTION

- -
-
-
-
pstrace - -
-Chain of processes and pids back to init(1) -
-See -function::pstrace(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::pstrace(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::queue_stats.3stap.html b/man/tapset::queue_stats.3stap.html deleted file mode 100644 index 47734f0f..00000000 --- a/man/tapset::queue_stats.3stap.html +++ /dev/null @@ -1,174 +0,0 @@ - -Manpage of tapset::queue_stats - -

tapset::queue_stats

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::queue_stats - systemtap queue_stats tapset -
  -  -

DESCRIPTION

- -
-
-
-
qs_wait - -
-Function to record enqueue requests -
-See -function::qs_wait(3stap) - -
 for details. - -
qs_run - -
-Function to record being moved from wait queue to being serviced -
-See -function::qs_run(3stap) - -
 for details. - -
qs_done - -
-Function to record finishing request -
-See -function::qs_done(3stap) - -
 for details. - -
qsq_start - -
-Function to reset the stats for a queue -
-See -function::qsq_start(3stap) - -
 for details. - -
qsq_utilization - -
-Fraction of time that any request was being serviced -
-See -function::qsq_utilization(3stap) - -
 for details. - -
qsq_blocked - -
-Returns the time reqest was on the wait queue -
-See -function::qsq_blocked(3stap) - -
 for details. - -
qsq_wait_queue_length - -
-length of wait queue -
-See -function::qsq_wait_queue_length(3stap) - -
 for details. - -
qsq_service_time - -
-Amount of time per request service -
-See -function::qsq_service_time(3stap) - -
 for details. - -
qsq_wait_time - -
-Amount of time in queue + service per request -
-See -function::qsq_wait_time(3stap) - -
 for details. - -
qsq_throughput - -
-Number of requests served per unit time -
-See -function::qsq_throughput(3stap) - -
 for details. - -
qsq_print - -
-Prints a line of statistics for the given queue -
-See -function::qsq_print(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::qs_wait(3stap), - -function::qs_run(3stap), - -function::qs_done(3stap), - -function::qsq_start(3stap), - -function::qsq_utilization(3stap), - -function::qsq_blocked(3stap), - -function::qsq_wait_queue_length(3stap), - -function::qsq_service_time(3stap), - -function::qsq_wait_time(3stap), - -function::qsq_throughput(3stap), - -function::qsq_print(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::random.3stap.html b/man/tapset::random.3stap.html deleted file mode 100644 index 8ef7b5e3..00000000 --- a/man/tapset::random.3stap.html +++ /dev/null @@ -1,54 +0,0 @@ - -Manpage of tapset::random - -

tapset::random

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::random - systemtap random tapset -
  -  -

DESCRIPTION

- -
-
-
-
randint - -
-Return a random number between [0,n) -
-See -function::randint(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::randint(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::registers.3stap.html b/man/tapset::registers.3stap.html deleted file mode 100644 index 56e66fe6..00000000 --- a/man/tapset::registers.3stap.html +++ /dev/null @@ -1,234 +0,0 @@ - -Manpage of tapset::registers - -

tapset::registers

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::registers - systemtap registers tapset -
  -  -

DESCRIPTION

- -
-
-
-
register - -
-Return the signed value of the named CPU register -
-See -function::register(3stap) - -
 for details. - -
u_register - -
-Return the unsigned value of the named CPU register -
-See -function::u_register(3stap) - -
 for details. - -
int_arg - -
-Return function argument as signed int -
-See -function::int_arg(3stap) - -
 for details. - -
uint_arg - -
-Return function argument as unsigned int -
-See -function::uint_arg(3stap) - -
 for details. - -
long_arg - -
-Return function argument as signed long -
-See -function::long_arg(3stap) - -
 for details. - -
ulong_arg - -
-Return function argument as unsigned long -
-See -function::ulong_arg(3stap) - -
 for details. - -
longlong_arg - -
-Return function argument as 64-bit value -
-See -function::longlong_arg(3stap) - -
 for details. - -
ulonglong_arg - -
-Return function argument as 64-bit value -
-See -function::ulonglong_arg(3stap) - -
 for details. - -
pointer_arg - -
-Return function argument as pointer value -
-See -function::pointer_arg(3stap) - -
 for details. - -
s32_arg - -
-Return function argument as signed 32-bit value -
-See -function::s32_arg(3stap) - -
 for details. - -
u32_arg - -
-Return function argument as unsigned 32-bit value -
-See -function::u32_arg(3stap) - -
 for details. - -
s64_arg - -
-Return function argument as signed 64-bit value -
-See -function::s64_arg(3stap) - -
 for details. - -
u64_arg - -
-Return function argument as unsigned 64-bit value -
-See -function::u64_arg(3stap) - -
 for details. - -
asmlinkage - -
-Mark function as declared asmlinkage -
-See -function::asmlinkage(3stap) - -
 for details. - -
fastcall - -
-Mark function as declared fastcall -
-See -function::fastcall(3stap) - -
 for details. - -
regparm - -
-Specify regparm value used to compile function -
-See -function::regparm(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::register(3stap), - -function::u_register(3stap), - -function::int_arg(3stap), - -function::uint_arg(3stap), - -function::long_arg(3stap), - -function::ulong_arg(3stap), - -function::longlong_arg(3stap), - -function::ulonglong_arg(3stap), - -function::pointer_arg(3stap), - -function::s32_arg(3stap), - -function::u32_arg(3stap), - -function::s64_arg(3stap), - -function::u64_arg(3stap), - -function::asmlinkage(3stap), - -function::fastcall(3stap), - -function::regparm(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::rpc.3stap.html b/man/tapset::rpc.3stap.html deleted file mode 100644 index a8bfef31..00000000 --- a/man/tapset::rpc.3stap.html +++ /dev/null @@ -1,270 +0,0 @@ - -Manpage of tapset::rpc - -

tapset::rpc

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::rpc - systemtap rpc tapset -
  -  -

DESCRIPTION

- -
-
-
-
sunrpc.clnt.create_client - -
-Create an RPC client -
-
 See  -probe::sunrpc.clnt.create_client(3stap) - -
 for details. - -
sunrpc.clnt.clone_client - -
-Clone an RPC client structure -
-
 See  -probe::sunrpc.clnt.clone_client(3stap) - -
 for details. - -
sunrpc.clnt.shutdown_client - -
-Shutdown an RPC client -
-
 See  -probe::sunrpc.clnt.shutdown_client(3stap) - -
 for details. - -
sunrpc.clnt.bind_new_program - -
-Bind a new RPC program to an existing client -
-
 See  -probe::sunrpc.clnt.bind_new_program(3stap) - -
 for details. - -
sunrpc.clnt.call_sync - -
-Make a synchronous RPC call -
-
 See  -probe::sunrpc.clnt.call_sync(3stap) - -
 for details. - -
sunrpc.clnt.call_async - -
-Make an asynchronous RPC call -
-
 See  -probe::sunrpc.clnt.call_async(3stap) - -
 for details. - -
sunrpc.clnt.restart_call - -
-Restart an asynchronous RPC call -
-
 See  -probe::sunrpc.clnt.restart_call(3stap) - -
 for details. - -
sunrpc.svc.register - -
-Register an RPC service with the local portmapper -
-
 See  -probe::sunrpc.svc.register(3stap) - -
 for details. - -
sunrpc.svc.create - -
-Create an RPC service -
-
 See  -probe::sunrpc.svc.create(3stap) - -
 for details. - -
sunrpc.svc.destroy - -
-Destroy an RPC service -
-
 See  -probe::sunrpc.svc.destroy(3stap) - -
 for details. - -
sunrpc.svc.process - -
-Process an RPC request -
-
 See  -probe::sunrpc.svc.process(3stap) - -
 for details. - -
sunrpc.svc.authorise - -
-An RPC request is to be authorised -
-
 See  -probe::sunrpc.svc.authorise(3stap) - -
 for details. - -
sunrpc.svc.recv - -
-Listen for the next RPC request on any socket -
-
 See  -probe::sunrpc.svc.recv(3stap) - -
 for details. - -
sunrpc.svc.send - -
-Return reply to RPC client -
-
 See  -probe::sunrpc.svc.send(3stap) - -
 for details. - -
sunrpc.svc.drop - -
-Drop RPC request -
-
 See  -probe::sunrpc.svc.drop(3stap) - -
 for details. - -
sunrpc.sched.new_task - -
-Create new task for the specified client -
-
 See  -probe::sunrpc.sched.new_task(3stap) - -
 for details. - -
sunrpc.sched.release_task - -
-Release all resources associated with a task -
-
 See  -probe::sunrpc.sched.release_task(3stap) - -
 for details. - -
sunrpc.sched.execute - -
-Execute the RPC `scheduler' -
-
 See  -probe::sunrpc.sched.execute(3stap) - -
 for details. - -
sunrpc.sched.delay - -
-Delay an RPC task -
-
 See  -probe::sunrpc.sched.delay(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -probe::sunrpc.clnt.create_client(3stap), - -probe::sunrpc.clnt.clone_client(3stap), - -probe::sunrpc.clnt.shutdown_client(3stap), - -probe::sunrpc.clnt.bind_new_program(3stap), - -probe::sunrpc.clnt.call_sync(3stap), - -probe::sunrpc.clnt.call_async(3stap), - -probe::sunrpc.clnt.restart_call(3stap), - -probe::sunrpc.svc.register(3stap), - -probe::sunrpc.svc.create(3stap), - -probe::sunrpc.svc.destroy(3stap), - -probe::sunrpc.svc.process(3stap), - -probe::sunrpc.svc.authorise(3stap), - -probe::sunrpc.svc.recv(3stap), - -probe::sunrpc.svc.send(3stap), - -probe::sunrpc.svc.drop(3stap), - -probe::sunrpc.sched.new_task(3stap), - -probe::sunrpc.sched.release_task(3stap), - -probe::sunrpc.sched.execute(3stap), - -probe::sunrpc.sched.delay(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::scheduler.3stap.html b/man/tapset::scheduler.3stap.html deleted file mode 100644 index a3b31936..00000000 --- a/man/tapset::scheduler.3stap.html +++ /dev/null @@ -1,234 +0,0 @@ - -Manpage of tapset::scheduler - -

tapset::scheduler

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::scheduler - systemtap scheduler tapset -
  -  -

DESCRIPTION

- -
-
-
-
scheduler.cpu_off - -
-Process is about to stop running on a cpu -
-
 See  -probe::scheduler.cpu_off(3stap) - -
 for details. - -
scheduler.cpu_on - -
-Process is beginning execution on a cpu -
-
 See  -probe::scheduler.cpu_on(3stap) - -
 for details. - -
scheduler.tick - -
-Schedulers internal tick, a processes timeslice accounting is updated -
-
 See  -probe::scheduler.tick(3stap) - -
 for details. - -
scheduler.balance - -
-A cpu attempting to find more work. -
-
 See  -probe::scheduler.balance(3stap) - -
 for details. - -
scheduler.ctxswitch - -
-A context switch is occuring. -
-
 See  -probe::scheduler.ctxswitch(3stap) - -
 for details. - -
scheduler.kthread_stop - -
-A thread created by kthread_create is being stopped -
-
 See  -probe::scheduler.kthread_stop(3stap) - -
 for details. - -
scheduler.kthread_stop.return - -
-A kthread is stopped and gets the return value -
-
 See  -probe::scheduler.kthread_stop.return(3stap) - -
 for details. - -
scheduler.wait_task - -
-Waiting on a task to unschedule (become inactive) -
-
 See  -probe::scheduler.wait_task(3stap) - -
 for details. - -
scheduler.wakeup - -
-Task is woken up -
-
 See  -probe::scheduler.wakeup(3stap) - -
 for details. - -
scheduler.wakeup_new - -
-Newly created task is woken up for the first time -
-
 See  -probe::scheduler.wakeup_new(3stap) - -
 for details. - -
scheduler.migrate - -
-Task migrating across cpus -
-
 See  -probe::scheduler.migrate(3stap) - -
 for details. - -
scheduler.process_free - -
-Scheduler freeing a data structure for a process -
-
 See  -probe::scheduler.process_free(3stap) - -
 for details. - -
scheduler.process_exit - -
-Process exiting -
-
 See  -probe::scheduler.process_exit(3stap) - -
 for details. - -
scheduler.process_wait - -
-Scheduler starting to wait on a process -
-
 See  -probe::scheduler.process_wait(3stap) - -
 for details. - -
scheduler.process_fork - -
-Process forked -
-
 See  -probe::scheduler.process_fork(3stap) - -
 for details. - -
scheduler.signal_send - -
-Sending a signal -
-
 See  -probe::scheduler.signal_send(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -probe::scheduler.cpu_off(3stap), - -probe::scheduler.cpu_on(3stap), - -probe::scheduler.tick(3stap), - -probe::scheduler.balance(3stap), - -probe::scheduler.ctxswitch(3stap), - -probe::scheduler.kthread_stop(3stap), - -probe::scheduler.kthread_stop.return(3stap), - -probe::scheduler.wait_task(3stap), - -probe::scheduler.wakeup(3stap), - -probe::scheduler.wakeup_new(3stap), - -probe::scheduler.migrate(3stap), - -probe::scheduler.process_free(3stap), - -probe::scheduler.process_exit(3stap), - -probe::scheduler.process_wait(3stap), - -probe::scheduler.process_fork(3stap), - -probe::scheduler.signal_send(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::scsi.3stap.html b/man/tapset::scsi.3stap.html deleted file mode 100644 index 02871ebd..00000000 --- a/man/tapset::scsi.3stap.html +++ /dev/null @@ -1,117 +0,0 @@ - -Manpage of tapset::scsi - -

tapset::scsi

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::scsi - systemtap scsi tapset -
  -  -

DESCRIPTION

- -

-
 This family of probe points is used to probe SCSI activities. -

-

-
-
-
scsi.ioentry - -
-Prepares a SCSI mid-layer request -
-
 See  -probe::scsi.ioentry(3stap) - -
 for details. - -
scsi.iodispatching - -
-SCSI mid-layer dispatched low-level SCSI command -
-
 See  -probe::scsi.iodispatching(3stap) - -
 for details. - -
scsi.iodone - -
-SCSI command completed by low level driver and enqueued into the done queue. -
-
 See  -probe::scsi.iodone(3stap) - -
 for details. - -
scsi.iocompleted - -
-SCSI mid-layer running the completion processing for block device I/O requests -
-
 See  -probe::scsi.iocompleted(3stap) - -
 for details. - -
scsi.ioexecute - -
-Create mid-layer SCSI request and wait for the result -
-
 See  -probe::scsi.ioexecute(3stap) - -
 for details. - -
scsi.set_state - -
-Order SCSI device state change -
-
 See  -probe::scsi.set_state(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -probe::scsi.ioentry(3stap), - -probe::scsi.iodispatching(3stap), - -probe::scsi.iodone(3stap), - -probe::scsi.iocompleted(3stap), - -probe::scsi.ioexecute(3stap), - -probe::scsi.set_state(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::signal.3stap.html b/man/tapset::signal.3stap.html deleted file mode 100644 index fe61920e..00000000 --- a/man/tapset::signal.3stap.html +++ /dev/null @@ -1,445 +0,0 @@ - -Manpage of tapset::signal - -

tapset::signal

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::signal - systemtap signal tapset -
  -  -

DESCRIPTION

- -

-
  This family of probe points is used to probe signal activities. -
  Since there are so many signals sent to processes at any given -
  point, it is advisable to filter the information according to the -
  requirements.  For example, filter only for a particular signal -
  (if sig==2) or for a particular process (if pid_name==stap). -

-

-
-
-
signal.send - -
-Signal being sent to a process -
-
 See  -probe::signal.send(3stap) - -
 for details. - -
signal.send.return - -
-Signal being sent to a process completed (deprecated in SystemTap 2.1) -
-
 See  -probe::signal.send.return(3stap) - -
 for details. - -
signal.checkperm - -
-Check being performed on a sent signal -
-
 See  -probe::signal.checkperm(3stap) - -
 for details. - -
signal.checkperm.return - -
-Check performed on a sent signal completed -
-
 See  -probe::signal.checkperm.return(3stap) - -
 for details. - -
signal.wakeup - -
-Sleeping process being wakened for signal -
-
 See  -probe::signal.wakeup(3stap) - -
 for details. - -
signal.check_ignored - -
-Checking to see signal is ignored -
-
 See  -probe::signal.check_ignored(3stap) - -
 for details. - -
signal.check_ignored.return - -
-Check to see signal is ignored completed -
-
 See  -probe::signal.check_ignored.return(3stap) - -
 for details. - -
signal.force_segv - -
-Forcing send of SIGSEGV -
-
 See  -probe::signal.force_segv(3stap) - -
 for details. - -
signal.force_segv.return - -
-Forcing send of SIGSEGV complete -
-
 See  -probe::signal.force_segv.return(3stap) - -
 for details. - -
signal.syskill - -
-Sending kill signal to a process -
-
 See  -probe::signal.syskill(3stap) - -
 for details. - -
signal.syskill.return - -
-Sending kill signal completed -
-
 See  -probe::signal.syskill.return(3stap) - -
 for details. - -
signal.sys_tkill - -
-Sending a kill signal to a thread -
-
 See  -probe::signal.sys_tkill(3stap) - -
 for details. - -
signal.systkill.return - -
-Sending kill signal to a thread completed -
-
 See  -probe::signal.systkill.return(3stap) - -
 for details. - -
signal.sys_tgkill - -
-Sending kill signal to a thread group -
-
 See  -probe::signal.sys_tgkill(3stap) - -
 for details. - -
signal.sys_tgkill.return - -
-Sending kill signal to a thread group completed -
-
 See  -probe::signal.sys_tgkill.return(3stap) - -
 for details. - -
signal.send_sig_queue - -
-Queuing a signal to a process -
-
 See  -probe::signal.send_sig_queue(3stap) - -
 for details. - -
signal.send_sig_queue.return - -
-Queuing a signal to a process completed -
-
 See  -probe::signal.send_sig_queue.return(3stap) - -
 for details. - -
signal.pending - -
-Examining pending signal -
-
 See  -probe::signal.pending(3stap) - -
 for details. - -
signal.pending.return - -
-Examination of pending signal completed -
-
 See  -probe::signal.pending.return(3stap) - -
 for details. - -
signal.handle - -
-Signal handler being invoked -
-
 See  -probe::signal.handle(3stap) - -
 for details. - -
signal.handle.return - -
-Signal handler invocation completed -
-
 See  -probe::signal.handle.return(3stap) - -
 for details. - -
signal.do_action - -
-Examining or changing a signal action -
-
 See  -probe::signal.do_action(3stap) - -
 for details. - -
signal.do_action.return - -
-Examining or changing a signal action completed -
-
 See  -probe::signal.do_action.return(3stap) - -
 for details. - -
signal.procmask - -
-Examining or changing blocked signals -
-
 See  -probe::signal.procmask(3stap) - -
 for details. - -
signal.procmask.return - -
-Examining or changing blocked signals completed -
-
 See  -probe::signal.procmask.return(3stap) - -
 for details. - -
signal.flush - -
-Flushing all pending signals for a task -
-
 See  -probe::signal.flush(3stap) - -
 for details. - -
get_sa_flags - -
-Returns the numeric value of sa_flags -
-See -function::get_sa_flags(3stap) - -
 for details. - -
get_sa_flags - -
-Returns the numeric value of sa_handler -
-See -function::get_sa_flags(3stap) - -
 for details. - -
get_sa_flags - -
-Returns the string representation of a sigset -
-See -function::get_sa_flags(3stap) - -
 for details. - -
is_sig_blocked - -
-Returns 1 if the signal is currently blocked, or 0 if it is not -
-See -function::is_sig_blocked(3stap) - -
 for details. - -
sa_flags_str - -
-Returns the string representation of sa_flags -
-See -function::sa_flags_str(3stap) - -
 for details. - -
sa_handler - -
-Returns the string representation of an sa_handler -
-See -function::sa_handler(3stap) - -
 for details. - -
signal_str - -
-Returns the string representation of a signal number -
-See -function::signal_str(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::get_sa_flags(3stap), - -function::get_sa_flags(3stap), - -function::get_sa_flags(3stap), - -function::is_sig_blocked(3stap), - -function::sa_flags_str(3stap), - -function::sa_handler(3stap), - -function::signal_str(3stap), - -probe::signal.send(3stap), - -probe::signal.send.return(3stap), - -probe::signal.checkperm(3stap), - -probe::signal.checkperm.return(3stap), - -probe::signal.wakeup(3stap), - -probe::signal.check_ignored(3stap), - -probe::signal.check_ignored.return(3stap), - -probe::signal.force_segv(3stap), - -probe::signal.force_segv.return(3stap), - -probe::signal.syskill(3stap), - -probe::signal.syskill.return(3stap), - -probe::signal.sys_tkill(3stap), - -probe::signal.systkill.return(3stap), - -probe::signal.sys_tgkill(3stap), - -probe::signal.sys_tgkill.return(3stap), - -probe::signal.send_sig_queue(3stap), - -probe::signal.send_sig_queue.return(3stap), - -probe::signal.pending(3stap), - -probe::signal.pending.return(3stap), - -probe::signal.handle(3stap), - -probe::signal.handle.return(3stap), - -probe::signal.do_action(3stap), - -probe::signal.do_action.return(3stap), - -probe::signal.procmask(3stap), - -probe::signal.procmask.return(3stap), - -probe::signal.flush(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::socket.3stap.html b/man/tapset::socket.3stap.html deleted file mode 100644 index f30b689e..00000000 --- a/man/tapset::socket.3stap.html +++ /dev/null @@ -1,333 +0,0 @@ - -Manpage of tapset::socket - -

tapset::socket

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::socket - systemtap socket tapset -
  -  -

DESCRIPTION

- -

-
 This family of probe points is used to probe socket activities. -

-

-
-
-
socket.send - -
-Message sent on a socket. -
-
 See  -probe::socket.send(3stap) - -
 for details. - -
socket.receive - -
-Message received on a socket. -
-
 See  -probe::socket.receive(3stap) - -
 for details. - -
socket.sendmsg - -
-Message is currently being sent on a socket. -
-
 See  -probe::socket.sendmsg(3stap) - -
 for details. - -
socket.sendmsg.return - -
-Return from socket.sendmsg. -
-
 See  -probe::socket.sendmsg.return(3stap) - -
 for details. - -
socket.recvmsg - -
-Message being received on socket -
-
 See  -probe::socket.recvmsg(3stap) - -
 for details. - -
socket.recvmsg.return - -
-Return from Message being received on socket -
-
 See  -probe::socket.recvmsg.return(3stap) - -
 for details. - -
socket.aio_write - -
-Message send via sock_aio_write() -
-
 See  -probe::socket.aio_write(3stap) - -
 for details. - -
socket.aio_write.return - -
-Conclusion of message send via sock_aio_write() -
-
 See  -probe::socket.aio_write.return(3stap) - -
 for details. - -
socket.aio_read - -
-Receiving message via sock_aio_read() -
-
 See  -probe::socket.aio_read(3stap) - -
 for details. - -
socket.aio_read.return - -
-Conclusion of message received via sock_aio_read() -
-
 See  -probe::socket.aio_read.return(3stap) - -
 for details. - -
socket.writev - -
-Message sent via socket_writev() -
-
 See  -probe::socket.writev(3stap) - -
 for details. - -
socket.writev.return - -
-Conclusion of message sent via socket_writev() -
-
 See  -probe::socket.writev.return(3stap) - -
 for details. - -
socket.readv - -
-Receiving a message via sock_readv() -
-
 See  -probe::socket.readv(3stap) - -
 for details. - -
socket.readv.return - -
-Conclusion of receiving a message via sock_readv() -
-
 See  -probe::socket.readv.return(3stap) - -
 for details. - -
socket.create - -
-Creation of a socket -
-
 See  -probe::socket.create(3stap) - -
 for details. - -
socket.create.return - -
-Return from Creation of a socket -
-
 See  -probe::socket.create.return(3stap) - -
 for details. - -
socket.close - -
-Close a socket -
-
 See  -probe::socket.close(3stap) - -
 for details. - -
socket.close.return - -
-Return from closing a socket -
-
 See  -probe::socket.close.return(3stap) - -
 for details. - -
sock_prot_num2str - -
-Given a protocol number, return a string representation -
-See -function::sock_prot_num2str(3stap) - -
 for details. - -
sock_prot_str2num - -
-Given a protocol name (string), return the corresponding protocol number -
-See -function::sock_prot_str2num(3stap) - -
 for details. - -
sock_fam_num2str - -
-Given a protocol family number, return a string representation -
-See -function::sock_fam_num2str(3stap) - -
 for details. - -
sock_fam_str2num - -
-Given a protocol family name (string), return the corresponding protocol family number -
-See -function::sock_fam_str2num(3stap) - -
 for details. - -
sock_state_num2str - -
-Given a socket state number, return a string representation -
-See -function::sock_state_num2str(3stap) - -
 for details. - -
sock_state_str2num - -
-Given a socket state string, return the corresponding state number -
-See -function::sock_state_str2num(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::sock_prot_num2str(3stap), - -function::sock_prot_str2num(3stap), - -function::sock_fam_num2str(3stap), - -function::sock_fam_str2num(3stap), - -function::sock_state_num2str(3stap), - -function::sock_state_str2num(3stap), - -probe::socket.send(3stap), - -probe::socket.receive(3stap), - -probe::socket.sendmsg(3stap), - -probe::socket.sendmsg.return(3stap), - -probe::socket.recvmsg(3stap), - -probe::socket.recvmsg.return(3stap), - -probe::socket.aio_write(3stap), - -probe::socket.aio_write.return(3stap), - -probe::socket.aio_read(3stap), - -probe::socket.aio_read.return(3stap), - -probe::socket.writev(3stap), - -probe::socket.writev.return(3stap), - -probe::socket.readv(3stap), - -probe::socket.readv.return(3stap), - -probe::socket.create(3stap), - -probe::socket.create.return(3stap), - -probe::socket.close(3stap), - -probe::socket.close.return(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::speculative.3stap.html b/man/tapset::speculative.3stap.html deleted file mode 100644 index d0699e50..00000000 --- a/man/tapset::speculative.3stap.html +++ /dev/null @@ -1,90 +0,0 @@ - -Manpage of tapset::speculative - -

tapset::speculative

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::speculative - systemtap speculative tapset -
  -  -

DESCRIPTION

- -
-
-
-
speculation - -
-Allocate a new id for speculative output -
-See -function::speculation(3stap) - -
 for details. - -
speculate - -
-Store a string for possible output later -
-See -function::speculate(3stap) - -
 for details. - -
discard - -
-Discard all output related to a speculation buffer -
-See -function::discard(3stap) - -
 for details. - -
commit - -
-Write out all output related to a speculation buffer -
-See -function::commit(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::speculation(3stap), - -function::speculate(3stap), - -function::discard(3stap), - -function::commit(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::stap_staticmarkers.3stap.html b/man/tapset::stap_staticmarkers.3stap.html deleted file mode 100644 index 22de48b8..00000000 --- a/man/tapset::stap_staticmarkers.3stap.html +++ /dev/null @@ -1,366 +0,0 @@ - -Manpage of tapset::stap_staticmarkers - -

tapset::stap_staticmarkers

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::stap_staticmarkers - systemtap stap_staticmarkers tapset -
  -  -

DESCRIPTION

- -
-
-
-
stap.pass0 - -
-Starting stap pass0 (parsing command line arguments) -
-
 See  -probe::stap.pass0(3stap) - -
 for details. - -
stap.pass0.end - -
-Finished stap pass0 (parsing command line arguments) -
-
 See  -probe::stap.pass0.end(3stap) - -
 for details. - -
stap.pass1a - -
-Starting stap pass1 (parsing user script) -
-
 See  -probe::stap.pass1a(3stap) - -
 for details. - -
stap.pass1b - -
-Starting stap pass1 (parsing library scripts) -
-
 See  -probe::stap.pass1b(3stap) - -
 for details. - -
stap.pass1.end - -
-Finished stap pass1 (parsing scripts) -
-
 See  -probe::stap.pass1.end(3stap) - -
 for details. - -
stap.pass2 - -
-Starting stap pass2 (elaboration) -
-
 See  -probe::stap.pass2(3stap) - -
 for details. - -
stap.pass2.end - -
-Finished stap pass2 (elaboration) -
-
 See  -probe::stap.pass2.end(3stap) - -
 for details. - -
stap.pass3 - -
-Starting stap pass3 (translation to C) -
-
 See  -probe::stap.pass3(3stap) - -
 for details. - -
stap.pass3.end - -
-Finished stap pass3 (translation to C) -
-
 See  -probe::stap.pass3.end(3stap) - -
 for details. - -
stap.pass4 - -
-Starting stap pass4 (compile C code into kernel module) -
-
 See  -probe::stap.pass4(3stap) - -
 for details. - -
stap.pass4.end - -
-Finished stap pass4 (compile C code into kernel module) -
-
 See  -probe::stap.pass4.end(3stap) - -
 for details. - -
stap.pass5 - -
-Starting stap pass5 (running the instrumentation) -
-
 See  -probe::stap.pass5(3stap) - -
 for details. - -
stap.pass5.end - -
-Finished stap pass5 (running the instrumentation) -
-
 See  -probe::stap.pass5.end(3stap) - -
 for details. - -
stap.pass6 - -
-Starting stap pass6 (cleanup) -
-
 See  -probe::stap.pass6(3stap) - -
 for details. - -
stap.pass6.end - -
-Finished stap pass6 (cleanup) -
-
 See  -probe::stap.pass6.end(3stap) - -
 for details. - -
stap.cache_clean - -
-Removing file from stap cache -
-
 See  -probe::stap.cache_clean(3stap) - -
 for details. - -
stap.cache_add_mod - -
-Adding kernel instrumentation module to cache -
-
 See  -probe::stap.cache_add_mod(3stap) - -
 for details. - -
stap.cache_add_src - -
-Adding C code translation to cache -
-
 See  -probe::stap.cache_add_src(3stap) - -
 for details. - -
stap.cache_add_nss - -
-Add NSS (Network Security Services) information to cache -
-
 See  -probe::stap.cache_add_nss(3stap) - -
 for details. - -
stap.cache_get - -
-Found item in stap cache -
-
 See  -probe::stap.cache_get(3stap) - -
 for details. - -
stap.system - -
-Starting a command from stap -
-
 See  -probe::stap.system(3stap) - -
 for details. - -
stap.system.spawn - -
-stap spawned new process -
-
 See  -probe::stap.system.spawn(3stap) - -
 for details. - -
stap.system.return - -
-Finished a command from stap -
-
 See  -probe::stap.system.return(3stap) - -
 for details. - -
staprun.insert_module - -
-Inserting SystemTap instrumentation module -
-
 See  -probe::staprun.insert_module(3stap) - -
 for details. - -
staprun.remove_module - -
-Removing SystemTap instrumentation module -
-
 See  -probe::staprun.remove_module(3stap) - -
 for details. - -
staprun.send_control_message - -
-Sending a control message -
-
 See  -probe::staprun.send_control_message(3stap) - -
 for details. - -
stapio.receive_control_message - -
-Received a control message -
-
 See  -probe::stapio.receive_control_message(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -probe::stap.pass0(3stap), - -probe::stap.pass0.end(3stap), - -probe::stap.pass1a(3stap), - -probe::stap.pass1b(3stap), - -probe::stap.pass1.end(3stap), - -probe::stap.pass2(3stap), - -probe::stap.pass2.end(3stap), - -probe::stap.pass3(3stap), - -probe::stap.pass3.end(3stap), - -probe::stap.pass4(3stap), - -probe::stap.pass4.end(3stap), - -probe::stap.pass5(3stap), - -probe::stap.pass5.end(3stap), - -probe::stap.pass6(3stap), - -probe::stap.pass6.end(3stap), - -probe::stap.cache_clean(3stap), - -probe::stap.cache_add_mod(3stap), - -probe::stap.cache_add_src(3stap), - -probe::stap.cache_add_nss(3stap), - -probe::stap.cache_get(3stap), - -probe::stap.system(3stap), - -probe::stap.system.spawn(3stap), - -probe::stap.system.return(3stap), - -probe::staprun.insert_module(3stap), - -probe::staprun.remove_module(3stap), - -probe::staprun.send_control_message(3stap), - -probe::stapio.receive_control_message(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::stopwatch.3stap.html b/man/tapset::stopwatch.3stap.html deleted file mode 100644 index 443461b7..00000000 --- a/man/tapset::stopwatch.3stap.html +++ /dev/null @@ -1,126 +0,0 @@ - -Manpage of tapset::stopwatch - -

tapset::stopwatch

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::stopwatch - systemtap stopwatch tapset -
  -  -

DESCRIPTION

- -
-
-
-
delete_stopwatch - -
-Remove an existing stopwatch -
-See -function::delete_stopwatch(3stap) - -
 for details. - -
start_stopwatch - -
-Start a stopwatch -
-See -function::start_stopwatch(3stap) - -
 for details. - -
stop_stopwatch - -
-Stop a stopwatch -
-See -function::stop_stopwatch(3stap) - -
 for details. - -
read_stopwatch_ns - -
-Reads the time in nanoseconds for a stopwatch -
-See -function::read_stopwatch_ns(3stap) - -
 for details. - -
read_stopwatch_us - -
-Reads the time in microseconds for a stopwatch -
-See -function::read_stopwatch_us(3stap) - -
 for details. - -
read_stopwatch_ms - -
-Reads the time in milliseconds for a stopwatch -
-See -function::read_stopwatch_ms(3stap) - -
 for details. - -
read_stopwatch_ms - -
-Reads the time in seconds for a stopwatch -
-See -function::read_stopwatch_ms(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::delete_stopwatch(3stap), - -function::start_stopwatch(3stap), - -function::stop_stopwatch(3stap), - -function::read_stopwatch_ns(3stap), - -function::read_stopwatch_us(3stap), - -function::read_stopwatch_ms(3stap), - -function::read_stopwatch_ms(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::string.3stap.html b/man/tapset::string.3stap.html deleted file mode 100644 index 9b301eb1..00000000 --- a/man/tapset::string.3stap.html +++ /dev/null @@ -1,140 +0,0 @@ - -Manpage of tapset::string - -

tapset::string

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::string - systemtap string tapset -
  -  -

DESCRIPTION

- -
-
-
-
strlen - -
-Returns the length of a string -
-See -function::strlen(3stap) - -
 for details. - -
substr - -
-Returns a substring -
-See -function::substr(3stap) - -
 for details. - -
stringat - -
-Returns the char at a given position in the string -
-See -function::stringat(3stap) - -
 for details. - -
isinstr - -
-Returns whether a string is a substring of another string -
-See -function::isinstr(3stap) - -
 for details. - -
text_str - -
-Escape any non-printable chars in a string -
-See -function::text_str(3stap) - -
 for details. - -
text_strn - -
-Escape any non-printable chars in a string -
-See -function::text_strn(3stap) - -
 for details. - -
- strtol - -
-Convert a string to a long -
-See -function::-strtol(3stap) - -
 for details. - -
isdigit - -
-Checks for a digit -
-See -function::isdigit(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::strlen(3stap), - -function::substr(3stap), - -function::stringat(3stap), - -function::isinstr(3stap), - -function::text_str(3stap), - -function::text_strn(3stap), - -function::-(3stap), - -function::strtol(3stap), - -function::isdigit(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::system.3stap.html b/man/tapset::system.3stap.html deleted file mode 100644 index a6b40aba..00000000 --- a/man/tapset::system.3stap.html +++ /dev/null @@ -1,54 +0,0 @@ - -Manpage of tapset::system - -

tapset::system

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::system - systemtap system tapset -
  -  -

DESCRIPTION

- -
-
-
-
system - -
-Issue a command to the system -
-See -function::system(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::system(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::target_set.3stap.html b/man/tapset::target_set.3stap.html deleted file mode 100644 index 60b58787..00000000 --- a/man/tapset::target_set.3stap.html +++ /dev/null @@ -1,66 +0,0 @@ - -Manpage of tapset::target_set - -

tapset::target_set

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::target_set - systemtap target_set tapset -
  -  -

DESCRIPTION

- -
-
-
-
target_set_pid - -
-Does pid descend from target process? -
-See -function::target_set_pid(3stap) - -
 for details. - -
target_set_report - -
-Print a report about the target set -
-See -function::target_set_report(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::target_set_pid(3stap), - -function::target_set_report(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::task.3stap.html b/man/tapset::task.3stap.html deleted file mode 100644 index 9bdd1cc8..00000000 --- a/man/tapset::task.3stap.html +++ /dev/null @@ -1,246 +0,0 @@ - -Manpage of tapset::task - -

tapset::task

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::task - systemtap task tapset -
  -  -

DESCRIPTION

- -
-
-
-
task_current - -
-The current task_struct of the current task -
-See -function::task_current(3stap) - -
 for details. - -
task_parent - -
-The task_struct of the parent task -
-See -function::task_parent(3stap) - -
 for details. - -
task_state - -
-The state of the task -
-See -function::task_state(3stap) - -
 for details. - -
task_execname - -
-The name of the task -
-See -function::task_execname(3stap) - -
 for details. - -
task_pid - -
-The process identifier of the task -
-See -function::task_pid(3stap) - -
 for details. - -
pid2task - -
-The task_struct of the given process identifier -
-See -function::pid2task(3stap) - -
 for details. - -
pid2execname - -
-The name of the given process identifier -
-See -function::pid2execname(3stap) - -
 for details. - -
task_tid - -
-The thread identifier of the task -
-See -function::task_tid(3stap) - -
 for details. - -
task_gid - -
-The group identifier of the task -
-See -function::task_gid(3stap) - -
 for details. - -
task_egid - -
-The effective group identifier of the task -
-See -function::task_egid(3stap) - -
 for details. - -
task_uid - -
-The user identifier of the task -
-See -function::task_uid(3stap) - -
 for details. - -
task_euid - -
-The effective user identifier of the task -
-See -function::task_euid(3stap) - -
 for details. - -
task_prio - -
-The priority value of the task -
-See -function::task_prio(3stap) - -
 for details. - -
task_nice - -
-The nice value of the task -
-See -function::task_nice(3stap) - -
 for details. - -
task_cpu - -
-The scheduled cpu of the task -
-See -function::task_cpu(3stap) - -
 for details. - -
task_open_file_handles - -
-The number of open files of the task -
-See -function::task_open_file_handles(3stap) - -
 for details. - -
task_max_file_handles - -
-The max number of open files for the task -
-See -function::task_max_file_handles(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::task_current(3stap), - -function::task_parent(3stap), - -function::task_state(3stap), - -function::task_execname(3stap), - -function::task_pid(3stap), - -function::pid2task(3stap), - -function::pid2execname(3stap), - -function::task_tid(3stap), - -function::task_gid(3stap), - -function::task_egid(3stap), - -function::task_uid(3stap), - -function::task_euid(3stap), - -function::task_prio(3stap), - -function::task_nice(3stap), - -function::task_cpu(3stap), - -function::task_open_file_handles(3stap), - -function::task_max_file_handles(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::task_time.3stap.html b/man/tapset::task_time.3stap.html deleted file mode 100644 index e4023d93..00000000 --- a/man/tapset::task_time.3stap.html +++ /dev/null @@ -1,161 +0,0 @@ - -Manpage of tapset::task_time - -

tapset::task_time

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::task_time - systemtap task_time tapset -
  -  -

DESCRIPTION

- -

-
 Task time query and utility functions provide information about -
 the time resource usage of the current task. These functions provide -
 information about the user time and system time of the current -
 task. And provide utility functions to turn the reported times -
 into miliseconds and create human readable string representations -
 of task time used. The reported times are approximates and should -
 be used for "coarse grained" measurements only. The reported user -
 and system time are only for the current task, not for the process -
 as a whole nor of any time spend by children of the current task. -

-

-
-
-
task_utime - -
-User time of the current task -
-See -function::task_utime(3stap) - -
 for details. - -
task_utime - -
-User time of the given task -
-See -function::task_utime(3stap) - -
 for details. - -
task_stime - -
-System time of the current task -
-See -function::task_stime(3stap) - -
 for details. - -
task_stime_tid - -
-System time of the given task -
-See -function::task_stime_tid(3stap) - -
 for details. - -
cputime_to_msecs - -
-Translates the given cputime into milliseconds -
-See -function::cputime_to_msecs(3stap) - -
 for details. - -
msecs_to_string - -
-Human readable string for given milliseconds -
-See -function::msecs_to_string(3stap) - -
 for details. - -
cputime_to_string - -
-Human readable string for given cputime -
-See -function::cputime_to_string(3stap) - -
 for details. - -
task_time_string - -
-Human readable string of task time usage -
-See -function::task_time_string(3stap) - -
 for details. - -
task_time_string_tid - -
-Human readable string of task time usage -
-See -function::task_time_string_tid(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::task_utime(3stap), - -function::task_utime(3stap), - -function::task_stime(3stap), - -function::task_stime_tid(3stap), - -function::cputime_to_msecs(3stap), - -function::msecs_to_string(3stap), - -function::cputime_to_string(3stap), - -function::task_time_string(3stap), - -function::task_time_string_tid(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::tcp.3stap.html b/man/tapset::tcp.3stap.html deleted file mode 100644 index fdf8d8ba..00000000 --- a/man/tapset::tcp.3stap.html +++ /dev/null @@ -1,153 +0,0 @@ - -Manpage of tapset::tcp - -

tapset::tcp

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::tcp - systemtap tcp tapset -
  -  -

DESCRIPTION

- -

-
 This family of probe points is used to probe events that occur in the TCP layer,  -

-

-
-
-
tcp.sendmsg - -
-Sending a tcp message -
-
 See  -probe::tcp.sendmsg(3stap) - -
 for details. - -
tcp.sendmsg.return - -
-
 Sending TCP message is done -
-
 See  -probe::tcp.sendmsg.return(3stap) - -
 for details. - -
tcp.recvmsg - -
-Receiving TCP message -
-
 See  -probe::tcp.recvmsg(3stap) - -
 for details. - -
tcp.recvmsg.return - -
-Receiving TCP message complete -
-
 See  -probe::tcp.recvmsg.return(3stap) - -
 for details. - -
tcp.disconnect - -
-TCP socket disconnection -
-
 See  -probe::tcp.disconnect(3stap) - -
 for details. - -
tcp.disconnect.return - -
-TCP socket disconnection complete -
-
 See  -probe::tcp.disconnect.return(3stap) - -
 for details. - -
tcp.setsockopt - -
-Call to setsockopt() -
-
 See  -probe::tcp.setsockopt(3stap) - -
 for details. - -
tcp.setsockopt.return - -
-
 Return from setsockopt() -
-
 See  -probe::tcp.setsockopt.return(3stap) - -
 for details. - -
tcp.receive - -
-Called when a TCP packet is received -
-
 See  -probe::tcp.receive(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -probe::tcp.sendmsg(3stap), - -probe::tcp.sendmsg.return(3stap), - -probe::tcp.recvmsg(3stap), - -probe::tcp.recvmsg.return(3stap), - -probe::tcp.disconnect(3stap), - -probe::tcp.disconnect.return(3stap), - -probe::tcp.setsockopt(3stap), - -probe::tcp.setsockopt.return(3stap), - -probe::tcp.receive(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::tcpmib-filter-default.3stap.html b/man/tapset::tcpmib-filter-default.3stap.html deleted file mode 100644 index 8a978bd3..00000000 --- a/man/tapset::tcpmib-filter-default.3stap.html +++ /dev/null @@ -1,54 +0,0 @@ - -Manpage of tapset::tcpmib-filter-default - -

tapset::tcpmib-filter-default

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::tcpmib-filter-default - systemtap tcpmib-filter-default tapset -
  -  -

DESCRIPTION

- -
-
-
-
tcpmib_filter_key - -
-Default filter function for tcpmib.* probes -
-See -function::tcpmib_filter_key(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::tcpmib_filter_key(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::tcpmib.3stap.html b/man/tapset::tcpmib.3stap.html deleted file mode 100644 index b5037e40..00000000 --- a/man/tapset::tcpmib.3stap.html +++ /dev/null @@ -1,210 +0,0 @@ - -Manpage of tapset::tcpmib - -

tapset::tcpmib

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::tcpmib - systemtap tcpmib tapset -
  -  -

DESCRIPTION

- -
-
-
-
tcpmib_get_state - -
-Get a socket's state -
-See -function::tcpmib_get_state(3stap) - -
 for details. - -
tcpmib_local_addr - -
-Get the source address -
-See -function::tcpmib_local_addr(3stap) - -
 for details. - -
tcpmib_remote_addr - -
-Get the remote address -
-See -function::tcpmib_remote_addr(3stap) - -
 for details. - -
tcpmib_local_port - -
-Get the local port -
-See -function::tcpmib_local_port(3stap) - -
 for details. - -
tcpmib_remote_port - -
-Get the remote port -
-See -function::tcpmib_remote_port(3stap) - -
 for details. - -
tcpmib.ActiveOpens - -
-Count an active opening of a socket -
-
 See  -probe::tcpmib.ActiveOpens(3stap) - -
 for details. - -
tcpmib.AttemptFails - -
-Count a failed attempt to open a socket -
-
 See  -probe::tcpmib.AttemptFails(3stap) - -
 for details. - -
tcpmib.CurrEstab - -
-Update the count of open sockets -
-
 See  -probe::tcpmib.CurrEstab(3stap) - -
 for details. - -
tcpmib.EstabResets - -
-Count the reset of a socket -
-
 See  -probe::tcpmib.EstabResets(3stap) - -
 for details. - -
tcpmib.InSegs - -
-Count an incoming tcp segment -
-
 See  -probe::tcpmib.InSegs(3stap) - -
 for details. - -
tcpmib.OutRsts - -
-Count the sending of a reset packet -
-
 See  -probe::tcpmib.OutRsts(3stap) - -
 for details. - -
tcpmib.OutSegs - -
-Count the sending of a TCP segment -
-
 See  -probe::tcpmib.OutSegs(3stap) - -
 for details. - -
tcpmib.PassiveOpens - -
-Count the passive creation of a socket -
-
 See  -probe::tcpmib.PassiveOpens(3stap) - -
 for details. - -
tcpmib.RetransSegs - -
-Count the retransmission of a TCP segment -
-
 See  -probe::tcpmib.RetransSegs(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::tcpmib_get_state(3stap), - -function::tcpmib_local_addr(3stap), - -function::tcpmib_remote_addr(3stap), - -function::tcpmib_local_port(3stap), - -function::tcpmib_remote_port(3stap), - -probe::tcpmib.ActiveOpens(3stap), - -probe::tcpmib.AttemptFails(3stap), - -probe::tcpmib.CurrEstab(3stap), - -probe::tcpmib.EstabResets(3stap), - -probe::tcpmib.InSegs(3stap), - -probe::tcpmib.OutRsts(3stap), - -probe::tcpmib.OutSegs(3stap), - -probe::tcpmib.PassiveOpens(3stap), - -probe::tcpmib.RetransSegs(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::timestamp.3stap.html b/man/tapset::timestamp.3stap.html deleted file mode 100644 index b88a29cd..00000000 --- a/man/tapset::timestamp.3stap.html +++ /dev/null @@ -1,83 +0,0 @@ - -Manpage of tapset::timestamp - -

tapset::timestamp

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::timestamp - systemtap timestamp tapset -
  -  -

DESCRIPTION

- -

-
 Each timestamp function returns a value to indicate when a function is executed. These  -returned values can then be used to indicate when an event occurred, provide an ordering for events, -or compute the amount of time elapsed between two time stamps. -

-

-
-
-
get_cycles - -
-Processor cycle count -
-See -function::get_cycles(3stap) - -
 for details. - -
jiffies - -
-Kernel jiffies count -
-See -function::jiffies(3stap) - -
 for details. - -
HZ - -
-Kernel HZ -
-See -function::HZ(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::get_cycles(3stap), - -function::jiffies(3stap), - -function::HZ(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::timestamp_gtod.3stap.html b/man/tapset::timestamp_gtod.3stap.html deleted file mode 100644 index 9a8d1f90..00000000 --- a/man/tapset::timestamp_gtod.3stap.html +++ /dev/null @@ -1,90 +0,0 @@ - -Manpage of tapset::timestamp_gtod - -

tapset::timestamp_gtod

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::timestamp_gtod - systemtap timestamp_gtod tapset -
  -  -

DESCRIPTION

- -
-
-
-
gettimeofday_ns - -
-Number of nanoseconds since UNIX epoch -
-See -function::gettimeofday_ns(3stap) - -
 for details. - -
gettimeofday_us - -
-Number of microseconds since UNIX epoch -
-See -function::gettimeofday_us(3stap) - -
 for details. - -
gettimeofday_ms - -
-Number of milliseconds since UNIX epoch -
-See -function::gettimeofday_ms(3stap) - -
 for details. - -
gettimeofday_s - -
-Number of seconds since UNIX epoch -
-See -function::gettimeofday_s(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::gettimeofday_ns(3stap), - -function::gettimeofday_us(3stap), - -function::gettimeofday_ms(3stap), - -function::gettimeofday_s(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::timestamp_monotonic.3stap.html b/man/tapset::timestamp_monotonic.3stap.html deleted file mode 100644 index 7cabf648..00000000 --- a/man/tapset::timestamp_monotonic.3stap.html +++ /dev/null @@ -1,138 +0,0 @@ - -Manpage of tapset::timestamp_monotonic - -

tapset::timestamp_monotonic

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::timestamp_monotonic - systemtap timestamp_monotonic tapset -
  -  -

DESCRIPTION

- -
-
-
-
cpu_clock_ns - -
-Number of nanoseconds on the given cpu's clock -
-See -function::cpu_clock_ns(3stap) - -
 for details. - -
cpu_clock_us - -
-Number of microseconds on the given cpu's clock -
-See -function::cpu_clock_us(3stap) - -
 for details. - -
cpu_clock_ms - -
-Number of milliseconds on the given cpu's clock -
-See -function::cpu_clock_ms(3stap) - -
 for details. - -
cpu_clock_s - -
-Number of seconds on the given cpu's clock -
-See -function::cpu_clock_s(3stap) - -
 for details. - -
local_clock_ns - -
-Number of nanoseconds on the local cpu's clock -
-See -function::local_clock_ns(3stap) - -
 for details. - -
local_clock_us - -
-Number of microseconds on the local cpu's clock -
-See -function::local_clock_us(3stap) - -
 for details. - -
local_clock_ms - -
-Number of milliseconds on the local cpu's clock -
-See -function::local_clock_ms(3stap) - -
 for details. - -
local_clock_s - -
-Number of seconds on the local cpu's clock -
-See -function::local_clock_s(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::cpu_clock_ns(3stap), - -function::cpu_clock_us(3stap), - -function::cpu_clock_ms(3stap), - -function::cpu_clock_s(3stap), - -function::local_clock_ns(3stap), - -function::local_clock_us(3stap), - -function::local_clock_ms(3stap), - -function::local_clock_s(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::tokenize.3stap.html b/man/tapset::tokenize.3stap.html deleted file mode 100644 index 6b04c4b4..00000000 --- a/man/tapset::tokenize.3stap.html +++ /dev/null @@ -1,54 +0,0 @@ - -Manpage of tapset::tokenize - -

tapset::tokenize

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::tokenize - systemtap tokenize tapset -
  -  -

DESCRIPTION

- -
-
-
-
tokenize - -
-Return the next non-empty token in a string -
-See -function::tokenize(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::tokenize(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::tty.3stap.html b/man/tapset::tty.3stap.html deleted file mode 100644 index d264687f..00000000 --- a/man/tapset::tty.3stap.html +++ /dev/null @@ -1,174 +0,0 @@ - -Manpage of tapset::tty - -

tapset::tty

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::tty - systemtap tty tapset -
  -  -

DESCRIPTION

- -
-
-
-
tty.open - -
-Called when a tty is opened -
-
 See  -probe::tty.open(3stap) - -
 for details. - -
tty.release - -
-Called when the tty is closed -
-
 See  -probe::tty.release(3stap) - -
 for details. - -
tty.resize - -
-Called when a terminal resize happens -
-
 See  -probe::tty.resize(3stap) - -
 for details. - -
tty.ioctl - -
-called when a ioctl is request to the tty -
-
 See  -probe::tty.ioctl(3stap) - -
 for details. - -
tty.init - -
-Called when a tty is being initalized -
-
 See  -probe::tty.init(3stap) - -
 for details. - -
tty.register - -
-Called when a tty device is registred -
-
 See  -probe::tty.register(3stap) - -
 for details. - -
tty.unregister - -
-Called when a tty device is being unregistered -
-
 See  -probe::tty.unregister(3stap) - -
 for details. - -
tty.poll - -
-Called when a tty device is being polled -
-
 See  -probe::tty.poll(3stap) - -
 for details. - -
tty.receive - -
-called when a tty receives a message -
-
 See  -probe::tty.receive(3stap) - -
 for details. - -
tty.write - -
-write to the tty line -
-
 See  -probe::tty.write(3stap) - -
 for details. - -
tty.read - -
-called when a tty line will be read -
-
 See  -probe::tty.read(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -probe::tty.open(3stap), - -probe::tty.release(3stap), - -probe::tty.resize(3stap), - -probe::tty.ioctl(3stap), - -probe::tty.init(3stap), - -probe::tty.register(3stap), - -probe::tty.unregister(3stap), - -probe::tty.poll(3stap), - -probe::tty.receive(3stap), - -probe::tty.write(3stap), - -probe::tty.read(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::tzinfo.3stap.html b/man/tapset::tzinfo.3stap.html deleted file mode 100644 index afa40300..00000000 --- a/man/tapset::tzinfo.3stap.html +++ /dev/null @@ -1,78 +0,0 @@ - -Manpage of tapset::tzinfo - -

tapset::tzinfo

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::tzinfo - systemtap tzinfo tapset -
  -  -

DESCRIPTION

- -
-
-
-
tz_gmtoff - -
-Return local time zone offset -
-See -function::tz_gmtoff(3stap) - -
 for details. - -
tz_name - -
-Return local time zone name -
-See -function::tz_name(3stap) - -
 for details. - -
tz_ctime - -
-Convert seconds since epoch into human readable date/time string, with local time zone -
-See -function::tz_ctime(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::tz_gmtoff(3stap), - -function::tz_name(3stap), - -function::tz_ctime(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::ucontext-symbols.3stap.html b/man/tapset::ucontext-symbols.3stap.html deleted file mode 100644 index e327e44a..00000000 --- a/man/tapset::ucontext-symbols.3stap.html +++ /dev/null @@ -1,132 +0,0 @@ - -Manpage of tapset::ucontext-symbols - -

tapset::ucontext-symbols

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::ucontext-symbols - systemtap ucontext-symbols tapset -
  -  -

DESCRIPTION

- -

-
 User context symbol functions provide additional information about -
 addresses from an application. These functions can provide -
 information about the user space map (library) that the event occurred or -
 the function symbol of an address. -

-

-
-
-
ustack - -
-Return address at given depth of user stack backtrace -
-See -function::ustack(3stap) - -
 for details. - -
usymname - -
-Return the symbol of an address in the current task. -
-See -function::usymname(3stap) - -
 for details. - -
usymdata - -
-Return the symbol and module offset of an address. -
-See -function::usymdata(3stap) - -
 for details. - -
print_ustack - -
-Print out stack for the current task from string. -
-See -function::print_ustack(3stap) - -
 for details. - -
print_usyms - -
-Print out user stack from string -
-See -function::print_usyms(3stap) - -
 for details. - -
sprint_ustack - -
-Return stack for the current task from string. -
-See -function::sprint_ustack(3stap) - -
 for details. - -
sprint_usyms - -
-Return stack for user addresses from string -
-See -function::sprint_usyms(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::ustack(3stap), - -function::usymname(3stap), - -function::usymdata(3stap), - -function::print_ustack(3stap), - -function::print_usyms(3stap), - -function::sprint_ustack(3stap), - -function::sprint_usyms(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::ucontext-unwind.3stap.html b/man/tapset::ucontext-unwind.3stap.html deleted file mode 100644 index c2aa694b..00000000 --- a/man/tapset::ucontext-unwind.3stap.html +++ /dev/null @@ -1,78 +0,0 @@ - -Manpage of tapset::ucontext-unwind - -

tapset::ucontext-unwind

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::ucontext-unwind - systemtap ucontext-unwind tapset -
  -  -

DESCRIPTION

- -
-
-
-
print_ubacktrace - -
-Print stack back trace for current user-space task. -
-See -function::print_ubacktrace(3stap) - -
 for details. - -
sprint_ubacktrace - -
-Return stack back trace for current user-space task as string. -
-See -function::sprint_ubacktrace(3stap) - -
 for details. - -
ubacktrace - -
-Hex backtrace of current user-space task stack. -
-See -function::ubacktrace(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::print_ubacktrace(3stap), - -function::sprint_ubacktrace(3stap), - -function::ubacktrace(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::ucontext.3stap.html b/man/tapset::ucontext.3stap.html deleted file mode 100644 index 1c6959c9..00000000 --- a/man/tapset::ucontext.3stap.html +++ /dev/null @@ -1,66 +0,0 @@ - -Manpage of tapset::ucontext - -

tapset::ucontext

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::ucontext - systemtap ucontext tapset -
  -  -

DESCRIPTION

- -
-
-
-
umodname - -
-Returns the (short) name of the user module. -
-See -function::umodname(3stap) - -
 for details. - -
ucallers - -
-Return first n elements of user stack backtrace -
-See -function::ucallers(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::umodname(3stap), - -function::ucallers(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::uconversions.3stap.html b/man/tapset::uconversions.3stap.html deleted file mode 100644 index caf12500..00000000 --- a/man/tapset::uconversions.3stap.html +++ /dev/null @@ -1,402 +0,0 @@ - -Manpage of tapset::uconversions - -

tapset::uconversions

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::uconversions - systemtap uconversions tapset -
  -  -

DESCRIPTION

- -
-
-
-
user_string - -
-Retrieves string from user space -
-See -function::user_string(3stap) - -
 for details. - -
user_string2 - -
-Retrieves string from user space with alternative error string -
-See -function::user_string2(3stap) - -
 for details. - -
user_string_warn - -
-Retrieves string from user space -
-See -function::user_string_warn(3stap) - -
 for details. - -
user_string_quoted - -
-Retrieves and quotes string from user space -
-See -function::user_string_quoted(3stap) - -
 for details. - -
user_string_n - -
-Retrieves string of given length from user space -
-See -function::user_string_n(3stap) - -
 for details. - -
user_string_n2 - -
-Retrieves string of given length from user space -
-See -function::user_string_n2(3stap) - -
 for details. - -
user_string_n_warn - -
-Retrieves string from user space -
-See -function::user_string_n_warn(3stap) - -
 for details. - -
user_string_n_quoted - -
-Retrieves and quotes string from user space -
-See -function::user_string_n_quoted(3stap) - -
 for details. - -
user_string_utf32 - -
-Retrieves UTF-32 string from user memory -
-See -function::user_string_utf32(3stap) - -
 for details. - -
user_string2_utf32 - -
-Retrieves UTF-32 string from user memory with alternative error string -
-See -function::user_string2_utf32(3stap) - -
 for details. - -
user_string_utf16 - -
-Retrieves UTF-16 string from user memory -
-See -function::user_string_utf16(3stap) - -
 for details. - -
user_string2_utf16 - -
-Retrieves UTF-16 string from user memory with alternative error string -
-See -function::user_string2_utf16(3stap) - -
 for details. - -
user_char - -
-Retrieves a char value stored in user space -
-See -function::user_char(3stap) - -
 for details. - -
user_char_warn - -
-Retrieves a char value stored in user space -
-See -function::user_char_warn(3stap) - -
 for details. - -
user_short - -
-Retrieves a short value stored in user space -
-See -function::user_short(3stap) - -
 for details. - -
user_short_warn - -
-Retrieves a short value stored in user space -
-See -function::user_short_warn(3stap) - -
 for details. - -
user_ushort - -
-Retrieves an unsigned short value stored in user space -
-See -function::user_ushort(3stap) - -
 for details. - -
user_ushort_warn - -
-Retrieves an unsigned short value stored in user space -
-See -function::user_ushort_warn(3stap) - -
 for details. - -
user_int - -
-Retrieves an int value stored in user space -
-See -function::user_int(3stap) - -
 for details. - -
user_int_warn - -
-Retrieves an int value stored in user space -
-See -function::user_int_warn(3stap) - -
 for details. - -
user_long - -
-Retrieves a long value stored in user space -
-See -function::user_long(3stap) - -
 for details. - -
user_long_warn - -
-Retrieves a long value stored in user space -
-See -function::user_long_warn(3stap) - -
 for details. - -
user_int8 - -
-Retrieves a 8-bit integer value stored in user space -
-See -function::user_int8(3stap) - -
 for details. - -
user_uint8 - -
-Retrieves an unsigned 8-bit integer value stored in user space -
-See -function::user_uint8(3stap) - -
 for details. - -
user_int16 - -
-Retrieves a 16-bit integer value stored in user space -
-See -function::user_int16(3stap) - -
 for details. - -
user_uint16 - -
-Retrieves an unsigned 16-bit integer value stored in user space -
-See -function::user_uint16(3stap) - -
 for details. - -
user_int32 - -
-Retrieves a 32-bit integer value stored in user space -
-See -function::user_int32(3stap) - -
 for details. - -
user_uint32 - -
-Retrieves an unsigned 32-bit integer value stored in user space -
-See -function::user_uint32(3stap) - -
 for details. - -
user_int64 - -
-Retrieves a 64-bit integer value stored in user space -
-See -function::user_int64(3stap) - -
 for details. - -
user_uint64 - -
-Retrieves an unsigned 64-bit integer value stored in user space -
-See -function::user_uint64(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -function::user_string(3stap), - -function::user_string2(3stap), - -function::user_string_warn(3stap), - -function::user_string_quoted(3stap), - -function::user_string_n(3stap), - -function::user_string_n2(3stap), - -function::user_string_n_warn(3stap), - -function::user_string_n_quoted(3stap), - -function::user_string_utf32(3stap), - -function::user_string2_utf32(3stap), - -function::user_string_utf16(3stap), - -function::user_string2_utf16(3stap), - -function::user_char(3stap), - -function::user_char_warn(3stap), - -function::user_short(3stap), - -function::user_short_warn(3stap), - -function::user_ushort(3stap), - -function::user_ushort_warn(3stap), - -function::user_int(3stap), - -function::user_int_warn(3stap), - -function::user_long(3stap), - -function::user_long_warn(3stap), - -function::user_int8(3stap), - -function::user_uint8(3stap), - -function::user_int16(3stap), - -function::user_uint16(3stap), - -function::user_int32(3stap), - -function::user_uint32(3stap), - -function::user_int64(3stap), - -function::user_uint64(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/tapset::udp.3stap.html b/man/tapset::udp.3stap.html deleted file mode 100644 index ac3c34f1..00000000 --- a/man/tapset::udp.3stap.html +++ /dev/null @@ -1,117 +0,0 @@ - -Manpage of tapset::udp - -

tapset::udp

-Section: Misc. Reference Manual Pages (3stap)
Updated: ---
Index -Return to Main Contents
- -  -

NAME

- -tapset::udp - systemtap udp tapset -
  -  -

DESCRIPTION

- -

-
 This family of probe points is used to probe events that occur in the UDP layer.  -

-

-
-
-
udp.sendmsg - -
-Fires whenever a process sends a UDP message -
-
 See  -probe::udp.sendmsg(3stap) - -
 for details. - -
udp.sendmsg.return - -
-Fires whenever an attempt to send a UDP message is completed -
-
 See  -probe::udp.sendmsg.return(3stap) - -
 for details. - -
udp.recvmsg - -
-Fires whenever a UDP message is received -
-
 See  -probe::udp.recvmsg(3stap) - -
 for details. - -
udp.recvmsg.return - -
-Fires whenever an attempt to receive a UDP message received is completed -
-
 See  -probe::udp.recvmsg.return(3stap) - -
 for details. - -
udp.disconnect - -
-Fires when a process requests for a UDP disconnection -
-
 See  -probe::udp.disconnect(3stap) - -
 for details. - -
udp.disconnect.return - -
-UDP has been disconnected successfully -
-
 See  -probe::udp.disconnect.return(3stap) - -
 for details. -

-

-  -

SEE ALSO

- -probe::udp.sendmsg(3stap), - -probe::udp.sendmsg.return(3stap), - -probe::udp.recvmsg(3stap), - -probe::udp.recvmsg.return(3stap), - -probe::udp.disconnect(3stap), - -probe::udp.disconnect.return(3stap), - -stap(1), - -stapprobes(3stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:20 GMT, March 20, 2013 - - diff --git a/man/warning::debuginfo.7stap.html b/man/warning::debuginfo.7stap.html deleted file mode 100644 index bd432afd..00000000 --- a/man/warning::debuginfo.7stap.html +++ /dev/null @@ -1,108 +0,0 @@ - -Manpage of WARNING::DEBUGINFO - -

WARNING::DEBUGINFO

-Section: Misc. Reference Manual Pages (7stap)
Index -Return to Main Contents
- -  -

NAME

- -warning::debuginfo - systemtap missing-debuginfo warnings -

-  -

DESCRIPTION

- -For many symbolic probing operations, systemtap needs DWARF debuginfo for -the relevant binaries. This often includes resolving function/statement -probes, or $context variables in related handlers. DWARF debuginfo may -be found in the original binaries built during compilation, or may have -been split into separate files. The -SYSTEMTAP_DEBUGINFO_PATH - -environment variable affects where systemtap looks for these files. -

- -If your operating system came from a distributor, check with them if -debuginfo packages or variants are available. If your distributor does -not have debuginfo-equipped binaries at all, you may need to rebuild it. -

-

-
kernel debuginfo
-For scripts that target the kernel, systemtap may search for the -vmlinux - -file created during its original build. This is distinct from the -boot-loader's compressed/stripped -vmlinuz - -file, and much larger. If you have a hand-built kernel, make sure -it was built with the -CONFIG_DEBUG_INFO=y - -option. -

-

process debuginfo
-For scripts that target user-space, systemtap may search for debuginfo. -If you have hand-built binaries, use -CFLAGS=-g -O2 - -to compile them. -

-

-  -

AUTOMATION

- -

-On some platforms, systemtap may advise what commands to run, in order -to download needed debuginfo. Another possibility is to invoke systemtap -with the ---download-debuginfo - -flag. -The -stap-prep - -script included with systemtap may be able to download the -appropriate kernel debuginfo. Another possibility is to install and -use a -stap-server - -remote-compilation instance on a machine on your network, where -debuginfo and compilation resources can be centralized. Try the -stap --use-server - -option, in case such a server is already running. -

-  -

SEE ALSO

- -stap(1), - -stappaths(7), - -stap-server(8), - -strip(1), - -error::reporting(7stap) - -error::contextvars(7stap) - -

- -


- 

Index

-
-
NAME
-
DESCRIPTION
-
AUTOMATION
-
SEE ALSO
-
-
-This document was created by -man2html, -using the manual pages.
-Time: 09:58:21 GMT, March 20, 2013 - -