cregit-Linux how code gets into the kernel

Release 4.7 include/linux/path.h

Directory: include/linux
#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

PersonTokensPropCommitsCommitProp
miklos szeredimiklos szeredi36100.00%1100.00%
Total36100.00%1100.00%

#endif /* _LINUX_PATH_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
jan blunckjan blunck4855.81%360.00%
miklos szeredimiklos szeredi3641.86%120.00%
al viroal viro22.33%120.00%
Total86100.00%5100.00%
Directory: include/linux
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}