diff options
author | James C Boyd <jcboyd.dev@gmail.com> | 2015-07-01 16:13:26 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2015-07-02 05:08:50 -0400 |
commit | 864d5bb957138d1ed9641a5eff7849a56ddadc16 (patch) | |
tree | 1ae71ae81c00d88de56da04225164d56225cca24 /Documentation | |
parent | dc5fb575df9cdd34ac12bf7a814c9beae0a7ca9b (diff) |
x86/asm/entry/64: Update path names
The paths mentioned in this file weren't updated through some file
rename commits. Fix them to refer to the correct path.
Signed-off-by: James C Boyd <jcboyd.dev@gmail.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: corbet@lwn.net
Cc: trivial@kernel.org
Link: http://lkml.kernel.org/r/1435781606-3037-1-git-send-email-jcboyd.dev@gmail.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/x86/entry_64.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Documentation/x86/entry_64.txt b/Documentation/x86/entry_64.txt index 33884d156125..c1df8eba9dfd 100644 --- a/Documentation/x86/entry_64.txt +++ b/Documentation/x86/entry_64.txt | |||
@@ -1,14 +1,14 @@ | |||
1 | This file documents some of the kernel entries in | 1 | This file documents some of the kernel entries in |
2 | arch/x86/kernel/entry_64.S. A lot of this explanation is adapted from | 2 | arch/x86/entry/entry_64.S. A lot of this explanation is adapted from |
3 | an email from Ingo Molnar: | 3 | an email from Ingo Molnar: |
4 | 4 | ||
5 | http://lkml.kernel.org/r/<20110529191055.GC9835%40elte.hu> | 5 | http://lkml.kernel.org/r/<20110529191055.GC9835%40elte.hu> |
6 | 6 | ||
7 | The x86 architecture has quite a few different ways to jump into | 7 | The x86 architecture has quite a few different ways to jump into |
8 | kernel code. Most of these entry points are registered in | 8 | kernel code. Most of these entry points are registered in |
9 | arch/x86/kernel/traps.c and implemented in arch/x86/kernel/entry_64.S | 9 | arch/x86/kernel/traps.c and implemented in arch/x86/entry/entry_64.S |
10 | for 64-bit, arch/x86/kernel/entry_32.S for 32-bit and finally | 10 | for 64-bit, arch/x86/entry/entry_32.S for 32-bit and finally |
11 | arch/x86/ia32/ia32entry.S which implements the 32-bit compatibility | 11 | arch/x86/entry/entry_64_compat.S which implements the 32-bit compatibility |
12 | syscall entry points and thus provides for 32-bit processes the | 12 | syscall entry points and thus provides for 32-bit processes the |
13 | ability to execute syscalls when running on 64-bit kernels. | 13 | ability to execute syscalls when running on 64-bit kernels. |
14 | 14 | ||