Release 4.12 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;
} ____cacheline_aligned_in_smp;
#endif /* _LINUX_IPC_H */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 41 | 63.08% | 3 | 27.27% |
Eric W. Biedermann | 6 | 9.23% | 1 | 9.09% |
Andrew Morton | 5 | 7.69% | 1 | 9.09% |
Stephen D. Smalley | 4 | 6.15% | 1 | 9.09% |
Nadia Derbey | 3 | 4.62% | 1 | 9.09% |
David Howells | 3 | 4.62% | 1 | 9.09% |
Rafael Aquini | 1 | 1.54% | 1 | 9.09% |
Al Viro | 1 | 1.54% | 1 | 9.09% |
Davidlohr Bueso A | 1 | 1.54% | 1 | 9.09% |
Total | 65 | 100.00% | 11 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.