#1831 closed defect (worksforme)
No JSON support for "Auto Offline data collection on/off support"
Reported by: | Alexander Shaduri | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | |
Component: | smartctl | Version: | |
Keywords: | json ata | Cc: | Alexander Shaduri |
Description
Hi,
It looks like in JSON/ATA output, no corresponding keys are present for "Auto Offline data collection on/off support" / "No Auto Offline data collection support".
GSmartControl uses these to check if it's supported or not, so that it can enable the appropriate checkbox.
If this is something that is problematic and/or useless on modern drives, please let me know and I'll remove this functionality from GSmartControl.
Thanks!
Change History (3)
comment:1 by , 6 months ago
comment:2 by , 6 months ago
Milestone: | → Release 7.0 |
---|---|
Resolution: | → worksforme |
Status: | new → closed |
The related capability bit is available in the JSON output, see above comment.
comment:3 by , 6 months ago
Milestone: | Release 7.0 |
---|
Thank you Christian,
Since it looks like it's not widely used, I'm inclined towards its complete removal. It has not been functioning even on my own drives for a while now.
This capability check was inherited from smartmontools predecessor smartsuite and was originally named
Automatic Timer ON/OFF support
, see smartmontools 5.0.See also this related comment in atacmds.h:
That's why I decided to omit an extra bool value in the JSON data. The underlying capability bitmask is available in the JSON
values
array. Index 0: Offline capabilities, index 1: SMART capabilities.Simply check for
(ata_smart_data.capabilities.values[0] & 0x02)
.I don't know whether the
smartctl -o
command has any actual effect if used on modern drives.It should not do any harm to keep the related GSmartControl checkbox as is.