sched, cpusets: fix warning in kernel/cpuset.c
authorIngo Molnar <mingo@elte.hu>
Tue, 25 Nov 2008 09:27:49 +0000 (10:27 +0100)
committerIngo Molnar <mingo@elte.hu>
Sat, 29 Nov 2008 19:39:29 +0000 (20:39 +0100)
this warning:

  kernel/cpuset.c: In function ‘generate_sched_domains’:
  kernel/cpuset.c:588: warning: ‘ndoms’ may be used uninitialized in this function

triggers because GCC does not recognize that ndoms stays uninitialized
only if doms is NULL - but that flow is covered at the end of
generate_sched_domains().

Help out GCC by initializing this variable to 0. (that's prudent anyway)

Also, this function needs a splitup and code flow simplification:
with 160 lines length it's clearly too long.

Signed-off-by: Ingo Molnar <mingo@elte.hu>

No differences found