aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/path.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/path.h')
-rw-r--r--include/linux/path.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/linux/path.h b/include/linux/path.h
new file mode 100644
index 000000000000..cbebdc5c9a60
--- /dev/null
+++ b/include/linux/path.h
@@ -0,0 +1,12 @@
1#ifndef _LINUX_PATH_H
2#define _LINUX_PATH_H
3
4struct dentry;
5struct vfsmount;
6
7struct path {
8 struct vfsmount *mnt;
9 struct dentry *dentry;
10};
11
12#endif /* _LINUX_PATH_H */