eal: rename lcore master and slave
[dpdk.git] / drivers / net / ark / ark_pktgen.c
index 2cae252..4a02662 100644 (file)
@@ -83,7 +83,7 @@ ark_pktgen_init(void *adr, int ord, int l2_mode)
                rte_malloc("ark_pkt_gen_inst_pmd",
                           sizeof(struct ark_pkt_gen_inst), 0);
        if (inst == NULL) {
-               PMD_DRV_LOG(ERR, "Failed to malloc ark_pkt_gen_inst.\n");
+               ARK_PMD_LOG(ERR, "Failed to malloc ark_pkt_gen_inst.\n");
                return inst;
        }
        inst->regs = (struct ark_pkt_gen_regs *)adr;
@@ -126,12 +126,12 @@ ark_pktgen_pause(ark_pkt_gen_t handle)
        while (!ark_pktgen_paused(handle)) {
                usleep(1000);
                if (cnt++ > 100) {
-                       PMD_DRV_LOG(ERR, "Pktgen %d failed to pause.\n",
+                       ARK_PMD_LOG(NOTICE, "Pktgen %d failed to pause.\n",
                                    inst->ordinal);
                        break;
                }
        }
-       PMD_DEBUG_LOG(DEBUG, "Pktgen %d paused.\n", inst->ordinal);
+       ARK_PMD_LOG(DEBUG, "Pktgen %d paused.\n", inst->ordinal);
 }
 
 void
@@ -141,7 +141,7 @@ ark_pktgen_reset(ark_pkt_gen_t handle)
 
        if (!ark_pktgen_is_running(handle) &&
            !ark_pktgen_paused(handle)) {
-               PMD_DEBUG_LOG(DEBUG, "Pktgen %d is not running"
+               ARK_PMD_LOG(DEBUG, "Pktgen %d is not running"
                              " and is not paused. No need to reset.\n",
                              inst->ordinal);
                return;
@@ -149,13 +149,13 @@ ark_pktgen_reset(ark_pkt_gen_t handle)
 
        if (ark_pktgen_is_running(handle) &&
            !ark_pktgen_paused(handle)) {
-               PMD_DEBUG_LOG(DEBUG,
+               ARK_PMD_LOG(DEBUG,
                              "Pktgen %d is not paused. Pausing first.\n",
                              inst->ordinal);
                ark_pktgen_pause(handle);
        }
 
-       PMD_DEBUG_LOG(DEBUG, "Resetting pktgen %d.\n", inst->ordinal);
+       ARK_PMD_LOG(DEBUG, "Resetting pktgen %d.\n", inst->ordinal);
        inst->regs->pkt_start_stop = (1 << 8);
 }
 
@@ -193,17 +193,17 @@ ark_pktgen_wait_done(ark_pkt_gen_t handle)
        int wait_cycle = 10;
 
        if (ark_pktgen_is_gen_forever(handle))
-               PMD_DRV_LOG(ERR, "Pktgen wait_done will not terminate"
+               ARK_PMD_LOG(NOTICE, "Pktgen wait_done will not terminate"
                            " because gen_forever=1\n");
 
        while (!ark_pktgen_tx_done(handle) && (wait_cycle > 0)) {
                usleep(1000);
                wait_cycle--;
-               PMD_DEBUG_LOG(DEBUG,
+               ARK_PMD_LOG(DEBUG,
                              "Waiting for pktgen %d to finish sending...\n",
                              inst->ordinal);
        }
-       PMD_DEBUG_LOG(DEBUG, "Pktgen %d done.\n", inst->ordinal);
+       ARK_PMD_LOG(DEBUG, "Pktgen %d done.\n", inst->ordinal);
 }
 
 uint32_t
@@ -306,7 +306,7 @@ options(const char *id)
                        return &toptions[i];
        }
 
-       PMD_DRV_LOG(ERR,
+       ARK_PMD_LOG(ERR,
                    "Pktgen: Could not find requested option!, "
                    "option = %s\n",
                    id
@@ -465,7 +465,7 @@ ark_pktgen_setup(ark_pkt_gen_t handle)
        if (options("reset")->v.BOOL)
                ark_pktgen_reset(handle);
        if (options("run")->v.BOOL) {
-               PMD_DEBUG_LOG(DEBUG, "Starting packet generator on port %d\n",
+               ARK_PMD_LOG(DEBUG, "Starting packet generator on port %d\n",
                                options("port")->v.INT);
                ark_pktgen_run(handle);
        }