Skip to content

Commit c3262d3

Browse files
ytcoodebp3tk0v
authored andcommitted
x86/head: Simplify relative include path to xen-head.S
Fix the relative path specification in the include directives adding xen-head.S to the kernel's head_*.S files since they both have "arch/x86/" as prefix. [ bp: Rewrite commit message. ] Signed-off-by: Yuntao Wang <[email protected]> Signed-off-by: Borislav Petkov (AMD) <[email protected]> Link: https://lore.kernel.org/r/[email protected]
1 parent 3c41786 commit c3262d3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

arch/x86/kernel/head_32.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@ __INITRODATA
500500
int_msg:
501501
.asciz "Unknown interrupt or fault at: %p %p %p\n"
502502

503-
#include "../../x86/xen/xen-head.S"
503+
#include "../xen/xen-head.S"
504504

505505
/*
506506
* The IDT and GDT 'descriptors' are a strange 48-bit object

arch/x86/kernel/head_64.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -720,7 +720,7 @@ SYM_DATA(smpboot_control, .long 0)
720720
SYM_DATA(phys_base, .quad 0x0)
721721
EXPORT_SYMBOL(phys_base)
722722

723-
#include "../../x86/xen/xen-head.S"
723+
#include "../xen/xen-head.S"
724724

725725
__PAGE_ALIGNED_BSS
726726
SYM_DATA_START_PAGE_ALIGNED(empty_zero_page)

0 commit comments

Comments
 (0)