Linux Kernel
3.7.1
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Groups
Pages
arch
x86
xen
debugfs.c
Go to the documentation of this file.
1
#include <
linux/init.h
>
2
#include <
linux/debugfs.h
>
3
#include <linux/slab.h>
4
#include <linux/module.h>
5
6
#include "
debugfs.h
"
7
8
static
struct
dentry
*d_xen_debug;
9
10
struct
dentry
*
__init
xen_init_debugfs
(
void
)
11
{
12
if
(!d_xen_debug) {
13
d_xen_debug =
debugfs_create_dir
(
"xen"
,
NULL
);
14
15
if
(!d_xen_debug)
16
pr_warning
(
"Could not create 'xen' debugfs directory\n"
);
17
}
18
19
return
d_xen_debug;
20
}
21
Generated on Thu Jan 10 2013 13:21:58 for Linux Kernel by
1.8.2