Print this page
10520 Convert hdio(7I) to mandoc

@@ -1,125 +1,112 @@
-'\" te
 .\" Copyright (c) 2002, Sun Microsystems, Inc.
-.\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License").  You may not use this file except in compliance with the License.
-.\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing.  See the License for the specific language governing permissions and limitations under the License.
-.\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE.  If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
-.TH HDIO 7I "Aug 13, 2002"
-.SH NAME
-hdio \- SMD and IPI disk control operations
-.SH SYNOPSIS
-.LP
-.nf
-#include <sys/hdio.h>
-.fi
-
-.SH DESCRIPTION
-.LP
-Note -
-.sp
-.RS 2
-The SMC and IPI drivers have been discontinued. \fBdkio\fR(7I) is now the
-preferred method for retrieving disk information.
-.RE
-.sp
-.LP
+.\" Copyright (c) 2017, Joyent, Inc.
+.\" The contents of this file are subject to the terms of the
+.\" Common Development and Distribution License (the "License").
+.\" You may not use this file except in compliance with the License.
+.\"
+.\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
+.\" or http://www.opensolaris.org/os/licensing.
+.\" See the License for the specific language governing permissions
+.\" and limitations under the License.
+.\"
+.\" When distributing Covered Code, include this CDDL HEADER in each
+.\" file and include the License file at usr/src/OPENSOLARIS.LICENSE.
+.\" If applicable, add the following below this CDDL HEADER, with the
+.\" fields enclosed by brackets "[]" replaced with your own identifying
+.\" information: Portions Copyright [yyyy] [name of copyright owner]
+.Dd October 23, 2017
+.Dt HDIO 7I
+.Os
+.Sh NAME
+.Nm hdio
+.Nd SMD and IPI disk control operations
+.Sh SYNOPSIS
+.In sys/hdio.h
+.Sh DESCRIPTION
+Note \(em the SMC and IPI drivers have been discontinued.
+.Xr dkio 7I
+is now the preferred method for retrieving disk information.
+.Pp
 The SMD and IPI disk drivers supplied with this release support a set of
-\fBioctl\fR(2) requests for diagnostics and bad sector information. Basic to
-these  \fBioctl()\fR requests are the definitions in <\fBsys/hdio.h\fR>.
-.SH IOCTLS
-.sp
-.ne 2
-.na
-\fB\fBHDKIOCGTYPE\fR\fR
-.ad
-.RS 15n
-The argument is a pointer to a \fBhdk_type\fR structure (described below).
-This \fBioctl()\fR gets specific information from the hard disk.
-.RE
-
-.sp
-.ne 2
-.na
-\fB\fBHDKIOCSTYPE\fR\fR
-.ad
-.RS 15n
-The argument is a pointer to a \fBhdk_type\fR structure (described below).
-This \fBioctl()\fR sets specific information about the hard disk.
-.RE
-
-.sp
-.in +2
-.nf
+.Xr ioctl 2
+requests for diagnostics and bad sector information.
+Basic to these
+.Xr ioctl 2
+requests are the definitions in
+.In sys/hdio.h .
+.Sh IOCTLS
+.Bl -tag -width HDKIOCGTYPE
+.It Dv HDKIOCGTYPE
+The argument is a pointer to a
+.Vt hdk_type
+structure (described below).
+This
+.Xr ioctl 2
+gets specific information from the hard disk.
+.It Dv HDKIOCSTYPE
+The argument is a pointer to a
+.Vt hdk_type
+structure (described below).
+This
+.Xr ioctl 2
+sets specific information about the hard disk.
+.El
+.Bd -literal -offset 2n
 /*
  * Used for drive info
  */
 struct hdk_type {
  ushort_t  hdkt_hsect;    /* hard sector count (read only) */
  ushort_t  hdkt_promrev;  /* prom revision (read only) */
  uchar_t   hdkt_drtype;   /* drive type (ctlr specific) */
  uchar_t   hdkt_drstat;   /* drive status (ctlr specific, ro) */
 };
-.fi
-.in -2
-
-.sp
-.ne 2
-.na
-\fB\fBHDKIOCGBAD\fR\fR
-.ad
-.RS 14n
-The argument is a pointer to a \fBhdk_badmap\fR structure (described below).
-This \fBioctl()\fR is used to get the bad sector map from the disk.
-.RE
-
-.sp
-.ne 2
-.na
-\fB\fBHDKIOCSBAD\fR\fR
-.ad
-.RS 14n
-The argument is a pointer to a \fBhdk_badmap\fR structure (described below).
-This \fBioctl()\fR is used to set the bad sector map on the disk.
-.RE
-
-.sp
-.in +2
-.nf
+.Ed
+.Bl -tag -width HDKIOCGBAD
+.It Dv HDKIOCGBAD
+The argument is a pointer to a
+.Vt hdk_badmap
+structure (described below).
+This
+.Xr ioctl 2
+is used to get the bad sector map from the disk.
+.It Dv HDKIOCSBAD
+The argument is a pointer to a
+.Vt hdk_badmap
+structure (described below).
+This
+.Xr ioctl 2
+is used to set the bad sector map on the disk.
+.El
+.Bd -literal -offset 2n
 /*
  * Used for bad sector map
  */
 struct hdk_badmap {
         caddr_t hdkb_bufaddr;   /* address of user's map buffer */
 };
-.fi
-.in -2
-
-.sp
-.ne 2
-.na
-\fB\fBHDKIOCGDIAG\fR\fR
-.ad
-.RS 15n
-The argument is a pointer to a \fBhdk_diag\fR structure (described below).
-This \fBioctl()\fR gets the most recent command that failed along with the
+.Ed
+.Bl -tag -width HDKIOCGDIAG
+.It Dv HDKIOCGDIAG
+The argument is a pointer to a
+.Vt hdk_diag
+structure (described below).
+This
+.Xr ioctl 2
+gets the most recent command that failed along with the
 sector and error number from the hard disk.
-.RE
-
-.sp
-.in +2
-.nf
+.El
+.Bd -literal -offset 2n
 /*
  * Used for disk diagnostics
  */
 struct hdk_diag {
  ushort_t       hdkd_errcmd;  /* most recent command in error */
  daddr_t        hdkd_errsect; /* most recent sector in error */
  uchar_t        hdkd_errno;   /* most recent error number */
  uchar_t        hdkd_severe;  /* severity of most recent error */
 };
-.fi
-.in -2
-
-.SH SEE ALSO
-.sp
-.LP
-\fBioctl\fR(2), \fBdkio\fR(7I)
+.Ed
+.Sh SEE ALSO
+.Xr ioctl 2 ,
+.Xr dkio 7I