From owner-svn-soc-all@FreeBSD.ORG Thu Aug 18 17:50:57 2011 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id 60EDE1065688 for ; Thu, 18 Aug 2011 17:50:55 +0000 (UTC) (envelope-from oleksandr@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Thu, 18 Aug 2011 17:50:55 +0000 Date: Thu, 18 Aug 2011 17:50:55 +0000 From: oleksandr@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20110818175055.60EDE1065688@hub.freebsd.org> Cc: Subject: socsvn commit: r225240 - soc2011/oleksandr/oleksandr-head/head/share/man/man9 X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Aug 2011 17:50:57 -0000 Author: oleksandr Date: Thu Aug 18 17:50:55 2011 New Revision: 225240 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=225240 Log: Some change in man devstat(9) Modified: soc2011/oleksandr/oleksandr-head/head/share/man/man9/devstat.9 Modified: soc2011/oleksandr/oleksandr-head/head/share/man/man9/devstat.9 ============================================================================== --- soc2011/oleksandr/oleksandr-head/head/share/man/man9/devstat.9 Thu Aug 18 16:57:51 2011 (r225239) +++ soc2011/oleksandr/oleksandr-head/head/share/man/man9/devstat.9 Thu Aug 18 17:50:55 2011 (r225240) @@ -391,16 +391,18 @@ Statistics of disk errors determined by the following parameters: .Bd -literal -offset indent typedef enum { - DEVSTAT_ERROR_RETRIABLE = 0x001, - DEVSTAT_ERROR_NON_RETRIABLE = 0x002, - DEVSTAT_ERROR_READ_ERROR = 0x004, - DEVSTAT_ERROR_WRITE_ERROR = 0x008, - DEVSTAT_ERROR_OTHER_ERROR = 0x010, - DEVSTAT_ERROR_RECOVERABLE = 0x020, - DEVSTAT_ERROR_NOT_READY = 0x040, - DEVSTAT_ERROR_MEDIA_ERROR = 0x080, - DEVSTAT_ERROR_HARDWARE = 0x100, - DEVSTAT_ERROR_ILLEGAL_REQ = 0x200 + DEVSTAT_ERROR_RETRIABLE = 0x001, + DEVSTAT_ERROR_NON_RETRIABLE = 0x002, + DEVSTAT_ERROR_READ_ERROR = 0x004, + DEVSTAT_ERROR_WRITE_ERROR = 0x008, + DEVSTAT_ERROR_OTHER_ERROR = 0x010, + DEVSTAT_ERROR_RECOVERABLE = 0x020, + DEVSTAT_ERROR_NOT_READY = 0x040, + DEVSTAT_ERROR_MEDIA_ERROR = 0x080, + DEVSTAT_ERROR_HARDWARE = 0x100, + DEVSTAT_ERROR_ILLEGAL_REQ = 0x200, + DEVSTAT_ERROR_UNIT_ATTENTION = 0x400, + DEVSTAT_ERROR_ABORTED_COMMAND = 0x800 } devstat_error_flags; .Ed .Pp @@ -419,6 +421,8 @@ int media_error; int hardware; int illegal_req; + int unit_attention; + int aborted_command; } devstat_device_error; .Ed .Pp