aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/alternative.c (follow)
AgeCommit message (Expand)AuthorFilesLines
2025-05-21Merge tag 'v6.15-rc7' into x86/core, to pick up fixesIngo Molnar1-0/+6
2025-05-17x86/mm/64: Make 5-level paging support unconditionalKirill A. Shutemov1-1/+1
2025-05-13x86/its: Fix build errors when CONFIG_MODULES=nEric Biggers1-0/+6
2025-05-13Merge commit 'its-for-linus-20250509-merge' into x86/core, to resolve conflictsIngo Molnar1-20/+316
2025-05-09x86/its: FineIBT-paranoid vs ITSPeter Zijlstra1-16/+129
2025-05-09x86/its: Use dynamic thunks for indirect branchesPeter Zijlstra1-3/+124
2025-05-09x86/ibt: Keep IBT disabled during alternative patchingPawan Gupta1-0/+8
2025-05-09x86/its: Add support for ITS-safe return thunkPawan Gupta1-2/+17
2025-05-09x86/its: Add support for ITS-safe indirect thunkPawan Gupta1-3/+42
2025-04-12x86/mm: Remove 'mm' argument from unuse_temporary_mm() againPeter Zijlstra1-1/+1
2025-04-12x86/mm: Make use_/unuse_temporary_mm() non-staticAndy Lutomirski1-64/+0
2025-04-12x86/mm: Add 'mm' argument to unuse_temporary_mm()Peter Zijlstra1-3/+3
2025-04-11x86/alternatives: Make smp_text_poke_batch_process() subsume smp_text_poke_batch_finish()Nikolay Borisov1-11/+8
2025-04-11x86/alternatives: Add comment about noinstr expectationsIngo Molnar1-0/+5
2025-04-11x86/alternatives: Rename 'apply_relocation()' to 'text_poke_apply_relocation()'Ingo Molnar1-3/+3
2025-04-11x86/alternatives: Update the comments in smp_text_poke_batch_process()Ingo Molnar1-13/+15
2025-04-11x86/alternatives: Remove 'smp_text_poke_batch_flush()'Ingo Molnar1-9/+2
2025-04-11x86/alternatives: Move declarations of vmlinux.lds.S defined section symbols to <asm/alternative.h>Ingo Molnar1-6/+0
2025-04-11x86/alternatives: Simplify the #include sectionIngo Molnar1-25/+3
2025-04-11x86/alternatives: Rename 'POKE_MAX_OPCODE_SIZE' to 'TEXT_POKE_MAX_OPCODE_SIZE'Ingo Molnar1-3/+3
2025-04-11x86/alternatives: Rename 'TP_ARRAY_NR_ENTRIES_MAX' to 'TEXT_POKE_ARRAY_MAX'Ingo Molnar1-3/+3
2025-04-11x86/alternatives: Standardize on 'tpl' local variable names for 'struct smp_text_poke_loc *'Ingo Molnar1-27/+27
2025-04-11x86/alternatives: Simplify and clean up patch_cmp()Ingo Molnar1-5/+3
2025-04-11x86/alternatives: Constify text_poke_addr()Ingo Molnar1-1/+1
2025-04-11x86/alternatives: Simplify text_poke_addr_ordered()Ingo Molnar1-4/+1
2025-04-11x86/alternatives: Rename 'text_poke_sync()' to 'smp_text_poke_sync_each_cpu()'Ingo Molnar1-6/+6
2025-04-11x86/alternatives: Move text_poke_array completion from smp_text_poke_batch_finish() and smp_text_poke_batch_flush() to smp_text_poke_batch_process()Ingo Molnar1-6/+5
2025-04-11x86/alternatives: Add documentation for smp_text_poke_batch_add()Ingo Molnar1-0/+13
2025-04-11x86/alternatives: Document 'smp_text_poke_single()'Ingo Molnar1-2/+3
2025-04-11x86/alternatives: Remove the mixed-patching restriction on smp_text_poke_single()Ingo Molnar1-3/+0
2025-04-11x86/alternatives: Move the text_poke_array manipulation into text_poke_int3_loc_init() and rename it to __smp_text_poke_batch_add()Ingo Molnar1-12/+6
2025-04-11x86/alternatives: Simplify smp_text_poke_batch_process()Ingo Molnar1-23/+20
2025-04-11x86/alternatives: Simplify smp_text_poke_int3_handler()Ingo Molnar1-7/+3
2025-04-11x86/alternatives: Simplify try_get_text_poke_array()Ingo Molnar1-6/+5
2025-04-11x86/alternatives: Rename 'put_desc()' to 'put_text_poke_array()'Ingo Molnar1-2/+2
2025-04-11x86/alternatives: Rename 'try_get_desc()' to 'try_get_text_poke_array()'Ingo Molnar1-3/+3
2025-04-11x86/alternatives: Remove the tp_vec indirectionIngo Molnar1-17/+7
2025-04-11x86/alternatives: Introduce 'struct smp_text_poke_array' and move tp_vec and tp_vec_nr to itIngo Molnar1-20/+23
2025-04-11x86/alternatives: Assert input parameters in smp_text_poke_batch_process()Ingo Molnar1-0/+3
2025-04-11x86/alternatives: Assert that smp_text_poke_int3_handler() can only ever handle 'tp_vec[]' based requestsIngo Molnar1-4/+6
2025-04-11x86/alternatives: Simplify smp_text_poke_single() by using tp_vec and existing APIsIngo Molnar1-3/+8
2025-04-11x86/alternatives: Remove the 'addr == NULL means forced-flush' hack from smp_text_poke_batch_finish()/smp_text_poke_batch_flush()/text_poke_addr_ordered()Ingo Molnar1-8/+10
2025-04-11x86/alternatives: Use non-inverted logic instead of 'tp_order_fail()'Ingo Molnar1-7/+13
2025-04-11x86/alternatives: Add text_mutex) assert to smp_text_poke_batch_flush()Ingo Molnar1-0/+2
2025-04-11x86/alternatives: Rename 'int3_desc' to 'int3_vec'Ingo Molnar1-6/+6
2025-04-11x86/alternatives: Rename 'struct text_poke_loc' to 'struct smp_text_poke_loc'Ingo Molnar1-13/+13
2025-04-11x86/alternatives: Rename 'text_poke_loc_init()' to 'text_poke_int3_loc_init()'Ingo Molnar1-3/+3
2025-04-11x86/alternatives: Rename 'text_poke_queue()' to 'smp_text_poke_batch_add()'Ingo Molnar1-1/+1
2025-04-11x86/alternatives: Rename 'text_poke_finish()' to 'smp_text_poke_batch_finish()'Ingo Molnar1-1/+1
2025-04-11x86/alternatives: Rename 'text_poke_flush()' to 'smp_text_poke_batch_flush()'Ingo Molnar1-3/+3