cregit-Linux how code gets into the kernel

Release 4.12 include/linux/ipc.h

Directory: include/linux
#ifndef _LINUX_IPC_H

#define _LINUX_IPC_H

#include <linux/spinlock.h>
#include <linux/uidgid.h>
#include <uapi/linux/ipc.h>


#define IPCMNI 32768  
/* <= MAX_INT limit for ipc arrays (including sysctl changes) */

/* used by in-kernel data structures */

struct kern_ipc_perm {
	
spinlock_t	lock;
	
bool		deleted;
	
int		id;
	
key_t		key;
	
kuid_t		uid;
	
kgid_t		gid;
	
kuid_t		cuid;
	
kgid_t		cgid;
	
umode_t		mode;
	
unsigned long	seq;
	
void		*security;

} ____cacheline_aligned_in_smp;

#endif /* _LINUX_IPC_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)4163.08%327.27%
Eric W. Biedermann69.23%19.09%
Andrew Morton57.69%19.09%
Stephen D. Smalley46.15%19.09%
Nadia Derbey34.62%19.09%
David Howells34.62%19.09%
Rafael Aquini11.54%19.09%
Al Viro11.54%19.09%
Davidlohr Bueso A11.54%19.09%
Total65100.00%11100.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.