commit | d5dd3db1dce73cdd5c45c5a3498c51bd21b8864b | [log] [tgz] |
---|---|---|
author | Rusty Russell <rusty@rustcorp.com.au> | Tue Nov 25 02:35:12 2008 +1030 |
committer | Ingo Molnar <mingo@elte.hu> | Mon Nov 24 17:52:03 2008 +0100 |
tree | e81e5ce114a530136e9c057337c5afbcaf436f5c | |
parent | 5a16f3d30ca4e3f166d691220c003066a14e32b5 [diff] |
sched: convert sched_domain_debug to cpumask_var_t. Impact: stack usage reduction Dynamically allocating cpumasks (when CONFIG_CPUMASK_OFFSTACK) saves stack space. cpumask_var_t is just a struct cpumask for !CONFIG_CPUMASK_OFFSTACK. In this case, we always alloced, but we don't need to any more. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Signed-off-by: Ingo Molnar <mingo@elte.hu>