diff --git a/stand/common/commands.c b/stand/common/commands.c index 9f7252014d87..0d21ed44c681 100644 --- a/stand/common/commands.c +++ b/stand/common/commands.c @@ -545,3 +545,34 @@ command_lsdev(int argc, char *argv[]) pager_close(); return (CMD_OK); } + +static int +command_readtest(int argc, char *argv[]) +{ + int fd; + time_t start, end; + char buf[512]; + ssize_t rv, count = 0; + + if (argc != 2) { + snprintf(command_errbuf, sizeof(command_errbuf), + "Usage: readtest "); + return (CMD_ERROR); + } + + start = getsecs(); + if ((fd = open(argv[1], O_RDONLY)) < 0) { + snprintf(command_errbuf, sizeof(command_errbuf), + "can't open '%s'", argv[1]); + return (CMD_ERROR); + } + while ((rv = read(fd, buf, sizeof(buf))) > 0) + count += rv; + end = getsecs(); + + printf("Received %zd bytes during %jd seconds\n", count, (intmax_t)end - start); + close(fd); + return (CMD_OK); +} + +COMMAND_SET(readtest, "readtest", "Time a file read", command_readtest); diff --git a/stand/libsa/tftp.c b/stand/libsa/tftp.c index 80156cf95ef0..78eedddcb1f6 100644 --- a/stand/libsa/tftp.c +++ b/stand/libsa/tftp.c @@ -55,6 +55,7 @@ __FBSDID("$FreeBSD$"); #include +#include #include "stand.h" #include "net.h" #include "netif.h"