Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
msm
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CodeLinaro
la
kernel
msm
Commits
4a9b6f08
Commit
4a9b6f08
authored
2 weeks ago
by
Stephen Rothwell
Browse files
Options
Downloads
Plain Diff
Merge branch 'for-next' of
git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching
parents
2a3d0507
8bd10336
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Documentation/livepatch/module-elf-format.rst
+8
-5
8 additions, 5 deletions
Documentation/livepatch/module-elf-format.rst
kernel/livepatch/core.c
+6
-3
6 additions, 3 deletions
kernel/livepatch/core.c
with
14 additions
and
8 deletions
Documentation/livepatch/module-elf-format.rst
+
8
−
5
View file @
4a9b6f08
...
...
@@ -217,16 +217,19 @@ livepatch relocation section refer to their respective symbols with their symbol
indices, and the original symbol indices (and thus the symtab ordering) must be
preserved in order for apply_relocate_add() to find the right symbol.
For example, take this particular rela from a livepatch module::
:
For example, take this particular rela from a livepatch module::
Relocation section '.klp.rela.btrfs.text.btrfs_feature_attr_show' at offset 0x2ba0 contains 4 entries:
Offset Info Type Symbol's Value Symbol's Name + Addend
000000000000001f 0000005e00000002 R_X86_64_PC32 0000000000000000 .klp.sym.vmlinux.printk,0 - 4
This rela refers to the symbol '.klp.sym.vmlinux.printk,0', and the symbol index is encoded
in 'Info'. Here its symbol index is 0x5e, which is 94 in decimal, which refers to the
symbol index 94.
And in this patch module's corresponding symbol table, symbol index 94 refers to that very symbol:
This rela refers to the symbol '.klp.sym.vmlinux.printk,0', and the symbol
index is encoded in 'Info'. Here its symbol index is 0x5e, which is 94 in
decimal, which refers to the symbol index 94.
And in this patch module's corresponding symbol table, symbol index 94 refers
to that very symbol::
[ snip ]
94: 0000000000000000 0 NOTYPE GLOBAL DEFAULT OS [0xff20] .klp.sym.vmlinux.printk,0
[ snip ]
...
...
This diff is collapsed.
Click to expand it.
kernel/livepatch/core.c
+
6
−
3
View file @
4a9b6f08
...
...
@@ -599,9 +599,12 @@ static int klp_add_object_nops(struct klp_patch *patch,
}
/*
* Add 'nop' functions which simply return to the caller to run
* the original function. The 'nop' functions are added to a
* patch to facilitate a 'replace' mode.
* Add 'nop' functions which simply return to the caller to run the
* original function.
*
* They are added only when the atomic replace mode is used and only for
* functions which are currently livepatched but are no longer included
* in the new livepatch.
*/
static
int
klp_add_nops
(
struct
klp_patch
*
patch
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment