net/bnxt: fix enable/disable VLAN filtering
[dpdk.git] / lib / librte_eal / windows / eal / eal_thread.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2019 Intel Corporation
3  */
4
5 #include <io.h>
6
7 #include <rte_atomic.h>
8 #include <rte_debug.h>
9 #include <rte_launch.h>
10 #include <rte_lcore.h>
11 #include <rte_per_lcore.h>
12 #include <rte_common.h>
13 #include <eal_thread.h>
14
15 #include "eal_private.h"
16
17 RTE_DEFINE_PER_LCORE(unsigned int, _lcore_id) = LCORE_ID_ANY;
18
19 /*
20  * Send a message to a slave lcore identified by slave_id to call a
21  * function f with argument arg. Once the execution is done, the
22  * remote lcore switch in FINISHED state.
23  */
24 int
25 rte_eal_remote_launch(lcore_function_t *f, void *arg, unsigned int slave_id)
26 {
27         int n;
28         char c = 0;
29         int m2s = lcore_config[slave_id].pipe_master2slave[1];
30         int s2m = lcore_config[slave_id].pipe_slave2master[0];
31
32         if (lcore_config[slave_id].state != WAIT)
33                 return -EBUSY;
34
35         lcore_config[slave_id].f = f;
36         lcore_config[slave_id].arg = arg;
37
38         /* send message */
39         n = 0;
40         while (n == 0 || (n < 0 && errno == EINTR))
41                 n = _write(m2s, &c, 1);
42         if (n < 0)
43                 rte_panic("cannot write on configuration pipe\n");
44
45         /* wait ack */
46         do {
47                 n = _read(s2m, &c, 1);
48         } while (n < 0 && errno == EINTR);
49
50         if (n <= 0)
51                 rte_panic("cannot read on configuration pipe\n");
52
53         return 0;
54 }
55
56 void
57 eal_thread_init_master(unsigned int lcore_id)
58 {
59         /* set the lcore ID in per-lcore memory area */
60         RTE_PER_LCORE(_lcore_id) = lcore_id;
61 }
62
63 static inline pthread_t
64 eal_thread_self(void)
65 {
66         return GetCurrentThreadId();
67 }
68
69 /* main loop of threads */
70 void *
71 eal_thread_loop(void *arg __rte_unused)
72 {
73         char c;
74         int n, ret;
75         unsigned int lcore_id;
76         pthread_t thread_id;
77         int m2s, s2m;
78         char cpuset[RTE_CPU_AFFINITY_STR_LEN];
79
80         thread_id = eal_thread_self();
81
82         /* retrieve our lcore_id from the configuration structure */
83         RTE_LCORE_FOREACH_SLAVE(lcore_id) {
84                 if (thread_id == lcore_config[lcore_id].thread_id)
85                         break;
86         }
87         if (lcore_id == RTE_MAX_LCORE)
88                 rte_panic("cannot retrieve lcore id\n");
89
90         m2s = lcore_config[lcore_id].pipe_master2slave[0];
91         s2m = lcore_config[lcore_id].pipe_slave2master[1];
92
93         /* set the lcore ID in per-lcore memory area */
94         RTE_PER_LCORE(_lcore_id) = lcore_id;
95
96         RTE_LOG(DEBUG, EAL, "lcore %u is ready (tid=%zx;cpuset=[%s])\n",
97                 lcore_id, (uintptr_t)thread_id, cpuset);
98
99         /* read on our pipe to get commands */
100         while (1) {
101                 void *fct_arg;
102
103                 /* wait command */
104                 do {
105                         n = _read(m2s, &c, 1);
106                 } while (n < 0 && errno == EINTR);
107
108                 if (n <= 0)
109                         rte_panic("cannot read on configuration pipe\n");
110
111                 lcore_config[lcore_id].state = RUNNING;
112
113                 /* send ack */
114                 n = 0;
115                 while (n == 0 || (n < 0 && errno == EINTR))
116                         n = _write(s2m, &c, 1);
117                 if (n < 0)
118                         rte_panic("cannot write on configuration pipe\n");
119
120                 if (lcore_config[lcore_id].f == NULL)
121                         rte_panic("NULL function pointer\n");
122
123                 /* call the function and store the return value */
124                 fct_arg = lcore_config[lcore_id].arg;
125                 ret = lcore_config[lcore_id].f(fct_arg);
126                 lcore_config[lcore_id].ret = ret;
127                 rte_wmb();
128
129                 /* when a service core returns, it should go directly to WAIT
130                  * state, because the application will not lcore_wait() for it.
131                  */
132                 if (lcore_config[lcore_id].core_role == ROLE_SERVICE)
133                         lcore_config[lcore_id].state = WAIT;
134                 else
135                         lcore_config[lcore_id].state = FINISHED;
136         }
137 }
138
139 /* function to create threads */
140 int
141 eal_thread_create(pthread_t *thread)
142 {
143         HANDLE th;
144
145         th = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)eal_thread_loop,
146                                                 NULL, 0, (LPDWORD)thread);
147         if (!th)
148                 return -1;
149
150         SetPriorityClass(GetCurrentProcess(), REALTIME_PRIORITY_CLASS);
151         SetThreadPriority(th, THREAD_PRIORITY_TIME_CRITICAL);
152
153         return 0;
154 }