svn commit: r326778 - stable/11/sbin/camcontrol
Alan Somers
asomers at FreeBSD.org
Mon Dec 11 20:24:31 UTC 2017
Author: asomers
Date: Mon Dec 11 20:24:29 2017
New Revision: 326778
URL: https://svnweb.freebsd.org/changeset/base/326778
Log:
MFC r326032:
Print ZAC device type in "camcontrol identify" output
ZAC (Zoned-device ATA Command set) is the standard for addressing SMR
(shingled magnetic recording) devices over SATA. Drives indicate their
support for ZAC in their IDENTIFY block. Print whether and how a drive
supports ZAC in the output of "camcontrol identify".
Reviewed by: ken, imp
Sponsored by: Spectra Logic Corp
Differential Revision: https://reviews.freebsd.org/D13171
Modified:
stable/11/sbin/camcontrol/camcontrol.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sbin/camcontrol/camcontrol.c
==============================================================================
--- stable/11/sbin/camcontrol/camcontrol.c Mon Dec 11 20:21:35 2017 (r326777)
+++ stable/11/sbin/camcontrol/camcontrol.c Mon Dec 11 20:24:29 2017 (r326778)
@@ -1391,6 +1391,18 @@ atacapprint(struct ata_params *parm)
parm->media_rotation_rate);
}
+ printf("Zoned-Device Commands ");
+ switch (parm->support3 & ATA_SUPPORT_ZONE_MASK) {
+ case ATA_SUPPORT_ZONE_DEV_MANAGED:
+ printf("device managed\n");
+ break;
+ case ATA_SUPPORT_ZONE_HOST_AWARE:
+ printf("host aware\n");
+ break;
+ default:
+ printf("no\n");
+ }
+
printf("\nFeature "
"Support Enabled Value Vendor\n");
printf("read ahead %s %s\n",
More information about the svn-src-stable
mailing list