diff options
Diffstat (limited to 'include/linux/path.h')
-rw-r--r-- | include/linux/path.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/linux/path.h b/include/linux/path.h new file mode 100644 index 00000000000..915e0c382a5 --- /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 */ |