ahci & exynos5: adjust ouput format in ahci_bench

This commit is contained in:
Martin Stein 2013-06-28 17:07:23 +02:00 committed by Stefan Kalkowski
parent 4fe093b01b
commit 0613e52a49

View File

@ -31,6 +31,12 @@ struct Operation
char *buffer_virt) = 0; char *buffer_virt) = 0;
}; };
void print_bench_head()
{
Genode::printf("\n");
Genode::printf("bytes/block bytes sec MB/sec\n");
Genode::printf("----------------------------------------------\n");
}
/* /*
* \param total_size total number of bytes to read * \param total_size total number of bytes to read
@ -138,9 +144,7 @@ int main(int argc, char **argv)
printf("read\n"); printf("read\n");
printf("~~~~\n"); printf("~~~~\n");
printf("\n"); print_bench_head();
printf("bytes/block bytes MB sec MB/sec\n");
printf("--------------------------------------------------------------\n");
struct Read : Operation struct Read : Operation
{ {
@ -167,9 +171,7 @@ int main(int argc, char **argv)
printf("\n"); printf("\n");
printf("write\n"); printf("write\n");
printf("~~~~~\n"); printf("~~~~~\n");
printf("\n"); print_bench_head();
printf("bytes/block bytes MB sec MB/sec\n");
printf("--------------------------------------------------------------\n");
struct Write : Operation struct Write : Operation
{ {