diff options
author | van Hauser <vh@thc.org> | 2019-11-17 10:51:56 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2019-11-17 10:51:56 +0100 |
commit | c96efdcb3656934cfaf5df591511cbb55744a3ef (patch) | |
tree | 4a121f33fa05b61af4cc6b490741feef03b88207 /src | |
parent | 55ef73ed57dbedc871f948e29553bd9d4e0d2261 (diff) | |
download | afl++-c96efdcb3656934cfaf5df591511cbb55744a3ef.tar.gz |
not all CPUs understand ondemand
Diffstat (limited to 'src')
-rw-r--r-- | src/afl-fuzz-init.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/afl-fuzz-init.c b/src/afl-fuzz-init.c index 82ba6f8a..d99f9bec 100644 --- a/src/afl-fuzz-init.c +++ b/src/afl-fuzz-init.c @@ -1562,11 +1562,10 @@ void check_cpu_governor(void) { " echo performance | tee cpu*/cpufreq/scaling_governor\n\n" " You can later go back to the original state by replacing " - "'performance' with\n" - " 'ondemand'. If you don't want to change the settings, set " - "AFL_SKIP_CPUFREQ\n" - " to make afl-fuzz skip this check - but expect some performance " - "drop.\n", + "'performance'\n" + " with 'ondemand' or 'powersave'. If you don't want to change the settings,\n" + " set AFL_SKIP_CPUFREQ to make afl-fuzz skip this check - but expect some\n" + " performance drop.\n", min / 1024, max / 1024); FATAL("Suboptimal CPU scaling governor"); |