2016-05-24 18:04:20 +00:00
|
|
|
/*-
|
|
|
|
* BSD LICENSE
|
|
|
|
*
|
|
|
|
* Copyright (c) Intel Corporation.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* * 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.
|
|
|
|
* * Neither the name of Intel Corporation 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <rte_config.h>
|
|
|
|
#include <rte_ring.h>
|
|
|
|
#include <rte_lcore.h>
|
|
|
|
|
2016-08-18 19:52:48 +00:00
|
|
|
#include "spdk/env.h"
|
2016-05-24 18:04:20 +00:00
|
|
|
#include "spdk/event.h"
|
2017-01-20 22:21:18 +00:00
|
|
|
#include "spdk_internal/event.h"
|
2016-05-24 18:04:20 +00:00
|
|
|
#include "spdk/log.h"
|
|
|
|
|
|
|
|
static uint64_t g_tsc_rate;
|
|
|
|
static uint64_t g_tsc_us_rate;
|
|
|
|
|
|
|
|
static int g_time_in_sec;
|
|
|
|
|
|
|
|
static __thread uint64_t __call_count = 0;
|
|
|
|
static uint64_t call_count[RTE_MAX_LCORE];
|
|
|
|
|
|
|
|
static void
|
2017-01-05 01:19:02 +00:00
|
|
|
submit_new_event(void *arg1, void *arg2)
|
2016-05-24 18:04:20 +00:00
|
|
|
{
|
2017-01-05 01:19:02 +00:00
|
|
|
struct spdk_event *event;
|
2016-05-24 18:04:20 +00:00
|
|
|
static __thread uint32_t next_lcore = RTE_MAX_LCORE;
|
|
|
|
|
|
|
|
if (next_lcore == RTE_MAX_LCORE) {
|
|
|
|
next_lcore = rte_get_next_lcore(rte_lcore_id(), 0, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
++__call_count;
|
2017-01-05 01:40:14 +00:00
|
|
|
event = spdk_event_allocate(next_lcore, submit_new_event, NULL, NULL);
|
2016-05-24 18:04:20 +00:00
|
|
|
spdk_event_call(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
event_work_fn(void *arg)
|
|
|
|
{
|
|
|
|
uint64_t tsc_end;
|
|
|
|
|
2016-08-18 19:52:48 +00:00
|
|
|
tsc_end = spdk_get_ticks() + g_time_in_sec * g_tsc_rate;
|
2016-05-24 18:04:20 +00:00
|
|
|
|
2017-01-05 01:19:02 +00:00
|
|
|
submit_new_event(NULL, NULL);
|
|
|
|
submit_new_event(NULL, NULL);
|
|
|
|
submit_new_event(NULL, NULL);
|
|
|
|
submit_new_event(NULL, NULL);
|
2016-05-24 18:04:20 +00:00
|
|
|
|
|
|
|
while (1) {
|
|
|
|
|
2016-11-02 20:31:33 +00:00
|
|
|
spdk_event_queue_run_batch(rte_lcore_id());
|
2016-05-24 18:04:20 +00:00
|
|
|
|
2016-08-18 19:52:48 +00:00
|
|
|
if (spdk_get_ticks() > tsc_end) {
|
2016-05-24 18:04:20 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
call_count[rte_lcore_id()] = __call_count;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
usage(char *program_name)
|
|
|
|
{
|
|
|
|
printf("%s options\n", program_name);
|
|
|
|
printf("\t[-m core mask for distributing I/O submission/completion work\n");
|
|
|
|
printf("\t\t(default: 0x1 - use core 0 only)]\n");
|
|
|
|
printf("\t[-t time in seconds]\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
performance_dump(int io_time)
|
|
|
|
{
|
|
|
|
uint32_t i;
|
|
|
|
|
|
|
|
printf("\n");
|
2017-04-03 22:02:49 +00:00
|
|
|
SPDK_ENV_FOREACH_CORE(i) {
|
2016-05-24 18:04:20 +00:00
|
|
|
printf("lcore %2d: %8ju\n", i, call_count[i] / g_time_in_sec);
|
|
|
|
}
|
|
|
|
|
|
|
|
fflush(stdout);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
struct spdk_app_opts opts;
|
|
|
|
int op;
|
2017-04-03 22:02:49 +00:00
|
|
|
uint32_t i, current_core;
|
2016-05-24 18:04:20 +00:00
|
|
|
|
|
|
|
spdk_app_opts_init(&opts);
|
2017-01-20 22:21:18 +00:00
|
|
|
opts.name = "event_perf";
|
2016-05-24 18:04:20 +00:00
|
|
|
|
|
|
|
g_time_in_sec = 0;
|
|
|
|
|
|
|
|
while ((op = getopt(argc, argv, "m:t:")) != -1) {
|
|
|
|
switch (op) {
|
|
|
|
case 'm':
|
|
|
|
opts.reactor_mask = optarg;
|
|
|
|
break;
|
|
|
|
case 't':
|
|
|
|
g_time_in_sec = atoi(optarg);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
usage(argv[0]);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!g_time_in_sec) {
|
|
|
|
usage(argv[0]);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2017-04-24 18:14:41 +00:00
|
|
|
optind = 1; /* reset the optind */
|
2016-05-24 18:04:20 +00:00
|
|
|
|
|
|
|
spdk_app_init(&opts);
|
|
|
|
|
2016-08-18 19:52:48 +00:00
|
|
|
g_tsc_rate = spdk_get_ticks_hz();
|
2016-05-24 18:04:20 +00:00
|
|
|
g_tsc_us_rate = g_tsc_rate / (1000 * 1000);
|
|
|
|
|
|
|
|
printf("Running I/O for %d seconds...", g_time_in_sec);
|
|
|
|
fflush(stdout);
|
|
|
|
|
|
|
|
/* call event_work_fn on each slave lcore */
|
2017-04-03 22:02:49 +00:00
|
|
|
current_core = spdk_env_get_current_core();
|
|
|
|
SPDK_ENV_FOREACH_CORE(i) {
|
|
|
|
if (i != current_core) {
|
|
|
|
rte_eal_remote_launch(event_work_fn, NULL, i);
|
|
|
|
}
|
2016-05-24 18:04:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* call event_work_fn on lcore0 */
|
|
|
|
event_work_fn(NULL);
|
|
|
|
|
|
|
|
rte_eal_mp_wait_lcore();
|
|
|
|
|
|
|
|
performance_dump(g_time_in_sec);
|
|
|
|
|
|
|
|
printf("done.\n");
|
|
|
|
return 0;
|
|
|
|
}
|