You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This line seems does lbas-read/written * 65536 * 512 (sectors) / 1000000 (mb). However on my various varieties of Samsung ssd this 65536 multiple is incorrect, it should actually just be * 512 / 1000000 to get mb. This means I'm having to put a *16 factor in to convert to bytes/sec
The text was updated successfully, but these errors were encountered:
I noticed the same problem on my Samsun SSD (EVO 850). skdump returns 325214 TB written, which is nonsensical. So if I divide the reported LBA's written by 64k, is that the actual TBW value as recorded by my SSD?
libatasmart/atasmart.c
Line 1225 in de62589
This line seems does
lbas-read/written * 65536 * 512 (sectors) / 1000000 (mb)
. However on my various varieties of Samsung ssd this 65536 multiple is incorrect, it should actually just be* 512 / 1000000
to get mb. This means I'm having to put a*16
factor in to convert to bytes/secThe text was updated successfully, but these errors were encountered: