use "nicer" output messages

This commit is contained in:
Stefan Lankes 2011-10-06 13:32:28 -07:00
parent 6fd7f64059
commit 0801b6f087

View file

@ -372,7 +372,7 @@ int TCP_Bench(void)
end = rdtsc();
} while((end-start)/freq < 6000000ULL /* = 6s */);
kprintf("%llu KBytes/s\n", (nData/1024ULL)/((end-start)/(1000000ULL*freq)));
kprintf("%llu KBytes/s", (nData/1024ULL)/((end-start)/(1000000ULL*freq)));
kprintf(" Tx, ");
@ -416,7 +416,7 @@ int TCP_Bench(void)
} while (cBuffer[0] == 0 && rc > 0);
end = rdtsc();
kprintf("%llu KBytes/s\n", (nData/1024ULL)/((end-start)/(1000000ULL*freq)));
kprintf("%llu KBytes/s", (nData/1024ULL)/((end-start)/(1000000ULL*freq)));
kprintf(" Rx.\n");
}