diff options
author | Joe Perches <joe@perches.com> | 2016-03-17 17:19:47 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-03-17 18:09:34 -0400 |
commit | 756a025f00091918d9d09ca3229defb160b409c0 (patch) | |
tree | d4a6914597ef4b10870a7983bb61cd595e7094a2 /mm/mempolicy.c | |
parent | 598d80914e84fa79580850530f5d4a50a99bf4f5 (diff) |
mm: coalesce split strings
Kernel style prefers a single string over split strings when the string is
'user-visible'.
Miscellanea:
- Add a missing newline
- Realign arguments
Signed-off-by: Joe Perches <joe@perches.com>
Acked-by: Tejun Heo <tj@kernel.org> [percpu]
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/mempolicy.c')
-rw-r--r-- | mm/mempolicy.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mm/mempolicy.c b/mm/mempolicy.c index 8cbc74387df3..b25de27b83d0 100644 --- a/mm/mempolicy.c +++ b/mm/mempolicy.c | |||
@@ -2559,9 +2559,7 @@ static void __init check_numabalancing_enable(void) | |||
2559 | set_numabalancing_state(numabalancing_override == 1); | 2559 | set_numabalancing_state(numabalancing_override == 1); |
2560 | 2560 | ||
2561 | if (num_online_nodes() > 1 && !numabalancing_override) { | 2561 | if (num_online_nodes() > 1 && !numabalancing_override) { |
2562 | pr_info("%s automatic NUMA balancing. " | 2562 | pr_info("%s automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl\n", |
2563 | "Configure with numa_balancing= or the " | ||
2564 | "kernel.numa_balancing sysctl", | ||
2565 | numabalancing_default ? "Enabling" : "Disabling"); | 2563 | numabalancing_default ? "Enabling" : "Disabling"); |
2566 | set_numabalancing_state(numabalancing_default); | 2564 | set_numabalancing_state(numabalancing_default); |
2567 | } | 2565 | } |