Custom Query (1415 matches)
Results (271 - 273 of 1415)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#673 | fixed | Add to database - KINGSTON SKC400S37128G (SSDNow KC400) | ||
Description |
The SMART attributes are specified in this PDF: http://media.kingston.com/support/downloads/MKP_521_Phison_SMART_attribute.pdf Attribute 231 "SSD Life Left" 0-100% would be very good to have defined in the db. |
|||
#674 | fixed | Add to database - SanDisk-SDSSDA240G (SanDisk SSD PLUS) | ||
Description |
SMART Attributes show in smart.jpg from SanDisk SSD Dashboard. |
|||
#677 | fixed | Windows sometimes spins up a disk even when “-n standby” is used | ||
Description |
I observed that when smartd is polling for SMART data, Windows sometimes spins up a disk that is powered down even when “-n standby” is used in smartd.conf. The log will report that the disk is in standby mode and checks are suspended. Still you can hear that the disk is starting. I found that this behavior is caused by smartd when opening the (physical) disk device. Smartd opens the disk asking for full read and write permissions by default. (Only when it does not have admin rights, it opens the disk with ‘0’ permissions.) But opening with full read and write permissions sometimes results in Windows spinning up the disk, most likely to consolidate Windows’ internal state with the disk. However, to query the disk’s power state, you only need a handle to query the drive’s metadata, without any read or write permissions. The attached patch adds a new function to the base class ‘smart_device’: ‘check_os_powermode()’. The generic default implementation returns true to indicate power up or undetermined. The Win32 implementation uses Windows’ GetDevicePowerState API, and returns false when the OS indicates that the device is in low-power state. However, the point is when the ‘smart_device’ is not already opened, ‘check_os_powermode()’ opens the device temporarily using ‘0’ permissions to open only a handle for querying device metadata, and so prevents the disk from spinning up. (Even when admin rights would be available.) |