Debugfs is not compiled without CONFIG_SYSFS in net-2.6 tree. Move kobject_create_and_add under appropriate ifdef. The fix looks correct from a first glance, but may be the dependency should be added into the Kconfig.
Signed-off-by: Denis V. Lunev <[EMAIL PROTECTED]> --- fs/debugfs/inode.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/fs/debugfs/inode.c b/fs/debugfs/inode.c index d26e282..61cc937 100644 --- a/fs/debugfs/inode.c +++ b/fs/debugfs/inode.c @@ -432,9 +432,11 @@ static int __init debugfs_init(void) { int retval; +#ifdef CONFIG_SYSFS debug_kobj = kobject_create_and_add("debug", kernel_kobj); if (!debug_kobj) return -EINVAL; +#endif retval = register_filesystem(&debug_fs_type); if (retval) -- 1.5.3.rc5 -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html