cregit-Linux how code gets into the kernel

Release 4.7 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;
};

#endif /* _LINUX_IPC_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git3960.94%327.27%
eric w. biedermaneric w. biederman69.38%19.09%
andrew mortonandrew morton57.81%19.09%
stephen d. smalleystephen d. smalley46.25%19.09%
david howellsdavid howells34.69%19.09%
nadia derbeynadia derbey34.69%19.09%
cedric le goatercedric le goater23.12%19.09%
rafael aquinirafael aquini11.56%19.09%
al viroal viro11.56%19.09%
Total64100.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.
{% endraw %}