Custom Query (1359 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (7 - 9 of 1359)

1 2 3 4 5 6 7 8 9 10 11 12 13
Ticket Resolution Summary Owner Reporter
#20 fixed weird byte order of "Head Flying Hours" Christian Franke stlman
Description

I've bought a brand new 1T Seagate drive yesterday.

kotik tmp # dmesg | grep ST31
[    0.834822] ata1.00: ATA-8: ST31000528AS, CC35, max UDMA/133
[    0.847168] scsi 0:0:0:0: Direct-Access     ATA      ST31000528AS     CC35 PQ: 0 ANSI: 5

I was quite surprised to see its Head_Flying_Hours to be some n-teen digit number when I first run smartctl on it, however, Power_On_Hours value was sane. To be sure that everything is ok with my eyes I ran smrtctl again. This time the value was completely different although of the same order of magnitude. After quick investigation it became quite obvious that there is something wrong with the byte order of the raw value

kotik tmp # smartctl -d ata  -A  /dev/sda  | grep ^240
240 Head_Flying_Hours       0x0000   100   253   000    Old_age   Offline      -       102838696935451
kotik tmp # printf "%x\n" 102838696935451
5d880000001b

When I read the values with my programme (see attachment) I found that one of the bytes of the value is stored in the reserv field of the ata_smart_attribute structure. The right order to read the value seems to be

raw[3], raw[2], raw[1], raw[0], reserv, raw[5], raw[4]

However, I am not sure about more significant bytes (raw[1-3]).

The value itself is almost for sure number of milliseconds.

#275 worksforme vc10 project file missing files somebody bitbo
Description

The project file:

os_win32\vc10\smartctl.vcxproj

is missing:

config.h config.h.in svnversion.h os_win32\smartctl_res.rc os_win32\smartd_res.rc

#7 fixed usb device types are not exported to the help Christian Franke Alex Samorukov
Description

there is no usb device types (usbsunplus, etc.) in the smartctl -h output. smart_interface::get_valid_dev_types_str should be corrected?

1 2 3 4 5 6 7 8 9 10 11 12 13
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.