mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-21 08:53:41 +00:00
um: kill shared/task.h and HOST_TASK_REGS
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Richard Weinberger <richard@nod.at>
This commit is contained in:
parent
1cf5e62ab9
commit
5ade8878e0
@ -2,7 +2,6 @@
|
||||
|
||||
DEFINE(KERNEL_MADV_REMOVE, MADV_REMOVE);
|
||||
|
||||
OFFSET(HOST_TASK_REGS, task_struct, thread.regs);
|
||||
OFFSET(HOST_TASK_PID, task_struct, pid);
|
||||
|
||||
DEFINE(UM_KERN_PAGE_SIZE, PAGE_SIZE);
|
||||
|
@ -1,9 +0,0 @@
|
||||
#ifndef __TASK_H
|
||||
#define __TASK_H
|
||||
|
||||
#include <generated/asm-offsets.h>
|
||||
|
||||
#define TASK_REGS(task) ((struct uml_pt_regs *) &(((char *) (task))[HOST_TASK_REGS]))
|
||||
#define TASK_PID(task) *((int *) &(((char *) (task))[HOST_TASK_PID]))
|
||||
|
||||
#endif
|
@ -6,13 +6,15 @@
|
||||
#include <signal.h>
|
||||
#include "kern_util.h"
|
||||
#include "longjmp.h"
|
||||
#include "task.h"
|
||||
#include "sysdep/ptrace.h"
|
||||
#include <generated/asm-offsets.h>
|
||||
|
||||
/* Set during early boot */
|
||||
static int host_has_cmov = 1;
|
||||
static jmp_buf cmov_test_return;
|
||||
|
||||
#define TASK_PID(task) *((int *) &(((char *) (task))[HOST_TASK_PID]))
|
||||
|
||||
static void cmov_sigill_test_handler(int sig)
|
||||
{
|
||||
host_has_cmov = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user