Release 4.14 arch/alpha/kernel/asm-offsets.c
// SPDX-License-Identifier: GPL-2.0
/*
* Generate definitions needed by assembly language modules.
* This code generates raw asm output which is post-processed to extract
* and format the required data.
*/
#include <linux/types.h>
#include <linux/stddef.h>
#include <linux/sched.h>
#include <linux/ptrace.h>
#include <linux/kbuild.h>
#include <asm/io.h>
void foo(void)
{
DEFINE(TI_TASK, offsetof(struct thread_info, task));
DEFINE(TI_FLAGS, offsetof(struct thread_info, flags));
DEFINE(TI_CPU, offsetof(struct thread_info, cpu));
BLANK();
DEFINE(TASK_BLOCKED, offsetof(struct task_struct, blocked));
DEFINE(TASK_CRED, offsetof(struct task_struct, cred));
DEFINE(TASK_REAL_PARENT, offsetof(struct task_struct, real_parent));
DEFINE(TASK_GROUP_LEADER, offsetof(struct task_struct, group_leader));
DEFINE(TASK_TGID, offsetof(struct task_struct, tgid));
BLANK();
DEFINE(CRED_UID, offsetof(struct cred, uid));
DEFINE(CRED_EUID, offsetof(struct cred, euid));
DEFINE(CRED_GID, offsetof(struct cred, gid));
DEFINE(CRED_EGID, offsetof(struct cred, egid));
BLANK();
DEFINE(SIZEOF_PT_REGS, sizeof(struct pt_regs));
DEFINE(PT_PTRACED, PT_PTRACED);
DEFINE(CLONE_VM, CLONE_VM);
DEFINE(CLONE_UNTRACED, CLONE_UNTRACED);
DEFINE(SIGCHLD, SIGCHLD);
BLANK();
DEFINE(HAE_CACHE, offsetof(struct alpha_machine_vector, hae_cache));
DEFINE(HAE_REG, offsetof(struct alpha_machine_vector, hae_register));
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Richard Henderson | 147 | 61.25% | 4 | 44.44% |
David Howells | 33 | 13.75% | 1 | 11.11% |
Kai Germaschewski | 22 | 9.17% | 1 | 11.11% |
Linus Torvalds (pre-git) | 21 | 8.75% | 1 | 11.11% |
Eric W. Biedermann | 10 | 4.17% | 1 | 11.11% |
Daniel Jacobowitz | 7 | 2.92% | 1 | 11.11% |
Total | 240 | 100.00% | 9 | 100.00% |
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Richard Henderson | 147 | 56.54% | 4 | 33.33% |
David Howells | 33 | 12.69% | 1 | 8.33% |
Linus Torvalds (pre-git) | 32 | 12.31% | 1 | 8.33% |
Kai Germaschewski | 23 | 8.85% | 1 | 8.33% |
Eric W. Biedermann | 10 | 3.85% | 1 | 8.33% |
Daniel Jacobowitz | 10 | 3.85% | 2 | 16.67% |
Christoph Lameter | 4 | 1.54% | 1 | 8.33% |
Greg Kroah-Hartman | 1 | 0.38% | 1 | 8.33% |
Total | 260 | 100.00% | 12 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.