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 */