forked from torvalds/linux
-
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.
Merge pull request torvalds#246 from tavip/no-syscall-threads
Direct host calls - v2
- Loading branch information
Showing
26 changed files
with
635 additions
and
503 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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#ifndef _ASM_LKL_CPU_H | ||
#define _ASM_LKL_CPU_H | ||
|
||
int lkl_cpu_get(void); | ||
void lkl_cpu_put(void); | ||
int lkl_cpu_try_run_irq(int irq); | ||
int lkl_cpu_init(void); | ||
void lkl_cpu_shutdown(void); | ||
void lkl_cpu_wait_shutdown(void); | ||
void lkl_cpu_wakeup(void); | ||
void lkl_cpu_change_owner(lkl_thread_t owner); | ||
void lkl_cpu_set_irqs_pending(void); | ||
|
||
#endif /* _ASM_LKL_CPU_H */ |
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 |
---|---|---|
|
@@ -3,8 +3,4 @@ | |
|
||
#define COMMAND_LINE_SIZE 4096 | ||
|
||
#ifndef __ASSEMBLY__ | ||
void wakeup_cpu(void); | ||
#endif | ||
|
||
#endif |
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
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
extra-y := vmlinux.lds | ||
|
||
obj-y = setup.o threads.o irq.o time.o syscalls.o misc.o console.o syscalls_32.o | ||
obj-y = setup.o threads.o irq.o time.o syscalls.o misc.o console.o \ | ||
syscalls_32.o cpu.o |
Oops, something went wrong.