1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2018-2023 Intel Corporation.
*/
#include <rte_bus.h>
#include <rte_ethdev.h>
#include "commands.h"
void cmd_help_parsed(__rte_unused void *parsed_result,
struct cmdline *cl,
__rte_unused void *data)
{
cmdline_printf(cl,
"commands:\n"
"- attach <devargs>\n"
"- detach <devargs>\n"
"- list\n\n");
}
void
cmd_quit_parsed(__rte_unused void *parsed_result,
struct cmdline *cl,
__rte_unused void *data)
{
cmdline_quit(cl);
}
void
cmd_list_parsed(__rte_unused void *parsed_result,
struct cmdline *cl,
__rte_unused void *data)
{
uint16_t port_id;
char dev_name[RTE_DEV_NAME_MAX_LEN];
cmdline_printf(cl, "list all etherdev\n");
RTE_ETH_FOREACH_DEV(port_id) {
rte_eth_dev_get_name_by_port(port_id, dev_name);
if (strlen(dev_name) > 0)
cmdline_printf(cl, "%d\t%s\n", port_id, dev_name);
else
printf("empty dev_name is not expected!\n");
}
}
void
cmd_attach_parsed(void *parsed_result,
struct cmdline *cl,
__rte_unused void *data)
{
struct cmd_attach_result *res = parsed_result;
struct rte_devargs da;
memset(&da, 0, sizeof(da));
if (rte_devargs_parsef(&da, "%s", res->devargs)) {
cmdline_printf(cl, "cannot parse devargs\n");
return;
}
if (!rte_eal_hotplug_add(rte_bus_name(da.bus), da.name, da.args))
cmdline_printf(cl, "attached device %s\n", da.name);
else
cmdline_printf(cl, "failed to attached device %s\n",
da.name);
rte_devargs_reset(&da);
}
void
cmd_detach_parsed(void *parsed_result,
struct cmdline *cl,
__rte_unused void *data)
{
struct cmd_detach_result *res = parsed_result;
struct rte_devargs da;
memset(&da, 0, sizeof(da));
if (rte_devargs_parsef(&da, "%s", res->devargs)) {
cmdline_printf(cl, "cannot parse devargs\n");
return;
}
printf("detaching...\n");
if (!rte_eal_hotplug_remove(rte_bus_name(da.bus), da.name))
cmdline_printf(cl, "detached device %s\n",
da.name);
else
cmdline_printf(cl, "failed to detach device %s\n",
da.name);
rte_devargs_reset(&da);
}
|