History log of /freebsd/usr.bin/ktrdump/ktrdump.c (Results 51 – 74 of 74)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: release/4.10.0_cvs, release/4.10.0
# 7d8c7fe1 22-May-2004 Robert Watson <rwatson@FreeBSD.org>

Add a "-r" flag to ktrdump(1) to print relative timestamps when used
with "-t" rather than absolute timestamps. This allows the reader
to get a better sense of latency between events, such as time t

Add a "-r" flag to ktrdump(1) to print relative timestamps when used
with "-t" rather than absolute timestamps. This allows the reader
to get a better sense of latency between events, such as time to
schedule an interrupt thread from time the interrupt occurred. Assert
a copyright on ktrdump.c since I seem to be modifying it more than I
thought.

show more ...


# 7ddc8937 21-May-2004 Robert Watson <rwatson@FreeBSD.org>

Add a quiet mode to ktrdump(1): if the "-q" flag is used, don't print
the pretty text header on top of the output. Simplifies feeding the
results of tracing into a script for mechanical processing.


# dd6cf019 21-May-2004 Robert Watson <rwatson@FreeBSD.org>

When the 'f' flag is passed to ktrdump(1), use 40 characters for the
"file and line" field consistently; previously, a 32-character field
length was used for the table header, which resulted in the h

When the 'f' flag is passed to ktrdump(1), use 40 characters for the
"file and line" field consistently; previously, a 32-character field
length was used for the table header, which resulted in the header
not lining up with the table.

show more ...


Revision tags: release/5.2.1_cvs, release/5.2.1
# feeb2580 15-Feb-2004 David Malone <dwmalone@FreeBSD.org>

Remove an unused variable.


Revision tags: release/5.2.0_cvs, release/5.2.0, release/4.9.0_cvs, release/4.9.0, release/5.1.0_cvs, release/5.1.0, release/4.8.0_cvs, release/4.8.0, release/5.0.0_cvs, release/5.0.0, release/4.7.0_cvs
# b241e69d 07-Oct-2002 Kris Kennaway <kris@FreeBSD.org>

Use strlcpy() instead of strcpy() to not overflow static buffers.


# cba1f1e0 22-Sep-2002 Jeff Roberson <jeff@FreeBSD.org>

- Add the -i option to read in a saved ktr file output by KTR_ALQ.


Revision tags: release/4.6.2_cvs, release/4.6.2, release/4.6.1, release/4.6.0_cvs
# d93b1f83 02-Apr-2002 Jake Burkholder <jake@FreeBSD.org>

1. Add missing include of stdint.h.
2. Fix reversed arguments to strcpy.

Noticed by: davidc (2)


# be6ba83a 01-Apr-2002 Jake Burkholder <jake@FreeBSD.org>

ktrdump is a utility to dump the ktr trace buffer from userland. It can
also be run on a core dump.


Revision tags: release/7.2.0_cvs, release/7.2.0
# 1829d5da 12-Mar-2009 Warner Losh <imp@FreeBSD.org>

Update the projects tree to a newer FreeBSD current.


# 612f2a05 21-Feb-2009 Xin LI <delphij@FreeBSD.org>

Remove unnecessary opt* definations.


Revision tags: release/7.1.0_cvs, release/7.1.0, release/6.4.0_cvs, release/6.4.0, release/7.0.0_cvs, release/7.0.0, release/6.3.0_cvs, release/6.3.0, release/6.2.0_cvs, release/6.2.0, release/5.5.0_cvs, release/5.5.0, release/6.1.0_cvs, release/6.1.0
# e5ed7bcc 12-Jan-2006 Gleb Smirnoff <glebius@FreeBSD.org>

Skip format flags, when parsing ktr_desc.


# ee574da5 09-Dec-2005 Nate Lawson <njl@FreeBSD.org>

Really fix the relative timestamp bug. It was only incorrect for the ALQ
case. It seems entries are in reverse order when read from the kernel
memory but in the right order when read from a file (i

Really fix the relative timestamp bug. It was only incorrect for the ALQ
case. It seems entries are in reverse order when read from the kernel
memory but in the right order when read from a file (i.e. ALQ). Handle
both cases.

MFC after: 1 day

show more ...


# c578cf5e 06-Dec-2005 Nate Lawson <njl@FreeBSD.org>

Fix -r flag to actually work. "now" comes after "then", not vice versa.

MFC after: 1 day


Revision tags: release/6.0.0_cvs, release/6.0.0
# 671cff5a 06-Jun-2005 Christian S.J. Peron <csjp@FreeBSD.org>

Append a newline character to the usage string.

MFC after: 3 days


# f682f10c 21-May-2005 Ruslan Ermilov <ru@FreeBSD.org>

Sync program's usage() with manpage's SYNOPSIS.


Revision tags: release/5.4.0_cvs, release/5.4.0, release/4.11.0_cvs, release/4.11.0, release/5.3.0_cvs, release/5.3.0
# c7f4c395 27-Sep-2004 Julian Elischer <julian@FreeBSD.org>

Don't use an uninitialised variable when reading from a ktr alq file.


Revision tags: release/4.10.0_cvs, release/4.10.0
# 7d8c7fe1 22-May-2004 Robert Watson <rwatson@FreeBSD.org>

Add a "-r" flag to ktrdump(1) to print relative timestamps when used
with "-t" rather than absolute timestamps. This allows the reader
to get a better sense of latency between events, such as time t

Add a "-r" flag to ktrdump(1) to print relative timestamps when used
with "-t" rather than absolute timestamps. This allows the reader
to get a better sense of latency between events, such as time to
schedule an interrupt thread from time the interrupt occurred. Assert
a copyright on ktrdump.c since I seem to be modifying it more than I
thought.

show more ...


# 7ddc8937 21-May-2004 Robert Watson <rwatson@FreeBSD.org>

Add a quiet mode to ktrdump(1): if the "-q" flag is used, don't print
the pretty text header on top of the output. Simplifies feeding the
results of tracing into a script for mechanical processing.


# dd6cf019 21-May-2004 Robert Watson <rwatson@FreeBSD.org>

When the 'f' flag is passed to ktrdump(1), use 40 characters for the
"file and line" field consistently; previously, a 32-character field
length was used for the table header, which resulted in the h

When the 'f' flag is passed to ktrdump(1), use 40 characters for the
"file and line" field consistently; previously, a 32-character field
length was used for the table header, which resulted in the header
not lining up with the table.

show more ...


Revision tags: release/5.2.1_cvs, release/5.2.1
# feeb2580 15-Feb-2004 David Malone <dwmalone@FreeBSD.org>

Remove an unused variable.


Revision tags: release/5.2.0_cvs, release/5.2.0, release/4.9.0_cvs, release/4.9.0, release/5.1.0_cvs, release/5.1.0, release/4.8.0_cvs, release/4.8.0, release/5.0.0_cvs, release/5.0.0, release/4.7.0_cvs
# b241e69d 07-Oct-2002 Kris Kennaway <kris@FreeBSD.org>

Use strlcpy() instead of strcpy() to not overflow static buffers.


# cba1f1e0 22-Sep-2002 Jeff Roberson <jeff@FreeBSD.org>

- Add the -i option to read in a saved ktr file output by KTR_ALQ.


Revision tags: release/4.6.2_cvs, release/4.6.2, release/4.6.1, release/4.6.0_cvs
# d93b1f83 02-Apr-2002 Jake Burkholder <jake@FreeBSD.org>

1. Add missing include of stdint.h.
2. Fix reversed arguments to strcpy.

Noticed by: davidc (2)


# be6ba83a 01-Apr-2002 Jake Burkholder <jake@FreeBSD.org>

ktrdump is a utility to dump the ktr trace buffer from userland. It can
also be run on a core dump.


123