Release 4.7 include/linux/path.h
#ifndef _LINUX_PATH_H
#define _LINUX_PATH_H
struct dentry;
struct vfsmount;
struct path {
struct vfsmount *mnt;
struct dentry *dentry;
};
extern void path_get(const struct path *);
extern void path_put(const struct path *);
static inline int path_equal(const struct path *path1, const struct path *path2)
{
return path1->mnt == path2->mnt && path1->dentry == path2->dentry;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
miklos szeredi | miklos szeredi | 36 | 100.00% | 1 | 100.00% |
| Total | 36 | 100.00% | 1 | 100.00% |
#endif /* _LINUX_PATH_H */
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
jan blunck | jan blunck | 48 | 55.81% | 3 | 60.00% |
miklos szeredi | miklos szeredi | 36 | 41.86% | 1 | 20.00% |
al viro | al viro | 2 | 2.33% | 1 | 20.00% |
| Total | 86 | 100.00% | 5 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.