mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-19 18:24:14 +08:00
050f99b1b8
Introduce a top-level 's390' directory which should be used when adding new s390 specific debug feature files and/or directories. This makes hopefully sure that the contents of the s390 directory will be a bit more structured. Right now we have a couple of top-level files where it is not easy to tell to which subsystem they belong to. Acked-by: Christian Borntraeger <borntraeger@de.ibm.com> Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
16 lines
354 B
C
16 lines
354 B
C
#include <linux/debugfs.h>
|
|
#include <linux/export.h>
|
|
#include <linux/init.h>
|
|
|
|
struct dentry *arch_debugfs_dir;
|
|
EXPORT_SYMBOL(arch_debugfs_dir);
|
|
|
|
static int __init arch_kdebugfs_init(void)
|
|
{
|
|
arch_debugfs_dir = debugfs_create_dir("s390", NULL);
|
|
if (IS_ERR(arch_debugfs_dir))
|
|
arch_debugfs_dir = NULL;
|
|
return 0;
|
|
}
|
|
postcore_initcall(arch_kdebugfs_init);
|