Bug 893226 - incorrect display of smart details on OCZ Vector SSD
Summary: incorrect display of smart details on OCZ Vector SSD
Keywords:
Status: CLOSED WONTFIX
Alias: None
Product: Fedora
Classification: Fedora
Component: smartmontools
Version: 18
Hardware: Unspecified
OS: Unspecified
unspecified
unspecified
Target Milestone: ---
Assignee: Michal Hlavinka
QA Contact: Fedora Extras Quality Assurance
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2013-01-08 23:57 UTC by Dave Jones
Modified: 2015-01-04 22:31 UTC (History)
4 users (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2014-02-05 14:36:08 UTC
Type: Bug
Embargoed:


Attachments (Terms of Use)

Description Dave Jones 2013-01-08 23:57:07 UTC
smartctl -a shows this..

smartctl 5.43 2012-06-30 r3573 [x86_64-linux-3.6.11-3.fc18.x86_64] (local build)
Copyright (C) 2002-12 by Bruce Allen, http://smartmontools.sourceforge.net

=== START OF INFORMATION SECTION ===
Device Model:     OCZ-VECTOR
Serial Number:    OCZ-VAJP8T96ZHEMPPU7
LU WWN Device Id: 5 e83a97 a3bbfb798
Firmware Version: 1.03
User Capacity:    128,035,676,160 bytes [128 GB]
Sector Size:      512 bytes logical/physical
Device is:        Not in smartctl database [for details use: -P showall]
ATA Version is:   8
ATA Standard is:  Exact ATA specification draft version not indicated
Local Time is:    Tue Jan  8 18:53:00 2013 EST
SMART support is: Available - device has SMART capability.
SMART support is: Enabled

=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED

General SMART Values:
Offline data collection status:  (0x00)	Offline data collection activity
					was never started.
					Auto Offline Data Collection: Disabled.
Self-test execution status:      (   0)	The previous self-test routine completed
					without error or no self-test has ever 
					been run.
Total time to complete Offline 
data collection: 		(    0) seconds.
Offline data collection
capabilities: 			 (0x1d) SMART execute Offline immediate.
					No Auto Offline data collection support.
					Abort Offline collection upon new
					command.
					Offline surface scan supported.
					Self-test supported.
					No Conveyance Self-test supported.
					No Selective Self-test supported.
SMART capabilities:            (0x0003)	Saves SMART data before entering
					power-saving mode.
					Supports SMART auto save timer.
Error logging capability:        (0x00)	Error logging NOT supported.
					General Purpose Logging supported.
Short self-test routine 
recommended polling time: 	 (   0) minutes.
Extended self-test routine
recommended polling time: 	 (   0) minutes.

SMART Attributes Data Structure revision number: 18
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME          FLAG     VALUE WORST THRESH TYPE      UPDATED  WHEN_FAILED RAW_VALUE
  5 Reallocated_Sector_Ct   0x0000   000   000   000    Old_age   Offline      -       0
  9 Power_On_Hours          0x0000   100   100   000    Old_age   Offline      -       9
 12 Power_Cycle_Count       0x0000   100   100   000    Old_age   Offline      -       14
171 Unknown_Attribute       0x0000   007   007   000    Old_age   Offline      -       7
174 Unknown_Attribute       0x0000   100   100   000    Old_age   Offline      -       3
187 Reported_Uncorrect      0x0000   100   100   000    Old_age   Offline      -       0
195 Hardware_ECC_Recovered  0x0000   100   100   000    Old_age   Offline      -       0
196 Reallocated_Event_Count 0x0000   100   100   000    Old_age   Offline      -       0
197 Current_Pending_Sector  0x0000   100   100   000    Old_age   Offline      -       0
198 Offline_Uncorrectable   0x0000   100   100   000    Old_age   Offline      -       24
199 UDMA_CRC_Error_Count    0x0000   100   100   000    Old_age   Offline      -       43
208 Spin_Buzz               0x0000   100   100   000    Old_age   Offline      -       25
210 Unknown_Attribute       0x0000   100   100   000    Old_age   Offline      -       0
233 Media_Wearout_Indicator 0x0000   100   100   000    Old_age   Offline      -       100
249 Unknown_Attribute       0x0000   100   100   000    Old_age   Offline      -       2953113

Warning! SMART ATA Error Log Structure error: invalid SMART checksum.
SMART Error Log Version: 1
No Errors Logged

Warning! SMART Self-Test Log Structure error: invalid SMART checksum.
SMART Self-test log structure revision number 1
No self-tests have been logged.  [To run self-tests, use: smartctl -t]


Device does not support Selective Self Tests/Logging


The line that caught my eye of course is..

198 Offline_Uncorrectable   0x0000   100   100   000    Old_age   Offline      -       24

This is triggering smartd to log ...
Jan  8 18:34:14 t430s smartd[560]: Device: /dev/sda [SAT], 24 Offline uncorrectable sectors

every half hour

Turns out that I can cause that number to go up very quickly just by doing

dd if=/dev/sda of=/dev/null

From reading one of the posts at http://www.myce.com/review/ocz-vector-ssd-review-64988/IOMeter-test-results-5/ it seems this counter is actually "Host reads (GB)" which seems to make sense.

Looks like smartctl needs a database entry for this device.

Comment 1 Michal Hlavinka 2013-01-10 16:02:15 UTC
Please test this update:
https://admin.fedoraproject.org/updates/smartmontools-6.0-2.fc18

If your disk is not in database:
> === START OF INFORMATION SECTION ===
> Device Model:     OCZ-VECTOR
...
> Device is:        Not in smartctl database [for details use: -P showall]

try updating drive database by executing:
update-smart-drivedb

if it does not help, then there is no record in upstream repository and it will have to be added. Then please follow these steps:
http://sourceforge.net/apps/trac/smartmontools/wiki/FAQ#MyATAdriveisnotinthesmartctlsmartddatabase

and send that information to email address from that link or attach it here and I'll do it.

Thanks

Comment 2 Christian Franke 2013-02-08 18:21:28 UTC
OCZ Vector was added 2013-01-23 to upstream drivedb.h:
http://sourceforge.net/apps/trac/smartmontools/changeset/3752
http://sourceforge.net/apps/trac/smartmontools/changeset/3753

Please run /usr/sbin/update-smart-drivedb and report the test result.

Comment 3 Dave Jones 2013-02-10 03:20:33 UTC
yes, works after updating.

Comment 4 Fedora End Of Life 2013-12-21 10:16:19 UTC
This message is a reminder that Fedora 18 is nearing its end of life.
Approximately 4 (four) weeks from now Fedora will stop maintaining
and issuing updates for Fedora 18. It is Fedora's policy to close all
bug reports from releases that are no longer maintained. At that time
this bug will be closed as WONTFIX if it remains open with a Fedora 
'version' of '18'.

Package Maintainer: If you wish for this bug to remain open because you
plan to fix it in a currently maintained version, simply change the 'version' 
to a later Fedora version prior to Fedora 18's end of life.

Thank you for reporting this issue and we are sorry that we may not be 
able to fix it before Fedora 18 is end of life. If you would still like 
to see this bug fixed and are able to reproduce it against a later version 
of Fedora, you are encouraged  change the 'version' to a later Fedora 
version prior to Fedora 18's end of life.

Although we aim to fix as many bugs as possible during every release's 
lifetime, sometimes those efforts are overtaken by events. Often a 
more recent Fedora release includes newer upstream software that fixes 
bugs or makes them obsolete.

Comment 5 Fedora End Of Life 2014-02-05 14:36:12 UTC
Fedora 18 changed to end-of-life (EOL) status on 2014-01-14. Fedora 18 is
no longer maintained, which means that it will not receive any further
security or bug fix updates. As a result we are closing this bug.

If you can reproduce this bug against a currently maintained version of
Fedora please feel free to reopen this bug against that version. If you
are unable to reopen this bug, please file a new report against the
current release. If you experience problems, please add a comment to this
bug.

Thank you for reporting this bug and we are sorry it could not be fixed.


Note You need to log in before you can comment on or make changes to this bug.