forked from openvswitch/ovs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathovs-numa.h
166 lines (138 loc) · 3.51 KB
/
ovs-numa.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
/*
* Copyright (c) 2014 Nicira, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef OVS_NUMA_H
#define OVS_NUMA_H 1
#include <limits.h>
#include <stdbool.h>
#include "compiler.h"
#include "list.h"
#define OVS_CORE_UNSPEC INT_MAX
#define OVS_NUMA_UNSPEC INT_MAX
/* Dump of a list of 'struct ovs_numa_info'. */
struct ovs_numa_dump {
struct ovs_list dump;
};
/* A numa_id - core_id pair. */
struct ovs_numa_info {
struct ovs_list list_node;
int numa_id;
unsigned core_id;
};
#ifdef __linux__
void ovs_numa_init(void);
bool ovs_numa_numa_id_is_valid(int numa_id);
bool ovs_numa_core_id_is_valid(unsigned core_id);
bool ovs_numa_core_is_pinned(unsigned core_id);
int ovs_numa_get_n_numas(void);
void ovs_numa_set_cpu_mask(const char *cmask);
int ovs_numa_get_n_cores(void);
int ovs_numa_get_numa_id(unsigned core_id);
int ovs_numa_get_n_cores_on_numa(int numa_id);
int ovs_numa_get_n_unpinned_cores_on_numa(int numa_id);
bool ovs_numa_try_pin_core_specific(unsigned core_id);
unsigned ovs_numa_get_unpinned_core_any(void);
unsigned ovs_numa_get_unpinned_core_on_numa(int numa_id);
void ovs_numa_unpin_core(unsigned core_id);
struct ovs_numa_dump *ovs_numa_dump_cores_on_numa(int numa_id);
void ovs_numa_dump_destroy(struct ovs_numa_dump *);
#define FOR_EACH_CORE_ON_NUMA(ITER, DUMP) \
LIST_FOR_EACH((ITER), list_node, &(DUMP)->dump)
#else
static inline void
ovs_numa_init(void)
{
/* Nothing */
}
static inline bool
ovs_numa_numa_id_is_valid(int numa_id OVS_UNUSED)
{
return false;
}
static inline bool
ovs_numa_core_id_is_valid(unsigned core_id OVS_UNUSED)
{
return false;
}
static inline bool
ovs_numa_core_is_pinned(unsigned core_id OVS_UNUSED)
{
return false;
}
static inline void
ovs_numa_set_cpu_mask(const char *cmask OVS_UNUSED)
{
/* Nothing */
}
static inline int
ovs_numa_get_n_numas(void)
{
return OVS_NUMA_UNSPEC;
}
static inline int
ovs_numa_get_n_cores(void)
{
return OVS_CORE_UNSPEC;
}
static inline int
ovs_numa_get_numa_id(unsigned core_id OVS_UNUSED)
{
return OVS_NUMA_UNSPEC;
}
static inline int
ovs_numa_get_n_cores_on_numa(int numa_id OVS_UNUSED)
{
return OVS_CORE_UNSPEC;
}
static inline int
ovs_numa_get_n_unpinned_cores_on_numa(int numa_id OVS_UNUSED)
{
return OVS_CORE_UNSPEC;
}
static inline bool
ovs_numa_try_pin_core_specific(unsigned core_id OVS_UNUSED)
{
return false;
}
static inline unsigned
ovs_numa_get_unpinned_core_any(void)
{
return OVS_CORE_UNSPEC;
}
static inline unsigned
ovs_numa_get_unpinned_core_on_numa(int numa_id OVS_UNUSED)
{
return OVS_CORE_UNSPEC;
}
static inline void
ovs_numa_unpin_core(unsigned core_id OVS_UNUSED)
{
/* Nothing */
}
static inline struct ovs_numa_dump *
ovs_numa_dump_cores_on_numa(int numa_id OVS_UNUSED)
{
return NULL;
}
static inline void
ovs_numa_dump_destroy(struct ovs_numa_dump *dump OVS_UNUSED)
{
/* Nothing */
}
/* No loop. */
#define FOR_EACH_CORE_ON_NUMA(ITER, DUMP) \
for ((ITER) = NULL; (ITER);)
#endif /* __linux__ */
#endif /* ovs-thead.h */