mirror of
https://github.com/dynup/kpatch
synced 2025-03-03 01:07:42 +00:00
The "descriptor" static local variables and their containing __verbose section are used for dynamic debug printks. They should be considered as special static local variable symbols because they have the same requirements: they should never be correlated and they should only be included if referenced by an included function.
8 lines
106 B
Bash
Executable File
8 lines
106 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if $(nm kpatch-gcc-static-local-var-4.ko | grep -q free_ioctx); then
|
|
exit 1
|
|
else
|
|
exit 0
|
|
fi
|