aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/path.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--include/linux/path.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/linux/path.h b/include/linux/path.h
new file mode 100644
index 000000000000..915e0c382a51
--- /dev/null
+++ b/include/linux/path.h
@@ -0,0 +1,15 @@
+#ifndef _LINUX_PATH_H
+#define _LINUX_PATH_H
+
+struct dentry;
+struct vfsmount;
+
+struct path {
+ struct vfsmount *mnt;
+ struct dentry *dentry;
+};
+
+extern void path_get(struct path *);
+extern void path_put(struct path *);
+
+#endif /* _LINUX_PATH_H */