Release 4.11 include/linux/ipc.h
#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
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 39 | 60.94% | 3 | 27.27% |
Eric W. Biedermann | 6 | 9.38% | 1 | 9.09% |
Andrew Morton | 5 | 7.81% | 1 | 9.09% |
Stephen D. Smalley | 4 | 6.25% | 1 | 9.09% |
Nadia Derbey | 3 | 4.69% | 1 | 9.09% |
David Howells | 3 | 4.69% | 1 | 9.09% |
Cédric Le Goater | 2 | 3.12% | 1 | 9.09% |
Al Viro | 1 | 1.56% | 1 | 9.09% |
Rafael Aquini | 1 | 1.56% | 1 | 9.09% |
Total | 64 | 100.00% | 11 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.