mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-05-20 20:03:54 +08:00
add sd_bench command, enable it on the px4fmu-v4 & posix_sitl build target
Useful to test maximum sequential write speed to the SD Card
This commit is contained in:
@@ -63,6 +63,7 @@ set(config_module_list
|
||||
systemcmds/mtd
|
||||
systemcmds/dumpfile
|
||||
systemcmds/ver
|
||||
systemcmds/sd_bench
|
||||
systemcmds/tests
|
||||
|
||||
#
|
||||
|
||||
@@ -24,6 +24,7 @@ set(config_module_list
|
||||
systemcmds/ver
|
||||
systemcmds/esc_calib
|
||||
systemcmds/reboot
|
||||
systemcmds/sd_bench
|
||||
systemcmds/topic_listener
|
||||
systemcmds/perf
|
||||
modules/uORB
|
||||
|
||||
@@ -0,0 +1,44 @@
|
||||
############################################################################
|
||||
#
|
||||
# Copyright (c) 2016 PX4 Development Team. All rights reserved.
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
# modification, are permitted provided that the following conditions
|
||||
# are met:
|
||||
#
|
||||
# 1. Redistributions of source code must retain the above copyright
|
||||
# notice, this list of conditions and the following disclaimer.
|
||||
# 2. Redistributions in binary form must reproduce the above copyright
|
||||
# notice, this list of conditions and the following disclaimer in
|
||||
# the documentation and/or other materials provided with the
|
||||
# distribution.
|
||||
# 3. Neither the name PX4 nor the names of its contributors may be
|
||||
# used to endorse or promote products derived from this software
|
||||
# without specific prior written permission.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
||||
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
||||
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
||||
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
||||
# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
||||
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
||||
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
# POSSIBILITY OF SUCH DAMAGE.
|
||||
#
|
||||
############################################################################
|
||||
px4_add_module(
|
||||
MODULE systemcmds__sd_bench
|
||||
MAIN sd_bench
|
||||
STACK_MAIN 2500
|
||||
COMPILE_FLAGS
|
||||
-Os
|
||||
SRCS
|
||||
sd_bench.c
|
||||
DEPENDS
|
||||
platforms__common
|
||||
)
|
||||
# vim: set noet ft=cmake fenc=utf-8 ff=unix :
|
||||
@@ -0,0 +1,215 @@
|
||||
/****************************************************************************
|
||||
*
|
||||
* Copyright (c) 2016 PX4 Development Team. All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in
|
||||
* the documentation and/or other materials provided with the
|
||||
* distribution.
|
||||
* 3. Neither the name PX4 nor the names of its contributors may be
|
||||
* used to endorse or promote products derived from this software
|
||||
* without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
||||
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
||||
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
||||
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
||||
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
||||
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
||||
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
/**
|
||||
* @file sd_bench.c
|
||||
*
|
||||
* SD Card benchmarking
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <fcntl.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include <px4_config.h>
|
||||
#include <px4_includes.h>
|
||||
#include <px4_getopt.h>
|
||||
#include <px4_log.h>
|
||||
|
||||
#include <drivers/drv_hrt.h>
|
||||
|
||||
static void usage(void);
|
||||
|
||||
/** sequential write speed test */
|
||||
static void write_test(int fd, uint8_t *block, int block_size);
|
||||
|
||||
/**
|
||||
* Measure the time for fsync.
|
||||
* @param fd
|
||||
* @return time in ms
|
||||
*/
|
||||
static inline unsigned int time_fsync(int fd);
|
||||
|
||||
__EXPORT int sd_bench_main(int argc, char *argv[]);
|
||||
|
||||
static const char *BENCHMARK_FILE = PX4_ROOTFSDIR"/fs/microsd/benchmark.tmp";
|
||||
|
||||
static int num_runs; ///< number of runs
|
||||
static int run_duration; ///< duration of a single run [ms]
|
||||
static bool synchronized; ///< call fsync after each block?
|
||||
|
||||
static void
|
||||
usage()
|
||||
{
|
||||
PX4_WARN(
|
||||
"Test the speed of an SD Card. Usage:\n"
|
||||
"sd_bench [-b <block_size>] [-r <runs>] [-d <duration>] [-s]\n"
|
||||
"\n"
|
||||
"\t-b <block_size>\t\tBlock size for each read/write (default=4096)\n"
|
||||
"\t-r <runs>\t\tNumber of runs (default=5)\n"
|
||||
"\t-d <duration>\t\tDuration of a run in ms (default=2000)\n"
|
||||
"\t-s \t\t\tCall fsync after each block (default=at end of each run)\n"
|
||||
);
|
||||
|
||||
}
|
||||
|
||||
int
|
||||
sd_bench_main(int argc, char *argv[])
|
||||
{
|
||||
int block_size = 4096;
|
||||
int myoptind = 1;
|
||||
int ch;
|
||||
const char *myoptarg = NULL;
|
||||
synchronized = false;
|
||||
num_runs = 5;
|
||||
run_duration = 2000;
|
||||
|
||||
while ((ch = px4_getopt(argc, argv, "b:r:d:s", &myoptind, &myoptarg)) != EOF) {
|
||||
switch (ch) {
|
||||
case 'b':
|
||||
block_size = strtol(myoptarg, NULL, 0);
|
||||
break;
|
||||
|
||||
case 'r':
|
||||
num_runs = strtol(myoptarg, NULL, 0);
|
||||
break;
|
||||
|
||||
case 'd':
|
||||
run_duration = strtol(myoptarg, NULL, 0);
|
||||
break;
|
||||
|
||||
case 's':
|
||||
synchronized = true;
|
||||
break;
|
||||
|
||||
default:
|
||||
usage();
|
||||
return -1;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
int bench_fd = open(BENCHMARK_FILE, O_CREAT | O_WRONLY | O_TRUNC, PX4_O_MODE_666);
|
||||
|
||||
if (bench_fd < 0) {
|
||||
PX4_ERR("Can't open benchmark file %s", BENCHMARK_FILE);
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (block_size <= 0 || num_runs <= 0) {
|
||||
PX4_ERR("invalid argument");
|
||||
return -1;
|
||||
}
|
||||
|
||||
//create some data block
|
||||
uint8_t *block = (uint8_t *)malloc(block_size);
|
||||
|
||||
if (!block) {
|
||||
PX4_ERR("Failed to allocate memory block");
|
||||
return -1;
|
||||
}
|
||||
|
||||
for (int i = 0; i < block_size; ++i) {
|
||||
block[i] = (uint8_t)i;
|
||||
}
|
||||
|
||||
PX4_INFO("Using block size = %i bytes, sync=%i", block_size, (int)synchronized);
|
||||
write_test(bench_fd, block, block_size);
|
||||
|
||||
free(block);
|
||||
close(bench_fd);
|
||||
unlink(BENCHMARK_FILE);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
unsigned int time_fsync(int fd)
|
||||
{
|
||||
hrt_abstime fsync_start = hrt_absolute_time();
|
||||
fsync(fd);
|
||||
return hrt_elapsed_time(&fsync_start) / 1000;
|
||||
}
|
||||
|
||||
void write_test(int fd, uint8_t *block, int block_size)
|
||||
{
|
||||
PX4_INFO("");
|
||||
PX4_INFO("Testing Sequential Write Speed...");
|
||||
double total_elapsed = 0.;
|
||||
unsigned int total_blocks = 0;
|
||||
|
||||
for (int run = 0; run < num_runs; ++run) {
|
||||
hrt_abstime start = hrt_absolute_time();
|
||||
unsigned int num_blocks = 0;
|
||||
unsigned int max_write_time = 0;
|
||||
unsigned int fsync_time = 0;
|
||||
|
||||
while (hrt_elapsed_time(&start) < run_duration * 1000) {
|
||||
|
||||
hrt_abstime write_start = hrt_absolute_time();
|
||||
size_t written = write(fd, block, block_size);
|
||||
unsigned int write_time = hrt_elapsed_time(&write_start) / 1000;
|
||||
|
||||
if (write_time > max_write_time) {
|
||||
max_write_time = write_time;
|
||||
}
|
||||
|
||||
if ((int)written != block_size) {
|
||||
PX4_ERR("Write error");
|
||||
return;
|
||||
}
|
||||
|
||||
if (synchronized) {
|
||||
fsync_time += time_fsync(fd);
|
||||
}
|
||||
|
||||
++num_blocks;
|
||||
}
|
||||
|
||||
//Note: if testing a slow device (SD Card) and the OS buffers a lot (eg. Linux),
|
||||
//fsync can take really long, and it looks like the process hangs. But it does
|
||||
//not and the reported result will still be correct.
|
||||
fsync_time += time_fsync(fd);
|
||||
|
||||
//report
|
||||
double elapsed = hrt_elapsed_time(&start) / 1.e6;
|
||||
PX4_INFO(" Run %2i: %8.2lf KB/s, max write time: %i ms (=%7.2lf KB/s), fsync: %i ms", run,
|
||||
(double)block_size * num_blocks / elapsed / 1024.,
|
||||
max_write_time, (double)block_size / max_write_time * 1000. / 1024., fsync_time);
|
||||
|
||||
total_elapsed += elapsed;
|
||||
total_blocks += num_blocks;
|
||||
}
|
||||
|
||||
PX4_INFO(" Avg : %8.2lf KB/s", (double)block_size * total_blocks / total_elapsed / 1024.);
|
||||
}
|
||||
Reference in New Issue
Block a user