-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 36186 b: refs/heads/master c: 995473a h: refs/heads/master v: v3
- Loading branch information
Jeff Dike
authored and
Linus Torvalds
committed
Sep 27, 2006
1 parent
7e77674
commit dcdce97
Showing
8 changed files
with
664 additions
and
193 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 3c9173509985b957bea692ea887a8a0e5055cfe8 | ||
refs/heads/master: 995473aec0be1d9993205accc03e19d32d4e4a2a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
* Copyright (C) 2002 Jeff Dike (jdike@karaya.com) | ||
* Licensed under the GPL | ||
*/ | ||
|
||
#include "linux/kernel.h" | ||
#include "asm/current.h" | ||
#include "asm/page.h" | ||
#include "asm/signal.h" | ||
#include "asm/ptrace.h" | ||
#include "asm/uaccess.h" | ||
#include "asm/mmu_context.h" | ||
#include "tlb.h" | ||
#include "skas.h" | ||
#include "um_mmu.h" | ||
#include "os.h" | ||
|
||
void flush_thread_skas(void) | ||
{ | ||
force_flush_all(); | ||
switch_mm_skas(¤t->mm->context.skas.id); | ||
} | ||
|
||
void start_thread_skas(struct pt_regs *regs, unsigned long eip, | ||
unsigned long esp) | ||
{ | ||
set_fs(USER_DS); | ||
PT_REGS_IP(regs) = eip; | ||
PT_REGS_SP(regs) = esp; | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.