From: Andrew Cooper Date: Fri, 15 Jan 2016 15:31:09 +0000 (+0000) Subject: Include local variables in all files currently missing them X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=46d79e74e7eabb4cf5990e5c93ca311d42a144a6;p=people%2Froyger%2Fxen-test-framework.git Include local variables in all files currently missing them Correct some accidental introduction of tabs in arch/x86/link.lds.S Signed-off-by: Andrew Cooper --- diff --git a/arch/x86/boot/head_hvm.S b/arch/x86/boot/head_hvm.S index b350799..eaa80d5 100644 --- a/arch/x86/boot/head_hvm.S +++ b/arch/x86/boot/head_hvm.S @@ -75,3 +75,10 @@ SIZE(_start) main_err_msg: .asciz "xtf_main() returned\n" SIZE(main_err_msg) + +/* + * Local variables: + * tab-width: 8 + * indent-tabs-mode: nil + * End: + */ diff --git a/arch/x86/boot/head_pv.S b/arch/x86/boot/head_pv.S index 078d6b8..9312fef 100644 --- a/arch/x86/boot/head_pv.S +++ b/arch/x86/boot/head_pv.S @@ -52,3 +52,10 @@ SIZE(_start) main_err_msg: .asciz "xtf_main() returned\n" SIZE(main_err_msg) + +/* + * Local variables: + * tab-width: 8 + * indent-tabs-mode: nil + * End: + */ diff --git a/arch/x86/entry_32.S b/arch/x86/entry_32.S index 2b08b49..b36eee8 100644 --- a/arch/x86/entry_32.S +++ b/arch/x86/entry_32.S @@ -112,3 +112,10 @@ ENTRY(exec_user) /* void (*fn)(void) */ int $0x20 /* Return to kernel privilege. */ ret + +/* + * Local variables: + * tab-width: 8 + * indent-tabs-mode: nil + * End: + */ diff --git a/arch/x86/entry_64.S b/arch/x86/entry_64.S index 730ee5b..2fe5760 100644 --- a/arch/x86/entry_64.S +++ b/arch/x86/entry_64.S @@ -125,3 +125,10 @@ ENTRY(exec_user) /* void (*fn)(void) */ int $0x20 /* Return to kernel privilege. */ ret + +/* + * Local variables: + * tab-width: 8 + * indent-tabs-mode: nil + * End: + */ diff --git a/arch/x86/hvm_pagetables.S b/arch/x86/hvm_pagetables.S index 0e078e0..cee0c1d 100644 --- a/arch/x86/hvm_pagetables.S +++ b/arch/x86/hvm_pagetables.S @@ -49,3 +49,10 @@ GLOBAL(l3_paemap) .long 0 .endr SIZE(l3_paemap) + +/* + * Local variables: + * tab-width: 8 + * indent-tabs-mode: nil + * End: + */ diff --git a/arch/x86/hypercall_page.S b/arch/x86/hypercall_page.S index f1a12e7..5e0b6db 100644 --- a/arch/x86/hypercall_page.S +++ b/arch/x86/hypercall_page.S @@ -58,3 +58,10 @@ DECLARE_HYPERCALL(arch_4) DECLARE_HYPERCALL(arch_5) DECLARE_HYPERCALL(arch_6) DECLARE_HYPERCALL(arch_7) + +/* + * Local variables: + * tab-width: 8 + * indent-tabs-mode: nil + * End: + */ diff --git a/arch/x86/link.lds.S b/arch/x86/link.lds.S index 75324f5..016bfe4 100644 --- a/arch/x86/link.lds.S +++ b/arch/x86/link.lds.S @@ -41,8 +41,8 @@ SECTIONS *(.rodata) *(.rodata.*) - . = ALIGN(8); - __start_ex_table = .; + . = ALIGN(8); + __start_ex_table = .; *(.ex_table) __stop_ex_table = .; } @@ -52,3 +52,10 @@ SECTIONS *(.note.*) } } + +/* + * Local variables: + * tab-width: 8 + * indent-tabs-mode: nil + * End: + */ diff --git a/common/report.c b/common/report.c index 9351c20..1aaf6e6 100644 --- a/common/report.c +++ b/common/report.c @@ -94,3 +94,13 @@ void xtf_report_status(void) (warnings && (status == STATUS_SUCCESS)) ? " with warnings" : ""); } + +/* + * Local variables: + * mode: C + * c-file-style: "BSD" + * c-basic-offset: 4 + * tab-width: 4 + * indent-tabs-mode: nil + * End: + */ diff --git a/include/xen/errno.h b/include/xen/errno.h index fe0cccf..148ffb7 100644 --- a/include/xen/errno.h +++ b/include/xen/errno.h @@ -57,3 +57,13 @@ #define ETIMEDOUT 110 /* Connection timed out */ #endif /* __XEN_PUBLIC_ERRNO_H__ */ + +/* + * Local variables: + * mode: C + * c-file-style: "BSD" + * c-basic-offset: 4 + * tab-width: 4 + * indent-tabs-mode: nil + * End: + */ diff --git a/tests/swint-emulation/lowlevel.S b/tests/swint-emulation/lowlevel.S index a0856a6..5b3b204 100644 --- a/tests/swint-emulation/lowlevel.S +++ b/tests/swint-emulation/lowlevel.S @@ -78,3 +78,10 @@ GEN_SEQUENCE int_0x1 #ifdef __i386__ GEN_SEQUENCE into #endif + +/* + * Local variables: + * tab-width: 8 + * indent-tabs-mode: nil + * End: + */