Skip to content

Commit 1800170

Browse files
lgdacunhigaw
authored andcommitted
plugins/solidigm: Added some Vendor specific SMART Attribute IDs.
Added bad_dllp_count, receiver_error_count, renamed crc_error_count to bad_tlp_count. Signed-off-by: Leonardo da Cunha <[email protected]>
1 parent c17545d commit 1800170

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

plugins/solidigm/solidigm-nvme.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
#include "cmd.h"
1515

16-
#define SOLIDIGM_PLUGIN_VERSION "1.17"
16+
#define SOLIDIGM_PLUGIN_VERSION "1.18"
1717

1818
PLUGIN(NAME("solidigm", "Solidigm vendor specific extensions", SOLIDIGM_PLUGIN_VERSION),
1919
COMMAND_LIST(

plugins/solidigm/solidigm-smart.c

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ static char *id_to_name(__u8 id)
7878
case 0xB8:
7979
return "e2e_error_detect_count";
8080
case 0xC7:
81-
return "crc_error_count";
81+
return "bad_tlp_count";
8282
case 0xE2:
8383
return "media_wear_percentage";
8484
case 0xE3:
@@ -89,6 +89,10 @@ static char *id_to_name(__u8 id)
8989
return "read_commands_in_flight_counter";
9090
case 0xE6:
9191
return "write_commands_in_flight_counter";
92+
case 0xE7:
93+
return "bad_dllp_count";
94+
case 0xE8:
95+
return "receiver_error_count";
9296
case 0xEA:
9397
return "thermal_throttle_status";
9498
case 0xEE:

0 commit comments

Comments
 (0)