Opened 2 months ago
Closed 5 weeks ago
#1877 closed enhancement (fixed)
Regex adjustment for Micron 5300 MAX (MTFDDAK1T9TDT)
Reported by: | Robin | Owned by: | Christian Franke |
---|---|---|---|
Priority: | minor | Milestone: | Release 7.5 |
Component: | drivedb | Version: | 7.3 |
Keywords: | ssd | Cc: | Robin |
Description (last modified by )
The regex for Micron 5300 MAX needs to be adjusted.
It is currently:
"Micron_5300(HC)?_MTFDDA[KV](240|480|960|1T9|3T8|7T6)TD[ST]"
and it needs to be:
"(Micron_5300)?(_|HC_)?MTFDDA[KV](240|480|960|1T9|3T8|7T6)TD[ST]"
Attachments (1)
Change History (9)
by , 2 months ago
Attachment: | smartctl-micron-5300-max.txt added |
---|
comment:1 by , 2 months ago
Keywords: | ssd added |
---|---|
Milestone: | Release 7.5 → unscheduled |
Type: | defect → enhancement |
comment:2 by , 2 months ago
Summary: | Regex adjustment for Micron 5300 MAX → Regex adjustment for Micron 5300 MAX (MTFDDAK1T9TDT) |
---|
comment:3 by , 2 months ago
Description: | modified (diff) |
---|
comment:4 by , 2 months ago
I updated the original ticket with a more inclusive regex. You can see that it matches here: https://regex101.com/r/vOvjwq/1
comment:5 by , 2 months ago
This variant also matches _
and HC_
prefix but should not:
https://regex101.com/r/9LoZb8/1
Therefore I prefer:
https://regex101.com/r/HHFTGX/1
comment:7 by , 5 weeks ago
Milestone: | unscheduled → Release 7.5 |
---|---|
Owner: | set to |
Status: | new → accepted |
Note:
See TracTickets
for help on using tickets.
This would no longer match
Micron_5300_...
withoutHC
.Fix:
"(Micron_5300(HC)?_)?MTFDDA[KV](240|480|960|1T9|3T8|7T6)TD[ST]"
PS: Please don't set a milestone in future submissions.