2002-04-02 04:26:37 +00:00
|
|
|
.\"-
|
|
|
|
.\" Copyright (c) 2002 Chad David
|
|
|
|
.\" All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
.\" SUCH DAMAGE.
|
|
|
|
.\"
|
|
|
|
.\" $FreeBSD$
|
|
|
|
.\"
|
2015-02-06 19:41:23 +00:00
|
|
|
.Dd February 6, 2015
|
2002-04-02 04:26:37 +00:00
|
|
|
.Dt KTRDUMP 8
|
|
|
|
.Os
|
|
|
|
.Sh NAME
|
|
|
|
.Nm ktrdump
|
|
|
|
.Nd print kernel ktr trace buffer
|
|
|
|
.Sh SYNOPSIS
|
|
|
|
.Nm
|
2011-01-26 06:36:14 +00:00
|
|
|
.Op Fl cfqrtH
|
2005-03-08 06:58:56 +00:00
|
|
|
.Op Fl i Ar ktrfile
|
2015-02-06 19:41:23 +00:00
|
|
|
.Op Fl M Ar core
|
|
|
|
.Op Fl N Ar system
|
2002-04-02 04:26:37 +00:00
|
|
|
.Op Fl o Ar outfile
|
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
|
|
|
.Nm
|
2002-07-14 15:12:00 +00:00
|
|
|
utility is used to dump the contents of the kernel ktr trace buffer.
|
2002-04-02 04:26:37 +00:00
|
|
|
.Pp
|
|
|
|
The following options are available:
|
2015-02-06 19:41:23 +00:00
|
|
|
.Bl -tag -width ".Fl i Ar ktrfile"
|
2002-04-02 04:26:37 +00:00
|
|
|
.It Fl c
|
2002-05-30 13:52:18 +00:00
|
|
|
Print the CPU number that each entry was logged from.
|
2002-04-02 04:26:37 +00:00
|
|
|
.It Fl f
|
|
|
|
Print the file and line number that each entry was logged from.
|
2004-05-21 21:24:58 +00:00
|
|
|
.It Fl q
|
2004-07-07 19:57:16 +00:00
|
|
|
Quiet mode; do not print the column header.
|
2004-05-22 08:26:10 +00:00
|
|
|
.It Fl r
|
|
|
|
Print relative timestamps rather than absolute timestamps.
|
2002-04-02 04:26:37 +00:00
|
|
|
.It Fl t
|
|
|
|
Print the timestamp for each entry.
|
2011-01-26 06:36:14 +00:00
|
|
|
.It Fl H
|
|
|
|
Print the thread ID for each entry.
|
2005-03-08 06:58:56 +00:00
|
|
|
.It Fl i Ar ktrfile
|
|
|
|
File containing saved ktr trace events; for more information see the
|
|
|
|
.Xr ktr 4
|
|
|
|
manual page.
|
2015-02-06 19:41:23 +00:00
|
|
|
.It Fl N Ar system
|
2002-04-02 04:26:37 +00:00
|
|
|
The kernel image to resolve symbols from.
|
|
|
|
The default is the value returned via
|
|
|
|
.Xr getbootfile 3 .
|
2015-02-06 19:41:23 +00:00
|
|
|
.It Fl M Ar core
|
2002-04-02 04:26:37 +00:00
|
|
|
The core file or memory image to read from.
|
|
|
|
The default is
|
|
|
|
.Pa /dev/mem .
|
|
|
|
.It Fl o Ar outfile
|
|
|
|
The file to write the output to.
|
2002-05-30 13:52:18 +00:00
|
|
|
The default is standard output.
|
2002-04-02 04:26:37 +00:00
|
|
|
.El
|
|
|
|
.Sh SEE ALSO
|
|
|
|
.Xr ktr 4 ,
|
|
|
|
.Xr ktr 9
|
|
|
|
.Sh HISTORY
|
|
|
|
The
|
|
|
|
.Nm
|
2002-07-14 15:12:00 +00:00
|
|
|
utility first appeared in
|
2002-04-02 04:26:37 +00:00
|
|
|
.Fx 5.0 .
|
|
|
|
.Sh AUTHORS
|
|
|
|
.An -nosplit
|
|
|
|
The
|
|
|
|
.Nm
|
2002-07-14 15:12:00 +00:00
|
|
|
utility was implemented by
|
2014-06-23 08:23:05 +00:00
|
|
|
.An Jake Burkholder Aq Mt jake@FreeBSD.org .
|
2002-04-02 04:26:37 +00:00
|
|
|
.Pp
|
|
|
|
This manual page was written by
|
2014-06-23 08:23:05 +00:00
|
|
|
.An Chad David Aq Mt davidc@FreeBSD.org .
|