aboutsummaryrefslogtreecommitdiff
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 00000000000..cbebdc5c9a6
--- /dev/null
+++ b/include/linux/path.h
@@ -0,0 +1,12 @@
+#ifndef _LINUX_PATH_H
+#define _LINUX_PATH_H
+
+struct dentry;
+struct vfsmount;
+
+struct path {
+ struct vfsmount *mnt;
+ struct dentry *dentry;
+};
+
+#endif /* _LINUX_PATH_H */