remove version in all files
[dpdk.git] / lib / librte_eal / common / eal_common_launch.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  */
34
35 #include <errno.h>
36 #include <stdint.h>
37 #include <stdio.h>
38 #include <sys/queue.h>
39
40 #include <rte_launch.h>
41 #include <rte_memory.h>
42 #include <rte_memzone.h>
43 #include <rte_tailq.h>
44 #include <rte_eal.h>
45 #include <rte_atomic.h>
46 #include <rte_per_lcore.h>
47 #include <rte_lcore.h>
48
49 /*
50  * Wait until a lcore finished its job.
51  */
52 int
53 rte_eal_wait_lcore(unsigned slave_id)
54 {
55         if (lcore_config[slave_id].state == WAIT)
56                 return 0;
57
58         while (lcore_config[slave_id].state != WAIT &&
59                lcore_config[slave_id].state != FINISHED);
60
61         rte_rmb();
62
63         /* we are in finished state, go to wait state */
64         lcore_config[slave_id].state = WAIT;
65         return lcore_config[slave_id].ret;
66 }
67
68 /*
69  * Check that every SLAVE lcores are in WAIT state, then call
70  * rte_eal_remote_launch() for all of them. If call_master is true
71  * (set to CALL_MASTER), also call the function on the master lcore.
72  */
73 int
74 rte_eal_mp_remote_launch(int (*f)(void *), void *arg,
75                          enum rte_rmt_call_master_t call_master)
76 {
77         int lcore_id;
78         int master = rte_get_master_lcore();
79
80         /* check state of lcores */
81         RTE_LCORE_FOREACH_SLAVE(lcore_id) {
82                 if (lcore_config[lcore_id].state != WAIT)
83                         return -EBUSY;
84         }
85
86         /* send messages to cores */
87         RTE_LCORE_FOREACH_SLAVE(lcore_id) {
88                 rte_eal_remote_launch(f, arg, lcore_id);
89         }
90
91         if (call_master == CALL_MASTER) {
92                 lcore_config[master].ret = f(arg);
93                 lcore_config[master].state = FINISHED;
94         }
95
96         return 0;
97 }
98
99 /*
100  * Return the state of the lcore identified by slave_id.
101  */
102 enum rte_lcore_state_t
103 rte_eal_get_lcore_state(unsigned lcore_id)
104 {
105         return lcore_config[lcore_id].state;
106 }
107
108 /*
109  * Do a rte_eal_wait_lcore() for every lcore. The return values are
110  * ignored.
111  */
112 void
113 rte_eal_mp_wait_lcore(void)
114 {
115         unsigned lcore_id;
116
117         RTE_LCORE_FOREACH_SLAVE(lcore_id) {
118                 rte_eal_wait_lcore(lcore_id);
119         }
120 }
121