Custom Query (1434 matches)
Results (280 - 282 of 1434)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#294 | worksforme | what is difference between 6.1 and 5.38 | ||
Description |
Greetings!
it reported fail problem on “Log Sense failed, IE page [scsi response fails sanity test]”.looks like it is due to pBuf is not equal to pagenum
for detail error messages and related source code is below line300:pagenum:0x2f line302:pBuf[0]:0xaf line302:pBuf[1]:0x00 line302:pBuf[2]:0x00 line302:pBuf[3]:0x0c Source code. /* sanity check on response */
|
|||
#295 | fixed | new usb vendor/product id (works) Unknown USB bridge [0x13fd:0x1640 (0x864)] | ||
Description |
Hello, I just tried out smartctl on my external USB drive enclosure. The device is actually very, very far away from me so unfortunately I cannot say what the brand name or model is but in any case it works (at least smartctl -a). sudo smartctl -a /dev/sdc smartctl 5.43 2012-06-30 r3573 [x86_64-linux-3.8.0-30-generic] (local build) Copyright (C) 2002-12 by Bruce Allen, http://smartmontools.sourceforge.net /dev/sdc: Unknown USB bridge [0x13fd:0x1640 (0x864)] Smartctl: please specify device type with the -d option. Use smartctl -h to get a usage summary and then: sudo smartctl -d sat,12 -a /dev/sdc smartctl 5.43 2012-06-30 r3573 [x86_64-linux-3.8.0-30-generic] (local build) Copyright (C) 2002-12 by Bruce Allen, http://smartmontools.sourceforge.net START OF INFORMATION SECTIONModel Family: Hitachi Ultrastar A7K1000 Device Model: Hitachi HUA721010KLA330 Serial Number: GTA000PAG632ZA LU WWN Device Id: 5 000cca 216c2c5d9 Firmware Version: GKAOA70M User Capacity: 1,000,204,886,016 bytes [1.00 TB] Sector Size: 512 bytes logical/physical Device is: In smartctl database [for details use: -P show] ATA Version is: 7 ATA Standard is: ATA/ATAPI-7 T13 1532D revision 1 Local Time is: Tue Sep 24 20:28:49 2013 CDT SMART support is: Available - device has SMART capability. SMART support is: Enabled Error SMART Values Read failed: Input/output error Smartctl: SMART Read Values failed. START OF READ SMART DATA SECTIONSMART overall-health self-assessment test result: UNKNOWN! SMART Status, Attributes and Thresholds cannot be read. SMART Error Log Version: 1 ATA Error Count: 36 (device log contains only the most recent five errors)
Powered_Up_Time is measured from power on, and printed as DDd+hh:mm:SS.sss where DD=days, hh=hours, mm=minutes, SS=sec, and sss=millisec. It "wraps" after 49.710 days. Error 36 occurred at disk power-on lifetime: 50757 hours (2114 days + 21 hours)
Error 35 occurred at disk power-on lifetime: 50757 hours (2114 days + 21 hours)
Error 34 occurred at disk power-on lifetime: 50757 hours (2114 days + 21 hours)
Error 33 occurred at disk power-on lifetime: 50757 hours (2114 days + 21 hours)
Error 32 occurred at disk power-on lifetime: 50757 hours (2114 days + 21 hours)
SMART Self-test log structure revision number 1 No self-tests have been logged. [To run self-tests, use: smartctl -t] SMART Selective self-test log data structure revision number 1
Selective self-test flags (0x0):
If Selective self-test is pending on power-up, resume after 0 minute delay. |
|||
#296 | fixed | Support SAT ATA PASS-THROUGH fixed format sense data | ||
Description |
ATA commands like SMART RETURN STATUS ( SAT-1 and older SAT-2 revisions define that the ATA PASS-THROUGH commands always return descriptor format sense data (with ATA Return descriptor) and never return fixed format sense data. This violates the SPC-4 requirement that the sense data format is controlled by the D_SENSE bit in the Control mode page. Older SCSI layers expecting fixed format may truncate the ATA Return descriptor. Newer versions of SAT define a fixed (D_SENSE=0) sense data format for the ATA PASS-THROUGH commands. It returns the lower (28-bit command) parts of the ATA output registers and "nonzero" flags for the upper output registers. The SATL may provide the optional ATA PASS-THROUGH Results log page to read the full result. See T10/08-344r2. scsiata.cpp should be enhanced to detect the new fixed format sense data. |