Release 4.11 fs/proc/fd.h
#ifndef __PROCFS_FD_H__
#define __PROCFS_FD_H__
#include <linux/fs.h>
extern const struct file_operations proc_fd_operations;
extern const struct inode_operations proc_fd_inode_operations;
extern const struct file_operations proc_fdinfo_operations;
extern const struct inode_operations proc_fdinfo_inode_operations;
extern int proc_fd_permission(struct inode *inode, int mask);
static inline unsigned int proc_fd(struct inode *inode)
{
return PROC_I(inode)->fd;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David Howells | 20 | 95.24% | 1 | 50.00% |
Alexey Dobriyan | 1 | 4.76% | 1 | 50.00% |
Total | 21 | 100.00% | 2 | 100.00% |
#endif /* __PROCFS_FD_H__ */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Cyrill V. Gorcunov | 49 | 70.00% | 1 | 33.33% |
David Howells | 20 | 28.57% | 1 | 33.33% |
Alexey Dobriyan | 1 | 1.43% | 1 | 33.33% |
Total | 70 | 100.00% | 3 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.