From owner-freebsd-bugs@FreeBSD.ORG Mon Sep 17 00:10:12 2012 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D604F106564A for ; Mon, 17 Sep 2012 00:10:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C14F08FC12 for ; Mon, 17 Sep 2012 00:10:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8H0ACLP050604 for ; Mon, 17 Sep 2012 00:10:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8H0AC9x050588; Mon, 17 Sep 2012 00:10:12 GMT (envelope-from gnats) Date: Mon, 17 Sep 2012 00:10:12 GMT Message-Id: <201209170010.q8H0AC9x050588@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Jan Beich Cc: Subject: Re: bin/171664: procstat(1): KVME_TYPE_SG (in TP column) is not documented X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jan Beich List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Sep 2012 00:10:12 -0000 The following reply was made to PR bin/171664; it has been noted by GNATS. From: Jan Beich To: jhb@freebsd.org Cc: bug-followup@freebsd.org Subject: Re: bin/171664: procstat(1): KVME_TYPE_SG (in TP column) is not documented Date: Sun, 16 Sep 2012 21:07:38 -0300 --=-=-= Content-Type: text/plain (oops, confused doc-bug with docs/ category) Jan Beich writes: >>Environment: > ref. http://svn.freebsd.org/changeset/base/195840 >>How-To-Repeat: > $ procstat -v $(pgrep firefox) | awk 'NR == 1 || $10 ~ /sg/' > PID START END PRT RES PRES REF SHD FL TP PATH > 90996 0x8017fb000 0x8017fc000 rw- 0 0 13 0 ---- sg John, how about the following trivial fix? --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=sg_desc.diff Index: usr.bin/procstat/procstat.1 =================================================================== --- usr.bin/procstat/procstat.1 (revision 240575) +++ usr.bin/procstat/procstat.1 (working copy) @@ -418,6 +418,8 @@ default device .It ph physical +.It sg +scatter/gather .It sw swap .It vn --=-=-=--