net/ark: localize internal packet generator

Remove unnecessary includes, no functional changes

Signed-off-by: Ed Czeck <ed.czeck@atomicrules.com>
This commit is contained in:
Ed Czeck 2021-03-18 13:37:00 -04:00 committed by Ferruh Yigit
parent 6c7f491e7f
commit 2b88daf714
4 changed files with 17 additions and 25 deletions

View File

@ -534,20 +534,6 @@ eth_ark_dev_configure(struct rte_eth_dev *dev)
return 0;
}
static void *
delay_pg_start(void *arg)
{
struct ark_adapter *ark = (struct ark_adapter *)arg;
/* This function is used exclusively for regression testing, We
* perform a blind sleep here to ensure that the external test
* application has time to setup the test before we generate packets
*/
usleep(100000);
ark_pktgen_run(ark->pg);
return NULL;
}
static int
eth_ark_dev_start(struct rte_eth_dev *dev)
{
@ -582,7 +568,8 @@ eth_ark_dev_start(struct rte_eth_dev *dev)
/* Delay packet generatpr start allow the hardware to be ready
* This is only used for sanity checking with internal generator
*/
if (pthread_create(&thread, NULL, delay_pg_start, ark)) {
if (pthread_create(&thread, NULL,
ark_pktgen_delay_start, ark->pg)) {
ARK_PMD_LOG(ERR, "Could not create pktgen "
"starter thread\n");
return -1;

View File

@ -2,13 +2,9 @@
* Copyright (c) 2015-2018 Atomic Rules LLC
*/
#include <getopt.h>
#include <sys/time.h>
#include <locale.h>
#include <unistd.h>
#include <rte_string_fns.h>
#include <ethdev_driver.h>
#include <rte_malloc.h>
#include "ark_pktchkr.h"

View File

@ -2,15 +2,9 @@
* Copyright (c) 2015-2018 Atomic Rules LLC
*/
#include <getopt.h>
#include <sys/time.h>
#include <locale.h>
#include <unistd.h>
#include <rte_string_fns.h>
#include <rte_eal.h>
#include <ethdev_driver.h>
#include <rte_malloc.h>
#include "ark_pktgen.h"
@ -470,3 +464,17 @@ ark_pktgen_setup(ark_pkt_gen_t handle)
ark_pktgen_run(handle);
}
}
void *
ark_pktgen_delay_start(void *arg)
{
struct ark_pkt_gen_inst *inst = (struct ark_pkt_gen_inst *)arg;
/* This function is used exclusively for regression testing, We
* perform a blind sleep here to ensure that the external test
* application has time to setup the test before we generate packets
*/
usleep(100000);
ark_pktgen_run(inst);
return NULL;
}

View File

@ -75,5 +75,6 @@ void ark_pktgen_set_hdr_dW(ark_pkt_gen_t handle, uint32_t *hdr);
void ark_pktgen_set_start_offset(ark_pkt_gen_t handle, uint32_t x);
void ark_pktgen_parse(char *argv);
void ark_pktgen_setup(ark_pkt_gen_t handle);
void *ark_pktgen_delay_start(void *arg);
#endif