public inbox for live-patching@vger.kernel.org
 help / color / mirror / Atom feed
 messages from 2025-05-09 20:17:53 to 2025-06-26 23:56:40 UTC [more...]

[PATCH v3 00/64] objtool,livepatch: klp-build livepatch module generation
 2025-06-26 23:55 UTC  (42+ messages)
` [PATCH v3 01/64] s390/vmlinux.lds.S: Prevent thunk functions from getting placed with normal text
` [PATCH v3 02/64] vmlinux.lds: Unify TEXT_MAIN, DATA_MAIN, and related macros
` [PATCH v3 03/64] x86/module: Improve relocation error messages
` [PATCH v3 04/64] x86/kprobes: Remove STACK_FRAME_NON_STANDARD annotation
` [PATCH v3 05/64] compiler: Tweak __UNIQUE_ID() naming
` [PATCH v3 06/64] compiler.h: Make addressable symbols less of an eyesore
` [PATCH v3 07/64] elfnote: Change ELFNOTE() to use __UNIQUE_ID()
` [PATCH v3 08/64] kbuild: Remove 'kmod_' prefix from __KBUILD_MODNAME
` [PATCH v3 09/64] modpost: Ignore unresolved section bounds symbols
` [PATCH v3 10/64] x86/alternative: Refactor INT3 call emulation selftest
` [PATCH v3 11/64] objtool: Make find_symbol_containing() less arbitrary
` [PATCH v3 12/64] objtool: Fix broken error handling in read_symbols()
` [PATCH v3 13/64] objtool: Propagate elf_truncate_section() error in elf_write()
` [PATCH v3 14/64] objtool: Remove error handling boilerplate
` [PATCH v3 15/64] objtool: Add empty symbols to the symbol tree again
` [PATCH v3 16/64] objtool: Fix interval tree insertion for zero-length symbols
` [PATCH v3 17/64] objtool: Fix weak symbol detection
` [PATCH v3 18/64] objtool: Fix x86 addend calculation
` [PATCH v3 19/64] objtool: Fix __pa_symbol() relocation handling
` [PATCH v3 20/64] objtool: Fix "unexpected end of section" warning for alternatives
` [PATCH v3 21/64] objtool: Check for missing annotation entries in read_annotate()
` [PATCH v3 22/64] objtool: Const string cleanup
` [PATCH v3 23/64] objtool: Clean up compiler flag usage
` [PATCH v3 24/64] objtool: Remove .parainstructions reference
` [PATCH v3 25/64] objtool: Convert elf iterator macros to use 'struct elf'
` [PATCH v3 26/64] objtool: Add section/symbol type helpers
` [PATCH v3 27/64] objtool: Mark .cold subfunctions
` [PATCH v3 28/64] objtool: Fix weak symbol hole detection for .cold functions
` [PATCH v3 29/64] objtool: Mark prefix functions
` [PATCH v3 30/64] objtool: Simplify reloc offset calculation in unwind_read_hints()
` [PATCH v3 31/64] objtool: Avoid emptying lists for duplicate sections
` [PATCH v3 32/64] objtool: Rename --Werror to --werror
` [PATCH v3 33/64] objtool: Resurrect --backup option
` [PATCH v3 34/64] objtool: Reindent check_options[]
` [PATCH v3 35/64] objtool: Refactor add_jump_destinations()
` [PATCH v3 36/64] objtool: Simplify special symbol handling in elf_update_symbol()
` [PATCH v3 37/64] objtool: Generalize elf_create_symbol()
` [PATCH v3 38/64] objtool: Generalize elf_create_section()
` [PATCH v3 39/64] objtool: Add elf_create_data()
` [PATCH v3 40/64] objtool: Add elf_create_reloc() and elf_init_reloc()
` [PATCH v3 41/64] objtool: Add elf_create_file()

[PATCH v2 00/62] objtool,livepatch: klp-build livepatch module generation
 2025-06-26 23:27 UTC  (122+ messages)
` [PATCH v2 13/62] objtool: Fix broken error handling in read_symbols()
` [PATCH v2 14/62] objtool: Propagate elf_truncate_section() error in elf_write()
` [PATCH v2 15/62] objtool: Add empty symbols to the symbol tree again
` [PATCH v2 16/62] objtool: Fix interval tree insertion for zero-length symbols
` [PATCH v2 17/62] objtool: Fix weak symbol detection
` [PATCH v2 18/62] objtool: Fix x86 addend calculation
` [PATCH v2 19/62] objtool: Fix __pa_symbol() relocation handling
` [PATCH v2 20/62] objtool: Fix "unexpected end of section" warning for alternatives
` [PATCH v2 21/62] objtool: Check for missing annotation entries in read_annotate()
` [PATCH v2 22/62] objtool: Const string cleanup
` [PATCH v2 23/62] objtool: Clean up compiler flag usage
` [PATCH v2 24/62] objtool: Remove .parainstructions reference
` [PATCH v2 25/62] objtool: Convert elf iterator macros to use 'struct elf'
` [PATCH v2 26/62] objtool: Add section/symbol type helpers
` [PATCH v2 27/62] objtool: Mark .cold subfunctions
` [PATCH v2 28/62] objtool: Fix weak symbol hole detection for .cold functions
` [PATCH v2 29/62] objtool: Mark prefix functions
` [PATCH v2 30/62] objtool: Simplify reloc offset calculation in unwind_read_hints()
` [PATCH v2 31/62] objtool: Avoid emptying lists for duplicate sections
` [PATCH v2 32/62] objtool: Suppress section skipping warnings with --dryrun
` [PATCH v2 33/62] objtool: Rename --Werror to --werror
` [PATCH v2 34/62] objtool: Reindent check_options[]
` [PATCH v2 35/62] objtool: Refactor add_jump_destinations()
` [PATCH v2 36/62] objtool: Simplify special symbol handling in elf_update_symbol()
` [PATCH v2 37/62] objtool: Generalize elf_create_symbol()
` [PATCH v2 38/62] objtool: Generalize elf_create_section()
` [PATCH v2 39/62] objtool: Add elf_create_data()
` [PATCH v2 40/62] objtool: Introduce elf_create_reloc() and elf_init_reloc()
` [PATCH v2 41/62] objtool: Add elf_create_file()
` [PATCH v2 42/62] kbuild,x86: Fix module permissions for __jump_table and __bug_table
` [PATCH v2 43/62] x86/alternative: Define ELF section entry size for alternatives
` [PATCH v2 44/62] x86/jump_label: Define ELF section entry size for jump table
` [PATCH v2 45/62] x86/extable: Define ELF section entry size for exception tables
` [PATCH v2 46/62] x86/bug: Define ELF section entry size for the bug table
` [PATCH v2 47/62] x86/orc: Define ELF section entry size for unwind hints
` [PATCH v2 48/62] objtool: Make STACK_FRAME_NON_STANDARD consistent
` [PATCH v2 49/62] kbuild,objtool: Defer objtool validation step for CONFIG_LIVEPATCH
` [PATCH v2 50/62] objtool/klp: Add --checksum option to generate per-function checksums
` [PATCH v2 51/62] objtool/klp: Add --debug-checksum=<funcs> to show per-instruction checksums
` [PATCH v2 52/62] objtool/klp: Introduce klp diff subcommand for diffing object files
` [PATCH v2 53/62] objtool/klp: Add --debug option to show cloning decisions
` [PATCH v2 54/62] objtool/klp: Add post-link subcommand to finalize livepatch modules
` [PATCH v2 55/62] objtool: Disallow duplicate prefix symbols
` [PATCH v2 56/62] objtool: Add base objtool support for livepatch modules
` [PATCH v2 57/62] livepatch/klp-build: Introduce fix-patch-lines script to avoid __LINE__ diff noise
` [PATCH v2 58/62] livepatch/klp-build: Add stub init code for livepatch modules
` [PATCH v2 59/62] livepatch/klp-build: Introduce klp-build script for generating "
` [PATCH v2 60/62] livepatch/klp-build: Add --debug option to show cloning decisions
` [PATCH v2 61/62] livepatch/klp-build: Add --show-first-changed option to show function divergence
` [PATCH v2 62/62] livepatch: Introduce source code helpers for livepatch modules

[PATCH v4] arm64: Implement HAVE_LIVEPATCH
 2025-06-26 14:55 UTC  (3+ messages)

[PATCH 0/2] arm64: stacktrace: Enable reliable stacktrace
 2025-06-20 20:45 UTC  (6+ messages)
` [PATCH 1/2] arm64: stacktrace: Check kretprobe_find_ret_addr() return value
` [PATCH 2/2] arm64: stacktrace: Implement arch_stack_walk_reliable()

[PATCH v4 0/2] livepatch, arm64/module: Enable late module relocations
 2025-05-29  0:47 UTC  (6+ messages)
` [PATCH v4 1/2] livepatch, x86/module: Generalize late module relocation locking
` [PATCH v4 2/2] arm64/module: Use text-poke API for late relocations

[PATCH v3 0/2] livepatch, arm64/module: Enable late module relocations
 2025-05-22 20:01 UTC  (5+ messages)
` [PATCH v3 1/2] livepatch, x86/module: Generalize late module relocation locking
` [PATCH v3 2/2] arm64/module: Use text-poke API for late relocations

[PATCH v3 0/2] arm64: livepatch: Enable livepatch without sframe
 2025-05-20 16:59 UTC  (12+ messages)
` [PATCH v3 1/2] arm64: Implement arch_stack_walk_reliable

[PATCH v2] sched,livepatch: Untangle cond_resched() and live-patching
 2025-05-14 11:17 UTC  (9+ messages)


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox