| /dpdk/lib/bbdev/ |
| H A D | rte_bbdev.c | 324 if (dev->data->started) { in rte_bbdev_setup_queues() 326 "Device %u cannot be configured when started", in rte_bbdev_setup_queues() 412 if (dev->data->started) { in rte_bbdev_intr_enable() 414 "Device %u cannot be configured when started", in rte_bbdev_intr_enable() 452 if (dev->data->queues[queue_id].started || dev->data->started) { in rte_bbdev_queue_configure() 454 "Queue %u of device %u cannot be configured when started", in rte_bbdev_queue_configure() 560 if (dev->data->started) { in rte_bbdev_start() 561 rte_bbdev_log_debug("Device %u is already started", dev_id); in rte_bbdev_start() 576 dev->data->queues[i].started in rte_bbdev_start() [all...] |
| H A D | rte_bbdev.h | 109 * - -EBUSY if the identified device has already started 126 * - -EBUSY if the identified device has already started 137 bool deferred_start; /**< Do not start queue when device is started. */ 156 * - EBUSY if the identified queue or its device have already started 376 bool started; /**< Set if device is currently started */ 401 /** Set if queue is currently started */ 402 bool started; 430 bool started; /**< Queue state */ 492 bool started; /**< Devic 374 bool started; /**< Set if device is currently started */ global() member 400 bool started; global() member 428 bool started; /**< Queue state */ global() member 490 bool started; /**< Device run-time state */ global() member [all...] |
| /dpdk/lib/acl/ |
| H A D | acl_run.h | 38 uint32_t started; member 163 flows->started++; in acl_start_next_trie() 180 flows->started = 0; in acl_set_flow() 216 flows->started--; in acl_match_check()
|
| /dpdk/drivers/net/sfc/ |
| H A D | sfc_repr_proxy.h | 72 bool started; member 125 bool started; member
|
| H A D | sfc_repr_proxy.c | 135 mbox->port->started = true; in sfc_repr_proxy_mbox_handle() 138 mbox->port->started = false; in sfc_repr_proxy_mbox_handle() 249 if (port != NULL && port->started) { in sfc_repr_proxy_rx_forward() 302 if (!port->started) in sfc_repr_proxy_routine() 1000 if (rp->started) { in sfc_repr_proxy_do_start_port() 1009 port->started = true; in sfc_repr_proxy_do_start_port() 1030 if (rp->started) { in sfc_repr_proxy_do_stop_port() 1039 port->started = false; in sfc_repr_proxy_do_stop_port() 1141 rp->started = true; in sfc_repr_proxy_start() 1244 rp->started = false; in sfc_repr_proxy_stop() [all …]
|
| /dpdk/lib/rawdev/ |
| H A D | rte_rawdev.c | 110 if (dev->started) { in rte_rawdev_configure() 410 if (dev->started != 0) { in rte_rawdev_start() 424 dev->started = 1; in rte_rawdev_start() 438 if (dev->started == 0) { in rte_rawdev_stop() 450 dev->started = 0; in rte_rawdev_stop() 464 if (dev->started == 1) { in rte_rawdev_close() 533 rawdev->started = 0; in rte_rawdev_pmd_allocate()
|
| /dpdk/app/test/ |
| H A D | test_trace_perf.c | 19 volatile bool started; member 71 while (!data->ldata[workers].started) in wait_till_workers_are_ready() 103 ldata->started = 1; \
|
| /dpdk/drivers/net/virtio/ |
| H A D | virtio_rxtx_packed.c | 35 if (unlikely(hw->started == 0 && tx_pkts != hw->inject_pkts)) in virtio_xmit_pkts_packed_vec() 90 if (unlikely(hw->started == 0)) in virtio_recv_pkts_packed_vec()
|
| /dpdk/app/test-bbdev/ |
| H A D | test_bbdev.c | 187 TEST_ASSERT_SUCCESS(info.started, "Failed test for rte_bbdev_info_get: " in test_bbdev_configure_stop_device() 188 "started value: %u", info.started); in test_bbdev_configure_stop_device() 212 TEST_ASSERT_FAIL(info.started, "Failed test for rte_bbdev_info_get: " in test_bbdev_configure_stop_device() 213 "started value: %u", info.started); in test_bbdev_configure_stop_device() 237 TEST_ASSERT_SUCCESS(info.started, "Failed test for rte_bbdev_info_get: " in test_bbdev_configure_stop_device() 238 "started value: %u", info.started); in test_bbdev_configure_stop_device() 359 TEST_ASSERT(qinfo.started == 0, in test_bbdev_configure_stop_queue() 361 "invalid value for qinfo.started:%u", qinfo.started); in test_bbdev_configure_stop_queue() 379 TEST_ASSERT(qinfo.started == 1, in test_bbdev_configure_stop_queue() 381 "invalid value for qinfo.started:%u", qinfo.started); in test_bbdev_configure_stop_queue()
|
| /dpdk/examples/bond/ |
| H A D | commands.list | 5 start # starts listening if not started at startup
|
| /dpdk/lib/eventdev/ |
| H A D | rte_event_timer_adapter.c | 79 int started; in default_port_conf_cb() local 91 started = dev->data->dev_started; in default_port_conf_cb() 92 if (started) in default_port_conf_cb() 113 if (started) in default_port_conf_cb() 129 if (started) in default_port_conf_cb() 295 if (adapter->data->started) { in rte_event_timer_adapter_start() 305 adapter->data->started = 1; in rte_event_timer_adapter_start() 318 if (adapter->data->started == 0) { in rte_event_timer_adapter_stop() 328 adapter->data->started = 0; in rte_event_timer_adapter_stop() 408 if (adapter->data->started == 1) { in rte_event_timer_adapter_free()
|
| H A D | event_timer_adapter_pmd.h | 107 uint8_t started : 1; 108 /**< Flag to indicate adapter started. */ 111 uint8_t started : 1; global() member
|
| /dpdk/examples/vhost_blk/ |
| H A D | vhost_blk.h | 70 uint8_t started; member
|
| H A D | vhost_blk.c | 615 if (ctrlr->started) in new_device() 686 /* device has been started */ in new_device() 687 ctrlr->started = 1; in new_device() 713 if (!ctrlr->started) in destroy_device() 736 ctrlr->started = 0; in destroy_device() 862 if (ctrlr->started) in signal_handler()
|
| /dpdk/examples/pipeline/examples/ |
| H A D | l2fwd_pcap.cli | 7 # Once the application has started, the command to get the CLI prompt is:
|
| H A D | l2fwd_macswp_pcap.cli | 7 # Once the application has started, the command to get the CLI prompt is:
|
| H A D | learner.cli | 7 # Once the application has started, the command to get the CLI prompt is:
|
| H A D | l2fwd.cli | 7 # Once the application has started, the command to get the CLI prompt is:
|
| H A D | recirculation.cli | 7 # Once the application has started, the command to get the CLI prompt is:
|
| H A D | l2fwd_macswp.cli | 7 # Once the application has started, the command to get the CLI prompt is:
|
| H A D | hash_func.cli | 7 # Once the application has started, the command to get the CLI prompt is:
|
| H A D | varbit.cli | 7 # Once the application has started, the command to get the CLI prompt is:
|
| H A D | ipv6_addr_swap.cli | 7 # Once the application has started, the command to get the CLI prompt is:
|
| H A D | registers.cli | 7 # Once the application has started, the command to get the CLI prompt is:
|
| /dpdk/drivers/net/virtio/virtio_user/ |
| H A D | virtio_user_dev.h | 61 bool started; member
|