cregit-Linux how code gets into the kernel

Release 4.15 arch/um/os-Linux/registers.c

Directory: arch/um/os-Linux
/*
 * Copyright (C) 2004 PathScale, Inc
 * Copyright (C) 2004 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
 * Licensed under the GPL
 */

#include <errno.h>
#include <string.h>
#include <sys/ptrace.h>
#include <sysdep/ptrace.h>
#include <sysdep/ptrace_user.h>
#include <registers.h>


int save_registers(int pid, struct uml_pt_regs *regs) { int err; err = ptrace(PTRACE_GETREGS, pid, 0, regs->gp); if (err < 0) return -errno; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Jeff Dike44100.00%4100.00%
Total44100.00%4100.00%


int restore_registers(int pid, struct uml_pt_regs *regs) { int err; err = ptrace(PTRACE_SETREGS, pid, 0, regs->gp); if (err < 0) return -errno; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Jeff Dike44100.00%4100.00%
Total44100.00%4100.00%

/* This is set once at boot time and not changed thereafter */ static unsigned long exec_regs[MAX_REG_NR]; static unsigned long exec_fp_regs[FP_SIZE];
int init_registers(int pid) { int err; err = ptrace(PTRACE_GETREGS, pid, 0, exec_regs); if (err < 0) return -errno; arch_init_registers(pid); get_fp_registers(pid, exec_fp_regs); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Jeff Dike4285.71%375.00%
Ingo van Lil714.29%125.00%
Total49100.00%4100.00%


void get_safe_registers(unsigned long *regs, unsigned long *fp_regs) { memcpy(regs, exec_regs, sizeof(exec_regs)); if (fp_regs) memcpy(fp_regs, exec_fp_regs, sizeof(exec_fp_regs)); }

Contributors

PersonTokensPropCommitsCommitProp
Jeff Dike2251.16%150.00%
Ingo van Lil2148.84%150.00%
Total43100.00%2100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Jeff Dike17380.09%777.78%
Ingo van Lil4018.52%111.11%
Al Viro31.39%111.11%
Total216100.00%9100.00%
Directory: arch/um/os-Linux
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.