first public release
[dpdk.git] / app / chkincs / test_ring.c
1 /*-
2  *   BSD LICENSE
3  * 
4  *   Copyright(c) 2010-2012 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  * 
7  *   Redistribution and use in source and binary forms, with or without 
8  *   modification, are permitted provided that the following conditions 
9  *   are met:
10  * 
11  *     * Redistributions of source code must retain the above copyright 
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright 
14  *       notice, this list of conditions and the following disclaimer in 
15  *       the documentation and/or other materials provided with the 
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its 
18  *       contributors may be used to endorse or promote products derived 
19  *       from this software without specific prior written permission.
20  * 
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  * 
33  *  version: DPDK.L.1.2.3-3
34  */
35
36 #include <rte_ring.h>
37
38 #include "test.h"
39
40 #define MAX_BULK 16
41 #define RING_SIZE 4096
42
43 /*
44  *      ^
45  *     / \
46  *    / | \     WARNING: this test program does *not* show how to use the
47  *   /  .  \    API. Its only goal is to check dependencies of include files.
48  *  /_______\
49  */
50
51 int
52 test_ring(void)
53 {
54         struct rte_ring *r;
55         void *ptrs[MAX_BULK];
56         int x;
57
58         r = rte_ring_create("test", RING_SIZE, SOCKET_ID_ANY, 0);
59         if (r == 0) {
60                 return -1;
61         }
62         rte_ring_dump(r);
63
64         rte_ring_set_bulk_count(r, MAX_BULK);
65         rte_ring_set_water_mark(r, 50);
66
67         rte_ring_sp_enqueue_bulk(r, &ptrs[0], 1);
68         rte_ring_mp_enqueue_bulk(r, &ptrs[0], 1);
69         rte_ring_sp_enqueue_bulk(r, &ptrs[0], MAX_BULK);
70         rte_ring_mp_enqueue_bulk(r, &ptrs[0], MAX_BULK);
71         rte_ring_enqueue_bulk(r, &ptrs[0], MAX_BULK);
72         rte_ring_enqueue_bulk(r, &ptrs[0], MAX_BULK);
73         rte_ring_sp_enqueue(r, &ptrs[0]);
74         rte_ring_mp_enqueue(r, &ptrs[0]);
75         rte_ring_enqueue(r, &ptrs[0]);
76
77         rte_ring_sc_dequeue_bulk(r, &ptrs[0], 1);
78         rte_ring_sc_dequeue_bulk(r, &ptrs[0], MAX_BULK);
79         rte_ring_mc_dequeue_bulk(r, &ptrs[0], 1);
80         rte_ring_mc_dequeue_bulk(r, &ptrs[0], MAX_BULK);
81         rte_ring_dequeue_bulk(r, &ptrs[0], 1);
82         rte_ring_dequeue_bulk(r, &ptrs[0], MAX_BULK);
83         rte_ring_sc_dequeue(r, &ptrs[0]);
84         rte_ring_mc_dequeue(r, &ptrs[0]);
85         rte_ring_dequeue(r, &ptrs[0]);
86
87         __RING_STAT_ADD(r, enq_fail, 10);
88
89         x = rte_ring_full(r);
90         x = rte_ring_empty(r);
91         x = rte_ring_count(r);
92         x = rte_ring_free_count(r);
93
94         (void)x;
95
96         return 0;
97 }