diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2007-03-18 15:27:57 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2007-03-18 15:27:57 +0000 |
commit | 731c6572252685a2735077ed1a5d2aaed07d548b (patch) | |
tree | cc262135adc8b4e77498d17befee55fff7f1bdce | |
parent | e34e0e89862b59b274755b5595c64a5989dae0c4 (diff) |
document show buf|vnode|mount
-rw-r--r-- | share/man/man4/ddb.4 | 56 |
1 files changed, 55 insertions, 1 deletions
diff --git a/share/man/man4/ddb.4 b/share/man/man4/ddb.4 index ab95f8ac2a9..1a49f10cb58 100644 --- a/share/man/man4/ddb.4 +++ b/share/man/man4/ddb.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: ddb.4,v 1.49 2007/03/15 17:10:20 miod Exp $ +.\" $OpenBSD: ddb.4,v 1.50 2007/03/18 15:27:56 mickey Exp $ .\" $NetBSD: ddb.4,v 1.5 1994/11/30 16:22:09 jtc Exp $ .\" .\" Mach Operating System @@ -598,6 +598,21 @@ Prints a list of all breakpoints that have been set with the .Ic break command. .\" -------------------- +.It Xo +.Ic show buf +.Op Cm /f +.Ar addr +.Xc +Prints the +.Li struct buf +at +.Ar addr . +If the +.Cm /f +modifier is specified output will also include +.Li softdep +printout, if those are available. +.\" -------------------- .It Ic show extents Prints a detailed list of all extents. .\" -------------------- @@ -620,6 +635,27 @@ If the modifier is specified the complete map is printed. .\" -------------------- .It Xo +.Ic show mount +.Op Cm /f +.Ar addr +.Xc +Prints the +.Li struct mount +at +.Ar addr . +If the +.Cm /f +modifier is specified prints out all +.Li vnodes +(see also +.Cm show vnode ) +and also all +.Li bufs +(see also +.Cm show buf ) +on all those vnodes. +.\" -------------------- +.It Xo .Ic show object .Op Cm /f .Ar addr @@ -690,6 +726,24 @@ incorrect information may be displayed. .It Ic show uvmexp Displays a selection of uvm counters and statistics. .\" -------------------- +.It Xo +.Ic show vnode +.Op Cm /f +.Ar addr +.Xc +Prints the +.Li struct vnode +at +.Ar addr . +If the +.Cm /f +prints all +.Li bufs +(see also +.Cm show buf ) +currently attached to this +.Li vnode . +.\" -------------------- .It Ic show watches Displays all watchpoints set with the .Ic watch |