]> Git Repo - linux.git/blob - arch/s390/kernel/kdebugfs.c
mm/slub.c: add a naive detection of double free or corruption
[linux.git] / arch / s390 / kernel / kdebugfs.c
1 #include <linux/debugfs.h>
2 #include <linux/export.h>
3 #include <linux/init.h>
4
5 struct dentry *arch_debugfs_dir;
6 EXPORT_SYMBOL(arch_debugfs_dir);
7
8 static int __init arch_kdebugfs_init(void)
9 {
10         arch_debugfs_dir = debugfs_create_dir("s390", NULL);
11         if (IS_ERR(arch_debugfs_dir))
12                 arch_debugfs_dir = NULL;
13         return 0;
14 }
15 postcore_initcall(arch_kdebugfs_init);
This page took 0.03385 seconds and 4 git commands to generate.