Release 4.18 include/linux/ipc.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _LINUX_IPC_H
#define _LINUX_IPC_H
#include <linux/spinlock.h>
#include <linux/uidgid.h>
#include <linux/rhashtable.h>
#include <uapi/linux/ipc.h>
#include <linux/refcount.h>
/* 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;
struct rhash_head khtnode;
struct rcu_head rcu;
refcount_t refcount;
} ____cacheline_aligned_in_smp __randomize_layout;
#endif /* _LINUX_IPC_H */
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| Linus Torvalds (pre-git) | 36 | 45.57% | 2 | 13.33% |
| Guillaume Knispel | 7 | 8.86% | 1 | 6.67% |
| Manfred Spraul | 6 | 7.59% | 1 | 6.67% |
| Eric W. Biedermann | 6 | 7.59% | 1 | 6.67% |
| Andrew Morton | 5 | 6.33% | 1 | 6.67% |
| Elena Reshetova | 4 | 5.06% | 1 | 6.67% |
| Stephen D. Smalley | 4 | 5.06% | 1 | 6.67% |
| Nadia Derbey | 3 | 3.80% | 1 | 6.67% |
| David Howells | 3 | 3.80% | 1 | 6.67% |
| Al Viro | 1 | 1.27% | 1 | 6.67% |
| Rafael Aquini | 1 | 1.27% | 1 | 6.67% |
| Greg Kroah-Hartman | 1 | 1.27% | 1 | 6.67% |
| Davidlohr Bueso A | 1 | 1.27% | 1 | 6.67% |
| Kees Cook | 1 | 1.27% | 1 | 6.67% |
| Total | 79 | 100.00% | 15 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.