diff options
Diffstat (limited to 'include/linux/path.h')
-rw-r--r-- | include/linux/path.h | 12 |
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 | |||
4 | struct dentry; | ||
5 | struct vfsmount; | ||
6 | |||
7 | struct path { | ||
8 | struct vfsmount *mnt; | ||
9 | struct dentry *dentry; | ||
10 | }; | ||
11 | |||
12 | #endif /* _LINUX_PATH_H */ | ||