modules: Fix build error in the !CONFIG_KALLSYMS case
authorIngo Molnar <mingo@elte.hu>
Fri, 28 Aug 2009 08:44:56 +0000 (10:44 +0200)
committerLinus Torvalds <torvalds@linux-foundation.org>
Sat, 29 Aug 2009 05:35:00 +0000 (19:35 -1000)
commitea6bff368548d79529421a9dc0710fc5330eb504
tree94739882e72fabd5d3822af80a45a8aea3d52c1d
parent4ed86af67e04cb5eb93faba589d102726207865a
modules: Fix build error in the !CONFIG_KALLSYMS case

> James Bottomley (1):
>       module: workaround duplicate section names

-tip testing found that this patch breaks the build on x86 if
CONFIG_KALLSYMS is disabled:

 kernel/module.c: In function ‘load_module’:
 kernel/module.c:2367: error: ‘struct module’ has no member named ‘sect_attrs’
 distcc[8269] ERROR: compile kernel/module.c on ph/32 failed
 make[1]: *** [kernel/module.o] Error 1
 make: *** [kernel] Error 2
 make: *** Waiting for unfinished jobs....

Commit 1b364bf misses the fact that section attributes are only
built and dealt with if kallsyms is enabled. The patch below fixes
this.

( note, technically speaking this should depend on CONFIG_SYSFS as
  well but this patch is correct too and keeps the #ifdef less
  intrusive - in the KALLSYMS && !SYSFS case the code is a NOP. )

Signed-off-by: Ingo Molnar <mingo@elte.hu>
[ Replaced patch with a slightly cleaner variation by James Bottomley ]
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
kernel/module.c