Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

x86/asm/entry: Move arch/x86/include/asm/calling.h to arch/x86/entry/

asm/calling.h is private to the entry code, make this more apparent
by moving it to the new arch/x86/entry/ directory.

Cc: Borislav Petkov <bp@alien8.de>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Andy Lutomirski <luto@amacapital.net>
Cc: Denys Vlasenko <dvlasenk@redhat.com>
Cc: Brian Gerst <brgerst@gmail.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>

+3 -3
+1 -1
arch/x86/entry/entry_64.S
··· 28 28 #include <asm/segment.h> 29 29 #include <asm/cache.h> 30 30 #include <asm/errno.h> 31 - #include <asm/calling.h> 31 + #include "calling.h" 32 32 #include <asm/asm-offsets.h> 33 33 #include <asm/msr.h> 34 34 #include <asm/unistd.h>
+1 -1
arch/x86/entry/ia32entry.S
··· 4 4 * Copyright 2000-2002 Andi Kleen, SuSE Labs. 5 5 */ 6 6 7 - #include <asm/calling.h> 7 + #include "calling.h" 8 8 #include <asm/asm-offsets.h> 9 9 #include <asm/current.h> 10 10 #include <asm/errno.h>
+1 -1
arch/x86/entry/thunk_64.S
··· 6 6 * Subject to the GNU public license, v.2. No warranty of any kind. 7 7 */ 8 8 #include <linux/linkage.h> 9 - #include <asm/calling.h> 9 + #include "calling.h" 10 10 #include <asm/asm.h> 11 11 12 12 /* rdi: arg1 ... normal C conventions. rax is saved/restored. */
arch/x86/include/asm/calling.h arch/x86/entry/calling.h