]> git.kernelconcepts.de Git - karo-tx-linux.git/blobdiff - include/linux/path.h
Move struct path into its own header
[karo-tx-linux.git] / include / linux / path.h
diff --git a/include/linux/path.h b/include/linux/path.h
new file mode 100644 (file)
index 0000000..cbebdc5
--- /dev/null
@@ -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 */