clarify shutdown on single cpu systems

The warning for core counts indicates we're shutting down because balancing is
ineffective on these systems with a single cache domain, which is true, but it
would be more clear to indicate that the error was the fact we only found a
single cpu.

Signed-off-by: Neil Horman <nhorman@tuxdriver.com>
This commit is contained in:
Neil Horman 2013-09-26 12:31:55 -04:00
parent 078a6588fa
commit c48b2b45a0

View file

@ -303,7 +303,7 @@ int main(int argc, char** argv)
/* On single core UP systems irqbalance obviously has no work to do */
if (core_count<2) {
char *msg = "Balancing is ineffective on systems with a "
"single cache domain. Shutting down\n";
"single cpu. Shutting down\n";
log(TO_ALL, LOG_WARNING, "%s", msg);
exit(EXIT_SUCCESS);