Release 4.7 kernel/exec_domain.c
/*
* Handling of different ABIs (personalities).
*
* We group personalities into execution domains which have their
* own handlers for kernel entry points, signal mapping, etc...
*
* 2001-05-06 Complete rewrite, Christoph Hellwig (hch@infradead.org)
*/
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/kmod.h>
#include <linux/module.h>
#include <linux/personality.h>
#include <linux/proc_fs.h>
#include <linux/sched.h>
#include <linux/seq_file.h>
#include <linux/syscalls.h>
#include <linux/sysctl.h>
#include <linux/types.h>
#include <linux/fs_struct.h>
#ifdef CONFIG_PROC_FS
static int execdomains_proc_show(struct seq_file *m, void *v)
{
seq_puts(m, "0-0\tLinux \t[kernel]\n");
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
alexey dobriyan | alexey dobriyan | 13 | 52.00% | 1 | 25.00% |
pre-git | pre-git | 10 | 40.00% | 2 | 50.00% |
richard weinberger | richard weinberger | 2 | 8.00% | 1 | 25.00% |
| Total | 25 | 100.00% | 4 | 100.00% |
static int execdomains_proc_open(struct inode *inode, struct file *file)
{
return single_open(file, execdomains_proc_show, NULL);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
alexey dobriyan | alexey dobriyan | 26 | 100.00% | 1 | 100.00% |
| Total | 26 | 100.00% | 1 | 100.00% |
static const struct file_operations execdomains_proc_fops = {
.open = execdomains_proc_open,
.read = seq_read,
.llseek = seq_lseek,
.release = single_release,
};
static int __init proc_execdomains_init(void)
{
proc_create("execdomains", 0, NULL, &execdomains_proc_fops);
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
alexey dobriyan | alexey dobriyan | 22 | 91.67% | 1 | 50.00% |
linus torvalds | linus torvalds | 2 | 8.33% | 1 | 50.00% |
| Total | 24 | 100.00% | 2 | 100.00% |
module_init(proc_execdomains_init);
#endif
SYSCALL_DEFINE1(personality, unsigned int, personality)
{
unsigned int old = current->personality;
if (personality != 0xffffffff)
set_personality(personality);
return old;
}
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
alexey dobriyan | alexey dobriyan | 105 | 57.69% | 1 | 7.69% |
linus torvalds | linus torvalds | 43 | 23.63% | 2 | 15.38% |
pre-git | pre-git | 15 | 8.24% | 4 | 30.77% |
heiko carstens | heiko carstens | 7 | 3.85% | 1 | 7.69% |
arnd bergmann | arnd bergmann | 3 | 1.65% | 1 | 7.69% |
al viro | al viro | 3 | 1.65% | 1 | 7.69% |
oleg nesterov | oleg nesterov | 3 | 1.65% | 1 | 7.69% |
richard weinberger | richard weinberger | 2 | 1.10% | 1 | 7.69% |
dave jones | dave jones | 1 | 0.55% | 1 | 7.69% |
| Total | 182 | 100.00% | 13 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.