-
-
Notifications
You must be signed in to change notification settings - Fork 291
/
Copy pathcore-config-check.c
157 lines (140 loc) · 4.33 KB
/
core-config-check.c
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
/*
* Copyright (C) 2024-2025 Colin Ian King.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#include "stress-ng.h"
#include "core-config-check.h"
#include <ctype.h>
#if defined(HAVE_TERMIO_H)
#include <termio.h>
#endif
#if defined(__linux__)
static int stress_config_check_cpu_filter(const struct dirent *d)
{
if (!d)
return 0;
if (strlen(d->d_name) < 4)
return 0;
if (strncmp(d->d_name, "cpu", 3))
return 0;
if (isdigit((unsigned char)d->d_name[3]))
return 1;
return 0;
}
/*
* stress_config_read()
* read a uint64_t value from a file
*/
static int stress_config_read(const char *path, uint64_t *value)
{
char buffer[256];
if (stress_system_read(path, buffer, sizeof(buffer)) < 0)
return -1;
if (!*buffer)
return -1;
if (sscanf(buffer, "%" SCNu64, value) < 0)
return -1;
return 0;
}
#endif
/*
* stress_config_check()
* sanity check system configuration and inform user if
* any sub-optimal performance configurations are being used
*/
void stress_config_check(void)
{
size_t shmall = 0, freemem = 0, totalmem = 0, freeswap = 0, totalswap = 0, freetotal;
#if defined(__linux__)
{
char path[PATH_MAX];
const char *str;
bool is_snap = false;
str = getenv("SNAP_NAME");
if (str) {
char *lowstr = strdup(str);
if (lowstr) {
char *ptr;
for (ptr = lowstr; *ptr; ptr++)
*ptr = (char)tolower((int)*ptr);
if (strstr(lowstr, "stress"))
is_snap = true;
free(lowstr);
}
}
str = stress_get_proc_self_exe(path, sizeof(path));
if (str) {
if (strncmp("/snap/", path, 6) == 0)
is_snap = true;
}
if (is_snap) {
bool oom_avoid = true;
pr_warn("note: stress-ng appears to be a snap and may not "
"run correctly inside this unsupported environment\n");
pr_inf("note: forcibly enabling --oom-avoid for this environment\n");
stress_set_setting_global("oom-avoid", TYPE_ID_BOOL, &oom_avoid);
}
}
if (g_opt_flags & OPT_FLAGS_METRICS) {
static const char autogroup_path[] = "/proc/sys/kernel/sched_autogroup_enabled";
static const char cpu_path[] = "/sys/devices/system/cpu";
uint64_t value;
struct dirent **namelist;
int n, i;
int powersave = 0;
if ((stress_config_read(autogroup_path, &value) != -1) && (value > 0)) {
#if defined(HAVE_TERMIO_H) && \
defined(TCGETS)
struct termios t;
int ret;
ret = ioctl(fileno(stdout), TCGETS, &t);
if ((ret < 0) && (errno == ENOTTY)) {
pr_inf("note: %s is %" PRIu64 " and this can impact "
"scheduling throughput for processes not "
"attached to a tty. Setting this to 0 may "
"improve performance metrics\n", autogroup_path, value);
}
#endif
}
n = scandir(cpu_path, &namelist, stress_config_check_cpu_filter, alphasort);
for (i = 0; i < n; i++) {
char filename[PATH_MAX];
char buffer[64];
(void)snprintf(filename, sizeof(filename), "%s/%s/cpufreq/scaling_governor", cpu_path, namelist[i]->d_name);
if (stress_system_read(filename, buffer, sizeof(buffer)) < 0)
continue;
if (strncmp(buffer, "powersave", 9) == 0)
powersave++;
}
stress_dirent_list_free(namelist, n);
if (powersave > 0) {
pr_inf("note: %d cpus have scaling governors set to "
"powersave and this may impact performance; "
"setting %s/cpu*/cpufreq/scaling_governor to "
"'performance' may improve performance\n",
powersave, cpu_path);
}
}
#endif
stress_get_memlimits(&shmall, &freemem, &totalmem, &freeswap, &totalswap);
freetotal = freemem + freeswap;
if (((freemem > 0) && (freemem < (size_t)(256 * MB))) ||
((freetotal > 0) && (freetotal < (size_t)(512 * MB)))) {
pr_inf("note: system has only %zu MB of free memory and swap, "
"recommend using --oom-avoid\n", freetotal / (size_t)MB);
}
}