blob: 915e0c382a51fad7a3169748664b5e2153fa645e [file] [log] [blame]
Jan Blunckc5e725f2008-02-14 19:34:31 -08001#ifndef _LINUX_PATH_H
2#define _LINUX_PATH_H
3
4struct dentry;
5struct vfsmount;
6
7struct path {
8 struct vfsmount *mnt;
9 struct dentry *dentry;
10};
11
Jan Blunck5dd784d02008-02-14 19:34:38 -080012extern void path_get(struct path *);
Jan Blunck1d957f92008-02-14 19:34:35 -080013extern void path_put(struct path *);
14
Jan Blunckc5e725f2008-02-14 19:34:31 -080015#endif /* _LINUX_PATH_H */