forked from ColinIanKing/stress-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
core-config-check.c
106 lines (95 loc) · 2.82 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
/*
* Copyright (C) 2023 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"
#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((int)d->d_name[3]))
return 1;
return 0;
}
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
void stress_config_check(void)
{
#if defined(__linux__)
{
static char path[] = "/proc/sys/kernel/sched_autogroup_enabled";
uint64_t value;
if ((stress_config_read(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", path, value);
}
#endif
}
}
{
struct dirent **namelist;
static char path[] = "/sys/devices/system/cpu";
int n, i;
int powersave = 0;
n = scandir(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", 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 can impact on performance; "
"setting %s/cpu*/cpufreq/scaling_governor to "
"'performance' may improve performance\n",
powersave, path);
}
}
#endif
}