Custom Query (1434 matches)
Results (133 - 135 of 1434)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#199 | fixed | [PATCH] Man page syntax fixes | ||
Description |
Attached is a patch containing some trivial man page syntax fixes. |
|||
#200 | fixed | syntax error in trunk/smartmontools/drivedb.h | ||
Description |
The latest drivedb.h (fetched by update-smart-drivedb) has a syntax error: { "SMART Xcel-10 2.5 SATA SSD", // based on http://www.smartm.com/files/salesLiterature/storage/xcel10.pdf "SMART A25FD-(32|64|128)GI32N", "", "", // attributes info from http://www.adtron.com/pdf/SMART_Attributes_Xcel-10_810800014_RevB.pdf "-v 1,raw48,Not_Supported" "-v 2,raw48,Not_Supported" "-v 191,raw48,Not_Supported" "-v 197,raw48,ECC_Error_Count" "-v 251,raw48,Minimum_Spares_Remaining_Pct" // percentage of the total number of spare blocks available "-v 252,raw48,Added_Bad_Flash_Block_Count" // number of bad flash blocks "-v 254,raw48,Total_Erase_Blocks_Count" // number of times the drive has erased any erase block }, should be { "SMART Xcel-10 2.5 SATA SSD", // based on http://www.smartm.com/files/salesLiterature/storage/xcel10.pdf "SMART A25FD-(32|64|128)GI32N", "", "", // attributes info from http://www.adtron.com/pdf/SMART_Attributes_Xcel-10_810800014_RevB.pdf "-v 1,raw48,Not_Supported " "-v 2,raw48,Not_Supported " "-v 191,raw48,Not_Supported " "-v 197,raw48,ECC_Error_Count " "-v 251,raw48,Minimum_Spares_Remaining_Pct " // percentage of the total number of spare blocks available "-v 252,raw48,Added_Bad_Flash_Block_Count " // number of bad flash blocks "-v 254,raw48,Total_Erase_Blocks_Count" // number of times the drive has erased any erase block }, (note the spaces). |
|||
#201 | fixed | os_freebsd.cpp: Have smartd prefer real device names over passN | ||
Description |
The device scanning code in os_freebsd.cpp remembers the last name for a particular device. This can cause all your devices to be reported as "passN" if the pass device is last in the list: # camcontrol devlist <SEAGATE ST336754LC D402> at scbus0 target 0 lun 0 (da0,pass0) <SEAGATE ST336754LC D402> at scbus0 target 1 lun 0 (da1,pass1) <Hitachi HDS721016CLA382 JPEOA3FF> at scbus1 target 0 lun 0 (ada0,pass2) <PLDS DVD-ROM DH-16D5S VD15> at scbus2 target 0 lun 0 (cd0,pass3) <SAMSUNG HD161HJ JF100-22> at scbus3 target 0 lun 0 (ada1,pass4) Unpatched smartd output: Configuration file /usr/local/etc/smartd.conf was parsed, found DEVICESCAN, scanning devices Device: /dev/pass0, opened Device: /dev/pass0, [SEAGATE ST336754LC D402], 36.4 GB Device: /dev/pass0, is SMART capable. Adding to "monitor" list. Device: /dev/pass1, opened Device: /dev/pass1, [SEAGATE ST336754LC D402], 36.4 GB Device: /dev/pass1, is SMART capable. Adding to "monitor" list. Device: /dev/pass2, opened Device: /dev/pass2, Hitachi HDS721016CLA382, S/N:JPE060HH0RGT8P, WWN:5-000cca-370ca37a8, FW:JPEOA3FF, 160 GB Device: /dev/pass2, found in smartd database: Hitachi Deskstar 7K1000.C Device: /dev/pass2, is SMART capable. Adding to "monitor" list. The attached patch keeps smartd from overwriting a good device name with "pass", resulting in much better detection: Configuration file /usr/local/etc/smartd.conf was parsed, found DEVICESCAN, scanning devices Device: /dev/da0, opened Device: /dev/da0, [SEAGATE ST336754LC D402], 36.4 GB Device: /dev/da0, is SMART capable. Adding to "monitor" list. Device: /dev/da1, opened Device: /dev/da1, [SEAGATE ST336754LC D402], 36.4 GB Device: /dev/da1, is SMART capable. Adding to "monitor" list. Device: /dev/ada0, opened Device: /dev/ada0, Hitachi HDS721016CLA382, S/N:JPE060HH0RGT8P, WWN:5-000cca-370ca37a8, FW:JPEOA3FF, 160 GB Device: /dev/ada0, found in smartd database: Hitachi Deskstar 7K1000.C Device: /dev/ada0, is SMART capable. Adding to "monitor" list. |