cregit-Linux how code gets into the kernel

Release 4.13 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;

} __randomize_layout;

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 Szeredi36100.00%1100.00%
Total36100.00%1100.00%

#endif /* _LINUX_PATH_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
Jan Blunck4855.17%350.00%
Miklos Szeredi3641.38%116.67%
Al Viro22.30%116.67%
Kees Cook11.15%116.67%
Total87100.00%6100.00%
Directory: include/linux
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.