mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 06:44:00 -04:00
livepatch: Free klp_{object,func}_ext data after initialization
The klp_object_ext and klp_func_ext data, which are stored in the __klp_objects and __klp_funcs sections, respectively, are not needed after they are used to create the actual klp_object and klp_func instances. This operation is implemented by the init function in scripts/livepatch/init.c. Prefix the two sections with ".init" so they are freed after the module is initializated. Signed-off-by: Petr Pavlu <petr.pavlu@suse.com> Acked-by: Joe Lawrence <joe.lawrence@redhat.com> Acked-by: Miroslav Benes <mbenes@suse.cz> Reviewed-by: Aaron Tomlin <atomlin@atomlin.com> Link: https://patch.msgid.link/20260123102825.3521961-3-petr.pavlu@suse.com Signed-off-by: Josh Poimboeuf <jpoimboe@kernel.org>
This commit is contained in:
committed by
Josh Poimboeuf
parent
ab10815472
commit
b525fcaf0a
@@ -19,7 +19,7 @@ static int __init livepatch_mod_init(void)
|
||||
unsigned int nr_objs;
|
||||
int ret;
|
||||
|
||||
obj_exts = klp_find_section_by_name(THIS_MODULE, "__klp_objects",
|
||||
obj_exts = klp_find_section_by_name(THIS_MODULE, ".init.klp_objects",
|
||||
&obj_exts_sec_size);
|
||||
nr_objs = obj_exts_sec_size / sizeof(*obj_exts);
|
||||
if (!nr_objs) {
|
||||
|
||||
Reference in New Issue
Block a user