2008-02-15 04:34:31 +01:00
|
|
|
#ifndef _LINUX_PATH_H
|
|
|
|
#define _LINUX_PATH_H
|
|
|
|
|
|
|
|
struct dentry;
|
|
|
|
struct vfsmount;
|
|
|
|
|
|
|
|
struct path {
|
|
|
|
struct vfsmount *mnt;
|
|
|
|
struct dentry *dentry;
|
|
|
|
};
|
|
|
|
|
2008-02-15 04:34:38 +01:00
|
|
|
extern void path_get(struct path *);
|
2008-02-15 04:34:35 +01:00
|
|
|
extern void path_put(struct path *);
|
|
|
|
|
2008-02-15 04:34:31 +01:00
|
|
|
#endif /* _LINUX_PATH_H */
|