4 * Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
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
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.
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.
41 #include <sys/queue.h>
42 #include <sys/syscall.h>
44 #include <rte_debug.h>
45 #include <rte_atomic.h>
46 #include <rte_launch.h>
48 #include <rte_memory.h>
49 #include <rte_memzone.h>
50 #include <rte_per_lcore.h>
52 #include <rte_lcore.h>
54 #include "eal_private.h"
55 #include "eal_thread.h"
57 RTE_DEFINE_PER_LCORE(unsigned, _lcore_id) = LCORE_ID_ANY;
58 RTE_DEFINE_PER_LCORE(unsigned, _socket_id) = (unsigned)SOCKET_ID_ANY;
59 RTE_DEFINE_PER_LCORE(rte_cpuset_t, _cpuset);
62 * Send a message to a slave lcore identified by slave_id to call a
63 * function f with argument arg. Once the execution is done, the
64 * remote lcore switch in FINISHED state.
67 rte_eal_remote_launch(int (*f)(void *), void *arg, unsigned slave_id)
71 int m2s = lcore_config[slave_id].pipe_master2slave[1];
72 int s2m = lcore_config[slave_id].pipe_slave2master[0];
74 if (lcore_config[slave_id].state != WAIT)
77 lcore_config[slave_id].f = f;
78 lcore_config[slave_id].arg = arg;
82 while (n == 0 || (n < 0 && errno == EINTR))
83 n = write(m2s, &c, 1);
85 rte_panic("cannot write on configuration pipe\n");
90 } while (n < 0 && errno == EINTR);
93 rte_panic("cannot read on configuration pipe\n");
98 /* set affinity for current EAL thread */
100 eal_thread_set_affinity(void)
102 unsigned lcore_id = rte_lcore_id();
104 /* acquire system unique id */
107 /* update EAL thread core affinity */
108 return rte_thread_set_affinity(&lcore_config[lcore_id].cpuset);
111 void eal_thread_init_master(unsigned lcore_id)
113 /* set the lcore ID in per-lcore memory area */
114 RTE_PER_LCORE(_lcore_id) = lcore_id;
116 /* set CPU affinity */
117 if (eal_thread_set_affinity() < 0)
118 rte_panic("cannot set affinity\n");
121 /* main loop of threads */
122 __attribute__((noreturn)) void *
123 eal_thread_loop(__attribute__((unused)) void *arg)
130 char cpuset[RTE_CPU_AFFINITY_STR_LEN];
132 thread_id = pthread_self();
134 /* retrieve our lcore_id from the configuration structure */
135 RTE_LCORE_FOREACH_SLAVE(lcore_id) {
136 if (thread_id == lcore_config[lcore_id].thread_id)
139 if (lcore_id == RTE_MAX_LCORE)
140 rte_panic("cannot retrieve lcore id\n");
142 m2s = lcore_config[lcore_id].pipe_master2slave[0];
143 s2m = lcore_config[lcore_id].pipe_slave2master[1];
145 /* set the lcore ID in per-lcore memory area */
146 RTE_PER_LCORE(_lcore_id) = lcore_id;
148 /* set CPU affinity */
149 if (eal_thread_set_affinity() < 0)
150 rte_panic("cannot set affinity\n");
152 ret = eal_thread_dump_affinity(cpuset, RTE_CPU_AFFINITY_STR_LEN);
154 RTE_LOG(DEBUG, EAL, "lcore %u is ready (tid=%x;cpuset=[%s%s])\n",
155 lcore_id, (int)thread_id, cpuset, ret == 0 ? "" : "...");
157 /* read on our pipe to get commands */
163 n = read(m2s, &c, 1);
164 } while (n < 0 && errno == EINTR);
167 rte_panic("cannot read on configuration pipe\n");
169 lcore_config[lcore_id].state = RUNNING;
173 while (n == 0 || (n < 0 && errno == EINTR))
174 n = write(s2m, &c, 1);
176 rte_panic("cannot write on configuration pipe\n");
178 if (lcore_config[lcore_id].f == NULL)
179 rte_panic("NULL function pointer\n");
181 /* call the function and store the return value */
182 fct_arg = lcore_config[lcore_id].arg;
183 ret = lcore_config[lcore_id].f(fct_arg);
184 lcore_config[lcore_id].ret = ret;
187 /* when a service core returns, it should go directly to WAIT
188 * state, because the application will not lcore_wait() for it.
190 if (lcore_config[lcore_id].core_role == ROLE_SERVICE)
191 lcore_config[lcore_id].state = WAIT;
193 lcore_config[lcore_id].state = FINISHED;
197 /* pthread_exit(NULL); */
201 /* require calling thread tid by gettid() */
202 int rte_sys_gettid(void)
204 return (int)syscall(SYS_gettid);
207 int rte_thread_setname(pthread_t id, const char *name)
210 #if defined(__GLIBC__) && defined(__GLIBC_PREREQ)
211 #if __GLIBC_PREREQ(2, 12)
212 ret = pthread_setname_np(id, name);