Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=dfacd68e495bb324ad6e92f4dfcf479dd447c8d3
Commit:     dfacd68e495bb324ad6e92f4dfcf479dd447c8d3
Parent:     ae9458d6a0956aa21cb49e1251e35a8d4dacbe6e
Author:     Paul Mundt <[EMAIL PROTECTED]>
AuthorDate: Thu Jan 31 18:12:34 2008 +0900
Committer:  Greg Kroah-Hartman <[EMAIL PROTECTED]>
CommitDate: Sat Feb 2 15:14:46 2008 -0800

    kobject: Always build in kernel/ksysfs.o.
    
    kernel/ksysfs.c seems to be a random dumping group for misc globals
    that the rest of the tree depend on. This has caused problems with
    exports in the past when sysfs is disabled, which can already be
    observed in commit-id 51107301b629640f9ab76fe23bf385e187b9ac29.
    
    The latest one is the kernel_kobj usage, which presently results in:
    
    fs/built-in.o: In function `debugfs_init':
    inode.c:(.init.text+0xc34): undefined reference to `kernel_kobj'
    make: *** [.tmp_vmlinux1] Error 1
    
    kernel/ksysfs.c itself at this point only contains globals and some
    basic sysfs initialization, the sysfs initialization code is optimized
    out when we build with sysfs disabled. Given that, it's easier to just
    build in unconditionally, rather than trying to find some other random
    place to dump and initialize the globals.
    
    Additionally, the current trend seems to be decoupling of kobjects from
    sysfs, in which case it still makes sense to perform the kernel_kobj
    initialization that happens here even if sysfs is disabled, as
    lib/kobject.o is built-in unconditionally.
    
    Signed-off-by: Paul Mundt <[EMAIL PROTECTED]>
    Signed-off-by: Greg Kroah-Hartman <[EMAIL PROTECTED]>
---
 kernel/Makefile |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/kernel/Makefile b/kernel/Makefile
index 8885627..db9af70 100644
--- a/kernel/Makefile
+++ b/kernel/Makefile
@@ -9,7 +9,7 @@ obj-y     = sched.o fork.o exec_domain.o panic.o printk.o 
profile.o \
            rcupdate.o extable.o params.o posix-timers.o \
            kthread.o wait.o kfifo.o sys_ni.o posix-cpu-timers.o mutex.o \
            hrtimer.o rwsem.o latency.o nsproxy.o srcu.o \
-           utsname.o notifier.o
+           utsname.o notifier.o ksysfs.o
 
 obj-$(CONFIG_SYSCTL) += sysctl_check.o
 obj-$(CONFIG_STACKTRACE) += stacktrace.o
@@ -49,7 +49,6 @@ obj-$(CONFIG_AUDIT) += audit.o auditfilter.o
 obj-$(CONFIG_AUDITSYSCALL) += auditsc.o
 obj-$(CONFIG_AUDIT_TREE) += audit_tree.o
 obj-$(CONFIG_KPROBES) += kprobes.o
-obj-$(CONFIG_SYSFS) += ksysfs.o
 obj-$(CONFIG_DETECT_SOFTLOCKUP) += softlockup.o
 obj-$(CONFIG_GENERIC_HARDIRQS) += irq/
 obj-$(CONFIG_SECCOMP) += seccomp.o
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to