ring: remove debug setting
[dpdk.git] / test / test / test_ring.c
index 5f09097..3891f5d 100644 (file)
@@ -763,412 +763,6 @@ test_ring_burst_basic(void)
        return -1;
 }
 
-static int
-test_ring_stats(void)
-{
-
-#ifndef RTE_LIBRTE_RING_DEBUG
-       printf("Enable RTE_LIBRTE_RING_DEBUG to test ring stats.\n");
-       return 0;
-#else
-       void **src = NULL, **cur_src = NULL, **dst = NULL, **cur_dst = NULL;
-       int ret;
-       unsigned i;
-       unsigned num_items            = 0;
-       unsigned failed_enqueue_ops   = 0;
-       unsigned failed_enqueue_items = 0;
-       unsigned failed_dequeue_ops   = 0;
-       unsigned failed_dequeue_items = 0;
-       unsigned last_enqueue_ops     = 0;
-       unsigned last_enqueue_items   = 0;
-       unsigned last_quota_ops       = 0;
-       unsigned last_quota_items     = 0;
-       unsigned lcore_id = rte_lcore_id();
-       struct rte_ring_debug_stats *ring_stats = &r->stats[lcore_id];
-
-       printf("Test the ring stats.\n");
-
-       /* Reset the watermark in case it was set in another test. */
-       rte_ring_set_water_mark(r, 0);
-
-       /* Reset the ring stats. */
-       memset(&r->stats[lcore_id], 0, sizeof(r->stats[lcore_id]));
-
-       /* Allocate some dummy object pointers. */
-       src = malloc(RING_SIZE*2*sizeof(void *));
-       if (src == NULL)
-               goto fail;
-
-       for (i = 0; i < RING_SIZE*2 ; i++) {
-               src[i] = (void *)(unsigned long)i;
-       }
-
-       /* Allocate some memory for copied objects. */
-       dst = malloc(RING_SIZE*2*sizeof(void *));
-       if (dst == NULL)
-               goto fail;
-
-       memset(dst, 0, RING_SIZE*2*sizeof(void *));
-
-       /* Set the head and tail pointers. */
-       cur_src = src;
-       cur_dst = dst;
-
-       /* Do Enqueue tests. */
-       printf("Test the dequeue stats.\n");
-
-       /* Fill the ring up to RING_SIZE -1. */
-       printf("Fill the ring.\n");
-       for (i = 0; i< (RING_SIZE/MAX_BULK); i++) {
-               rte_ring_sp_enqueue_burst(r, cur_src, MAX_BULK);
-               cur_src += MAX_BULK;
-       }
-
-       /* Adjust for final enqueue = MAX_BULK -1. */
-       cur_src--;
-
-       printf("Verify that the ring is full.\n");
-       if (rte_ring_full(r) != 1)
-               goto fail;
-
-
-       printf("Verify the enqueue success stats.\n");
-       /* Stats should match above enqueue operations to fill the ring. */
-       if (ring_stats->enq_success_bulk != (RING_SIZE/MAX_BULK))
-               goto fail;
-
-       /* Current max objects is RING_SIZE -1. */
-       if (ring_stats->enq_success_objs != RING_SIZE -1)
-               goto fail;
-
-       /* Shouldn't have any failures yet. */
-       if (ring_stats->enq_fail_bulk != 0)
-               goto fail;
-       if (ring_stats->enq_fail_objs != 0)
-               goto fail;
-
-
-       printf("Test stats for SP burst enqueue to a full ring.\n");
-       num_items = 2;
-       ret = rte_ring_sp_enqueue_burst(r, cur_src, num_items);
-       if ((ret & RTE_RING_SZ_MASK) != 0)
-               goto fail;
-
-       failed_enqueue_ops   += 1;
-       failed_enqueue_items += num_items;
-
-       /* The enqueue should have failed. */
-       if (ring_stats->enq_fail_bulk != failed_enqueue_ops)
-               goto fail;
-       if (ring_stats->enq_fail_objs != failed_enqueue_items)
-               goto fail;
-
-
-       printf("Test stats for SP bulk enqueue to a full ring.\n");
-       num_items = 4;
-       ret = rte_ring_sp_enqueue_bulk(r, cur_src, num_items);
-       if (ret != -ENOBUFS)
-               goto fail;
-
-       failed_enqueue_ops   += 1;
-       failed_enqueue_items += num_items;
-
-       /* The enqueue should have failed. */
-       if (ring_stats->enq_fail_bulk != failed_enqueue_ops)
-               goto fail;
-       if (ring_stats->enq_fail_objs != failed_enqueue_items)
-               goto fail;
-
-
-       printf("Test stats for MP burst enqueue to a full ring.\n");
-       num_items = 8;
-       ret = rte_ring_mp_enqueue_burst(r, cur_src, num_items);
-       if ((ret & RTE_RING_SZ_MASK) != 0)
-               goto fail;
-
-       failed_enqueue_ops   += 1;
-       failed_enqueue_items += num_items;
-
-       /* The enqueue should have failed. */
-       if (ring_stats->enq_fail_bulk != failed_enqueue_ops)
-               goto fail;
-       if (ring_stats->enq_fail_objs != failed_enqueue_items)
-               goto fail;
-
-
-       printf("Test stats for MP bulk enqueue to a full ring.\n");
-       num_items = 16;
-       ret = rte_ring_mp_enqueue_bulk(r, cur_src, num_items);
-       if (ret != -ENOBUFS)
-               goto fail;
-
-       failed_enqueue_ops   += 1;
-       failed_enqueue_items += num_items;
-
-       /* The enqueue should have failed. */
-       if (ring_stats->enq_fail_bulk != failed_enqueue_ops)
-               goto fail;
-       if (ring_stats->enq_fail_objs != failed_enqueue_items)
-               goto fail;
-
-
-       /* Do Dequeue tests. */
-       printf("Test the dequeue stats.\n");
-
-       printf("Empty the ring.\n");
-       for (i = 0; i<RING_SIZE/MAX_BULK; i++) {
-               rte_ring_sc_dequeue_burst(r, cur_dst, MAX_BULK);
-               cur_dst += MAX_BULK;
-       }
-
-       /* There was only RING_SIZE -1 objects to dequeue. */
-       cur_dst++;
-
-       printf("Verify ring is empty.\n");
-       if (1 != rte_ring_empty(r))
-               goto fail;
-
-       printf("Verify the dequeue success stats.\n");
-       /* Stats should match above dequeue operations. */
-       if (ring_stats->deq_success_bulk != (RING_SIZE/MAX_BULK))
-               goto fail;
-
-       /* Objects dequeued is RING_SIZE -1. */
-       if (ring_stats->deq_success_objs != RING_SIZE -1)
-               goto fail;
-
-       /* Shouldn't have any dequeue failure stats yet. */
-       if (ring_stats->deq_fail_bulk != 0)
-               goto fail;
-
-       printf("Test stats for SC burst dequeue with an empty ring.\n");
-       num_items = 2;
-       ret = rte_ring_sc_dequeue_burst(r, cur_dst, num_items);
-       if ((ret & RTE_RING_SZ_MASK) != 0)
-               goto fail;
-
-       failed_dequeue_ops   += 1;
-       failed_dequeue_items += num_items;
-
-       /* The dequeue should have failed. */
-       if (ring_stats->deq_fail_bulk != failed_dequeue_ops)
-               goto fail;
-       if (ring_stats->deq_fail_objs != failed_dequeue_items)
-               goto fail;
-
-
-       printf("Test stats for SC bulk dequeue with an empty ring.\n");
-       num_items = 4;
-       ret = rte_ring_sc_dequeue_bulk(r, cur_dst, num_items);
-       if (ret != -ENOENT)
-               goto fail;
-
-       failed_dequeue_ops   += 1;
-       failed_dequeue_items += num_items;
-
-       /* The dequeue should have failed. */
-       if (ring_stats->deq_fail_bulk != failed_dequeue_ops)
-               goto fail;
-       if (ring_stats->deq_fail_objs != failed_dequeue_items)
-               goto fail;
-
-
-       printf("Test stats for MC burst dequeue with an empty ring.\n");
-       num_items = 8;
-       ret = rte_ring_mc_dequeue_burst(r, cur_dst, num_items);
-       if ((ret & RTE_RING_SZ_MASK) != 0)
-               goto fail;
-       failed_dequeue_ops   += 1;
-       failed_dequeue_items += num_items;
-
-       /* The dequeue should have failed. */
-       if (ring_stats->deq_fail_bulk != failed_dequeue_ops)
-               goto fail;
-       if (ring_stats->deq_fail_objs != failed_dequeue_items)
-               goto fail;
-
-
-       printf("Test stats for MC bulk dequeue with an empty ring.\n");
-       num_items = 16;
-       ret = rte_ring_mc_dequeue_bulk(r, cur_dst, num_items);
-       if (ret != -ENOENT)
-               goto fail;
-
-       failed_dequeue_ops   += 1;
-       failed_dequeue_items += num_items;
-
-       /* The dequeue should have failed. */
-       if (ring_stats->deq_fail_bulk != failed_dequeue_ops)
-               goto fail;
-       if (ring_stats->deq_fail_objs != failed_dequeue_items)
-               goto fail;
-
-
-       printf("Test total enqueue/dequeue stats.\n");
-       /* At this point the enqueue and dequeue stats should be the same. */
-       if (ring_stats->enq_success_bulk != ring_stats->deq_success_bulk)
-               goto fail;
-       if (ring_stats->enq_success_objs != ring_stats->deq_success_objs)
-               goto fail;
-       if (ring_stats->enq_fail_bulk    != ring_stats->deq_fail_bulk)
-               goto fail;
-       if (ring_stats->enq_fail_objs    != ring_stats->deq_fail_objs)
-               goto fail;
-
-
-       /* Watermark Tests. */
-       printf("Test the watermark/quota stats.\n");
-
-       printf("Verify the initial watermark stats.\n");
-       /* Watermark stats should be 0 since there is no watermark. */
-       if (ring_stats->enq_quota_bulk != 0)
-               goto fail;
-       if (ring_stats->enq_quota_objs != 0)
-               goto fail;
-
-       /* Set a watermark. */
-       rte_ring_set_water_mark(r, 16);
-
-       /* Reset pointers. */
-       cur_src = src;
-       cur_dst = dst;
-
-       last_enqueue_ops   = ring_stats->enq_success_bulk;
-       last_enqueue_items = ring_stats->enq_success_objs;
-
-
-       printf("Test stats for SP burst enqueue below watermark.\n");
-       num_items = 8;
-       ret = rte_ring_sp_enqueue_burst(r, cur_src, num_items);
-       if ((ret & RTE_RING_SZ_MASK) != num_items)
-               goto fail;
-
-       /* Watermark stats should still be 0. */
-       if (ring_stats->enq_quota_bulk != 0)
-               goto fail;
-       if (ring_stats->enq_quota_objs != 0)
-               goto fail;
-
-       /* Success stats should have increased. */
-       if (ring_stats->enq_success_bulk != last_enqueue_ops + 1)
-               goto fail;
-       if (ring_stats->enq_success_objs != last_enqueue_items + num_items)
-               goto fail;
-
-       last_enqueue_ops   = ring_stats->enq_success_bulk;
-       last_enqueue_items = ring_stats->enq_success_objs;
-
-
-       printf("Test stats for SP burst enqueue at watermark.\n");
-       num_items = 8;
-       ret = rte_ring_sp_enqueue_burst(r, cur_src, num_items);
-       if ((ret & RTE_RING_SZ_MASK) != num_items)
-               goto fail;
-
-       /* Watermark stats should have changed. */
-       if (ring_stats->enq_quota_bulk != 1)
-               goto fail;
-       if (ring_stats->enq_quota_objs != num_items)
-               goto fail;
-
-       last_quota_ops   = ring_stats->enq_quota_bulk;
-       last_quota_items = ring_stats->enq_quota_objs;
-
-
-       printf("Test stats for SP burst enqueue above watermark.\n");
-       num_items = 1;
-       ret = rte_ring_sp_enqueue_burst(r, cur_src, num_items);
-       if ((ret & RTE_RING_SZ_MASK) != num_items)
-               goto fail;
-
-       /* Watermark stats should have changed. */
-       if (ring_stats->enq_quota_bulk != last_quota_ops +1)
-               goto fail;
-       if (ring_stats->enq_quota_objs != last_quota_items + num_items)
-               goto fail;
-
-       last_quota_ops   = ring_stats->enq_quota_bulk;
-       last_quota_items = ring_stats->enq_quota_objs;
-
-
-       printf("Test stats for MP burst enqueue above watermark.\n");
-       num_items = 2;
-       ret = rte_ring_mp_enqueue_burst(r, cur_src, num_items);
-       if ((ret & RTE_RING_SZ_MASK) != num_items)
-               goto fail;
-
-       /* Watermark stats should have changed. */
-       if (ring_stats->enq_quota_bulk != last_quota_ops +1)
-               goto fail;
-       if (ring_stats->enq_quota_objs != last_quota_items + num_items)
-               goto fail;
-
-       last_quota_ops   = ring_stats->enq_quota_bulk;
-       last_quota_items = ring_stats->enq_quota_objs;
-
-
-       printf("Test stats for SP bulk enqueue above watermark.\n");
-       num_items = 4;
-       ret = rte_ring_sp_enqueue_bulk(r, cur_src, num_items);
-       if (ret != -EDQUOT)
-               goto fail;
-
-       /* Watermark stats should have changed. */
-       if (ring_stats->enq_quota_bulk != last_quota_ops +1)
-               goto fail;
-       if (ring_stats->enq_quota_objs != last_quota_items + num_items)
-               goto fail;
-
-       last_quota_ops   = ring_stats->enq_quota_bulk;
-       last_quota_items = ring_stats->enq_quota_objs;
-
-
-       printf("Test stats for MP bulk enqueue above watermark.\n");
-       num_items = 8;
-       ret = rte_ring_mp_enqueue_bulk(r, cur_src, num_items);
-       if (ret != -EDQUOT)
-               goto fail;
-
-       /* Watermark stats should have changed. */
-       if (ring_stats->enq_quota_bulk != last_quota_ops +1)
-               goto fail;
-       if (ring_stats->enq_quota_objs != last_quota_items + num_items)
-               goto fail;
-
-       printf("Test watermark success stats.\n");
-       /* Success stats should be same as last non-watermarked enqueue. */
-       if (ring_stats->enq_success_bulk != last_enqueue_ops)
-               goto fail;
-       if (ring_stats->enq_success_objs != last_enqueue_items)
-               goto fail;
-
-
-       /* Cleanup. */
-
-       /* Empty the ring. */
-       for (i = 0; i<RING_SIZE/MAX_BULK; i++) {
-               rte_ring_sc_dequeue_burst(r, cur_dst, MAX_BULK);
-               cur_dst += MAX_BULK;
-       }
-
-       /* Reset the watermark. */
-       rte_ring_set_water_mark(r, 0);
-
-       /* Reset the ring stats. */
-       memset(&r->stats[lcore_id], 0, sizeof(r->stats[lcore_id]));
-
-       /* Free memory before test completed */
-       free(src);
-       free(dst);
-       return 0;
-
-fail:
-       free(src);
-       free(dst);
-       return -1;
-#endif
-}
-
 /*
  * it will always fail to create ring with a wrong ring size number in this function
  */
@@ -1335,10 +929,6 @@ test_ring(void)
        if (test_ring_basic() < 0)
                return -1;
 
-       /* ring stats */
-       if (test_ring_stats() < 0)
-               return -1;
-
        /* basic operations */
        if (test_live_watermark_change() < 0)
                return -1;