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
libatasmart/atasmart.c
Line 1225 in de62589 a->pretty_value = fourtyeight * 65536LLU * 512LLU / 1000000LLU;
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
libatasmart/atasmart.c
Line 1225 in de62589
a->pretty_value = fourtyeight * 65536LLU * 512LLU / 1000000LLU;
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
upstream issue link: Rupan/libatasmart#5 (comment)
The text was updated successfully, but these errors were encountered: