]> Git Repo - linux.git/commitdiff
mm: bring back /sys/kernel/mm
authorHugh Dickins <[email protected]>
Tue, 28 Jan 2014 01:06:55 +0000 (17:06 -0800)
committerLinus Torvalds <[email protected]>
Tue, 28 Jan 2014 05:02:39 +0000 (21:02 -0800)
Commit da29bd36224b ("mm/mm_init.c: make creation of the mm_kobj happen
earlier than device_initcall") changed to pure_initcall(mm_sysfs_init).

That's too early: mm_sysfs_init() depends on core_initcall(ksysfs_init)
to have made the kernel_kobj directory "kernel" in which to create "mm".

Make it postcore_initcall(mm_sysfs_init).  We could use core_initcall(),
and depend upon Makefile link order kernel/ mm/ fs/ ipc/ security/ ...
as core_initcall(debugfs_init) and core_initcall(securityfs_init) do;
but better not.

Signed-off-by: Hugh Dickins <[email protected]>
Acked-by: Paul Gortmaker <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
mm/mm_init.c

index 857a6434e3a58a85467df765ebeab08b8be6f88a..4074caf9936bf399a14fa488b40ac0b5cdb16bdd 100644 (file)
@@ -202,4 +202,4 @@ static int __init mm_sysfs_init(void)
 
        return 0;
 }
-pure_initcall(mm_sysfs_init);
+postcore_initcall(mm_sysfs_init);
This page took 0.056898 seconds and 4 git commands to generate.