RT-AC56 3.0.0.4.374.37 core
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / include / linux / path.h
blobedc98dec6266c2a7e6a5f3bc9129ed2aa6f3fb00
1 #ifndef _LINUX_PATH_H
2 #define _LINUX_PATH_H
4 struct dentry;
5 struct vfsmount;
7 struct path {
8 struct vfsmount *mnt;
9 struct dentry *dentry;
12 extern void path_get(struct path *);
13 extern void path_put(struct path *);
15 static inline int path_equal(const struct path *path1, const struct path *path2)
17 return path1->mnt == path2->mnt && path1->dentry == path2->dentry;
20 #endif /* _LINUX_PATH_H */