mirror of https://github.com/dynup/kpatch
Merge pull request #1115 from kamalesh-babulal/tristate-lookup-fix
lookup: Add __UNIQUE_ID_ to maybe_discarded_sym list
This commit is contained in:
commit
a6e8fd84cc
|
@ -83,7 +83,8 @@ static int maybe_discarded_sym(const char *name)
|
|||
if (!strncmp(name, "__exitcall_", 11) ||
|
||||
!strncmp(name, "__brk_reservation_fn_", 21) ||
|
||||
!strncmp(name, "__func_stack_frame_non_standard_", 32) ||
|
||||
!strncmp(name, "__addressable_", 14))
|
||||
!strncmp(name, "__addressable_", 14) ||
|
||||
!strncmp(name, "__UNIQUE_ID_", 12))
|
||||
return 1;
|
||||
|
||||
return 0;
|
||||
|
|
Loading…
Reference in New Issue