diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-12-24 16:01:29 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-12-24 16:01:29 -0500 |
commit | 0b5e2588d8238b03df66c4e74769fd03ad84f694 (patch) | |
tree | 7a7baf0d8309a3473bf265d1354bb756d65a4a02 /mm | |
parent | 6067d7e4f05e5c08617cf95032867d892035e581 (diff) | |
parent | 443c6f145de813518c36ac6b6e4e08d9445337e7 (diff) |
Merge branch 'sysctl' of git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-misc-2.6
* 'sysctl' of git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-misc-2.6:
SYSCTL: Add a mutex to the page_alloc zone order sysctl
SYSCTL: Print binary sysctl warnings (nearly) only once
Diffstat (limited to 'mm')
-rw-r--r-- | mm/page_alloc.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c index d79b92580561..4e9f5cc5fb59 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c | |||
@@ -2402,13 +2402,14 @@ int numa_zonelist_order_handler(ctl_table *table, int write, | |||
2402 | { | 2402 | { |
2403 | char saved_string[NUMA_ZONELIST_ORDER_LEN]; | 2403 | char saved_string[NUMA_ZONELIST_ORDER_LEN]; |
2404 | int ret; | 2404 | int ret; |
2405 | static DEFINE_MUTEX(zl_order_mutex); | ||
2405 | 2406 | ||
2407 | mutex_lock(&zl_order_mutex); | ||
2406 | if (write) | 2408 | if (write) |
2407 | strncpy(saved_string, (char*)table->data, | 2409 | strcpy(saved_string, (char*)table->data); |
2408 | NUMA_ZONELIST_ORDER_LEN); | ||
2409 | ret = proc_dostring(table, write, buffer, length, ppos); | 2410 | ret = proc_dostring(table, write, buffer, length, ppos); |
2410 | if (ret) | 2411 | if (ret) |
2411 | return ret; | 2412 | goto out; |
2412 | if (write) { | 2413 | if (write) { |
2413 | int oldval = user_zonelist_order; | 2414 | int oldval = user_zonelist_order; |
2414 | if (__parse_numa_zonelist_order((char*)table->data)) { | 2415 | if (__parse_numa_zonelist_order((char*)table->data)) { |
@@ -2421,7 +2422,9 @@ int numa_zonelist_order_handler(ctl_table *table, int write, | |||
2421 | } else if (oldval != user_zonelist_order) | 2422 | } else if (oldval != user_zonelist_order) |
2422 | build_all_zonelists(); | 2423 | build_all_zonelists(); |
2423 | } | 2424 | } |
2424 | return 0; | 2425 | out: |
2426 | mutex_unlock(&zl_order_mutex); | ||
2427 | return ret; | ||
2425 | } | 2428 | } |
2426 | 2429 | ||
2427 | 2430 | ||