This website requires JavaScript.
Explore
Help
Register
Sign In
Evolution-x-devices
/
kernel_google_b1c1
Watch
2
Star
0
Fork
0
You've already forked kernel_google_b1c1
mirror of
https://github.com/Evolution-X-Devices/kernel_google_b1c1
synced
2026-02-08 23:34:53 +00:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
Files
a6d4ce2e8b653ff7facde0d0051663fa4cf57b78
kernel_google_b1c1
/
kernel
/
livepatch
/
Makefile
4 lines
65 B
Makefile
Raw
Normal View
History
Unescape
Escape
livepatch: rename config to CONFIG_LIVEPATCH Rename CONFIG_LIVE_PATCHING to CONFIG_LIVEPATCH to make the naming of the config and the code more consistent. Signed-off-by: Josh Poimboeuf <jpoimboe@redhat.com> Reviewed-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
2015-02-03 16:45:18 -06:00
obj-$(CONFIG_LIVEPATCH)
+=
livepatch.o
livepatch: kernel: add support for live patching This commit introduces code for the live patching core. It implements an ftrace-based mechanism and kernel interface for doing live patching of kernel and kernel module functions. It represents the greatest common functionality set between kpatch and kgraft and can accept patches built using either method. This first version does not implement any consistency mechanism that ensures that old and new code do not run together. In practice, ~90% of CVEs are safe to apply in this way, since they simply add a conditional check. However, any function change that can not execute safely with the old version of the function can _not_ be safely applied in this version. [ jkosina@suse.cz: due to the number of contributions that got folded into this original patch from Seth Jennings, add SUSE's copyright as well, as discussed via e-mail ] Signed-off-by: Seth Jennings <sjenning@redhat.com> Signed-off-by: Josh Poimboeuf <jpoimboe@redhat.com> Reviewed-by: Miroslav Benes <mbenes@suse.cz> Reviewed-by: Petr Mladek <pmladek@suse.cz> Reviewed-by: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com> Signed-off-by: Miroslav Benes <mbenes@suse.cz> Signed-off-by: Petr Mladek <pmladek@suse.cz> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
2014-12-16 11:58:19 -06:00
livepatch-objs
:=
core.o
Reference in New Issue
Copy Permalink