Make "diskinfo -i" also test 1MB reads.

This commit is contained in:
Edward Tomasz Napierala 2020-12-10 10:23:18 +00:00
parent 7483b9e4dc
commit b7a4380dd4

View File

@ -644,6 +644,9 @@ iopsbench(int fd, off_t mediasize, u_int sectorsize)
printf("\t128 kbytes: ");
iops(fd, mediasize, 128 * 1024);
printf("\t1024 kbytes: ");
iops(fd, mediasize, 1024 * 1024);
printf("\n");
}