Skip to content
Snippets Groups Projects
Commit 8e0f06e2 authored by ballen4705's avatar ballen4705
Browse files

[BA] smartd/smartctl added attribute 230 Head Amplitude from

  IBM DPTA-353750.


git-svn-id: https://smartmontools.svn.sourceforge.net/svnroot/smartmontools/trunk@352 4ea69e1a-61f1-4043-bf83-b5c94c648137
parent c98355fe
No related branches found
No related tags found
No related merge requests found
CHANGELOG for smartmontools CHANGELOG for smartmontools
$Id: CHANGELOG,v 1.65 2002/12/01 23:24:00 pjwilliams Exp $ $Id: CHANGELOG,v 1.66 2002/12/04 14:17:51 ballen4705 Exp $
Copyright (C) 2002 Bruce Allen <smartmontools-support@lists.sourceforge.net> Copyright (C) 2002 Bruce Allen <smartmontools-support@lists.sourceforge.net>
...@@ -32,6 +32,9 @@ NOTES FOR FUTURE RELEASES: see TODO file. ...@@ -32,6 +32,9 @@ NOTES FOR FUTURE RELEASES: see TODO file.
CURRENT RELEASE (see VERSION file in this directory): CURRENT RELEASE (see VERSION file in this directory):
[BA] smartd/smartctl added attribute 230 Head Amplitude from
IBM DPTA-353750.
[PW] Added list of proposed new options for smartctl to README. [PW] Added list of proposed new options for smartctl to README.
[PW] smartd: ParseOpts() now uses getopt_long() if HAVE_GETOPT_LONG is [PW] smartd: ParseOpts() now uses getopt_long() if HAVE_GETOPT_LONG is
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
#include <stdlib.h> #include <stdlib.h>
#include "atacmds.h" #include "atacmds.h"
const char *CVSid1="$Id: atacmds.c,v 1.43 2002/11/26 12:37:12 ballen4705 Exp $" CVSID1; const char *CVSid1="$Id: atacmds.c,v 1.44 2002/12/04 14:17:51 ballen4705 Exp $" CVSID1;
// These Drive Identity tables are taken from hdparm 5.2, and are also // These Drive Identity tables are taken from hdparm 5.2, and are also
// given in the ATA/ATAPI specs for the IDENTIFY DEVICE command. Note // given in the ATA/ATAPI specs for the IDENTIFY DEVICE command. Note
...@@ -832,6 +832,10 @@ void ataPrintSmartAttribName(char *out, unsigned char id){ ...@@ -832,6 +832,10 @@ void ataPrintSmartAttribName(char *out, unsigned char id){
case 228: case 228:
name="Power-off_Retract_Count"; name="Power-off_Retract_Count";
break; break;
case 230:
// seen in IBM DTPA-353750
name="Head Amplitude";
break;
case 231: case 231:
name="Temperature_Celsius"; name="Temperature_Celsius";
break; break;
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
#include <stdlib.h> #include <stdlib.h>
#include "atacmds.h" #include "atacmds.h"
const char *CVSid1="$Id: atacmds.cpp,v 1.43 2002/11/26 12:37:12 ballen4705 Exp $" CVSID1; const char *CVSid1="$Id: atacmds.cpp,v 1.44 2002/12/04 14:17:51 ballen4705 Exp $" CVSID1;
// These Drive Identity tables are taken from hdparm 5.2, and are also // These Drive Identity tables are taken from hdparm 5.2, and are also
// given in the ATA/ATAPI specs for the IDENTIFY DEVICE command. Note // given in the ATA/ATAPI specs for the IDENTIFY DEVICE command. Note
...@@ -832,6 +832,10 @@ void ataPrintSmartAttribName(char *out, unsigned char id){ ...@@ -832,6 +832,10 @@ void ataPrintSmartAttribName(char *out, unsigned char id){
case 228: case 228:
name="Power-off_Retract_Count"; name="Power-off_Retract_Count";
break; break;
case 230:
// seen in IBM DTPA-353750
name="Head Amplitude";
break;
case 231: case 231:
name="Temperature_Celsius"; name="Temperature_Celsius";
break; break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment