turn off "ignore nice load". not good with e.

SVN revision: 38498
This commit is contained in:
Carsten Haitzler 2009-01-07 23:39:48 +00:00
parent 37161e8b16
commit a583d8fd09
1 changed files with 4 additions and 1 deletions

View File

@ -70,7 +70,10 @@ main(int argc, char *argv[])
fprintf(stderr, "Unable to open governor interface for writing.\n");
return 1;
}
if (!strcmp(argv[2], "ondemand"))
sys_cpu_setall("ondemand/ignore_nice_load", "0");
else if (!strcmp(argv[2], "conservative"))
sys_cpu_setall("conservative/ignore_nice_load", "0");
return 0;
}
else