Un-blacklist some symbol names

This caused important symbols to be ignored (at least for the
list of instances) See https://github.com/bootlin/elixir/issues/44

Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
This commit is contained in:
Michael Opdenacker 2019-07-16 16:00:46 +02:00
parent 77ce361dba
commit 5d35c4dae8

11
lib.py
View file

@ -55,7 +55,6 @@ blacklist = (
b'err',
b'flags',
b'h',
b'u32',
b'data',
b'const',
b'skb',
@ -63,9 +62,7 @@ blacklist = (
b'name',
b'priv',
b'p',
b'inode',
b'val',
b'u8',
b'info',
b'buf',
b'rc',
@ -86,14 +83,10 @@ blacklist = (
b'lock',
b'error',
b'reg',
b'file',
b's',
b'u64',
b'id',
b'tmp',
b'u16',
b'codec',
b'bool',
b'req',
b'bp',
b'c',
@ -101,13 +94,11 @@ blacklist = (
b'r',
b'n',
b'value',
b'false',
b'start',
b'index',
b'res',
b'regs',
b'j',
b'true',
b'base',
b'irq',
b'x',
@ -136,7 +127,6 @@ blacklist = (
b'idx',
b'end',
b'root',
b'memset',
b'struct',
b'static',
b'define',
@ -153,7 +143,6 @@ blacklist = (
b'buffer',
b'length',
b'result',
b'unlikely',
b'extern',
b'driver',
)