x86/Kconfig: Fix indentation of arch/x86/Kconfig.debug

The convention for indentation seems to be a single tab. Help text is
further indented by an additional two whitespaces. Fix the lines that
violate these rules.

Signed-off-by: Juerg Haefliger <juerg.haefliger@canonical.com>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Link: https://lore.kernel.org/r/20220525133203.52463-3-juerg.haefliger@canonical.com

authored by Juerg Haefliger and committed by Ingo Molnar 0ecfacb4 758cd94a

+14 -15
+14 -15
arch/x86/Kconfig.debug
··· 73 73 bool "Set upper limit of TLB entries to flush one-by-one" 74 74 depends on DEBUG_KERNEL 75 75 help 76 + X86-only for now. 76 77 77 - X86-only for now. 78 + This option allows the user to tune the amount of TLB entries the 79 + kernel flushes one-by-one instead of doing a full TLB flush. In 80 + certain situations, the former is cheaper. This is controlled by the 81 + tlb_flushall_shift knob under /sys/kernel/debug/x86. If you set it 82 + to -1, the code flushes the whole TLB unconditionally. Otherwise, 83 + for positive values of it, the kernel will use single TLB entry 84 + invalidating instructions according to the following formula: 78 85 79 - This option allows the user to tune the amount of TLB entries the 80 - kernel flushes one-by-one instead of doing a full TLB flush. In 81 - certain situations, the former is cheaper. This is controlled by the 82 - tlb_flushall_shift knob under /sys/kernel/debug/x86. If you set it 83 - to -1, the code flushes the whole TLB unconditionally. Otherwise, 84 - for positive values of it, the kernel will use single TLB entry 85 - invalidating instructions according to the following formula: 86 + flush_entries <= active_tlb_entries / 2^tlb_flushall_shift 86 87 87 - flush_entries <= active_tlb_entries / 2^tlb_flushall_shift 88 - 89 - If in doubt, say "N". 88 + If in doubt, say "N". 90 89 91 90 config IOMMU_DEBUG 92 91 bool "Enable IOMMU debugging" ··· 118 119 depends on DEBUG_KERNEL && INSTRUCTION_DECODER 119 120 depends on !COMPILE_TEST 120 121 help 121 - Perform x86 instruction decoder selftests at build time. 122 - This option is useful for checking the sanity of x86 instruction 123 - decoder code. 124 - If unsure, say "N". 122 + Perform x86 instruction decoder selftests at build time. 123 + This option is useful for checking the sanity of x86 instruction 124 + decoder code. 125 + If unsure, say "N". 125 126 126 127 choice 127 128 prompt "IO delay type"