]> git.baikalelectronics.ru Git - kernel.git/commit
modpost: check for static EXPORT_SYMBOL* functions
authorDenis Efremov <efremov@linux.com>
Thu, 1 Aug 2019 06:06:57 +0000 (09:06 +0300)
committerMasahiro Yamada <yamada.masahiro@socionext.com>
Tue, 13 Aug 2019 16:10:18 +0000 (01:10 +0900)
commitfbcb4a984e60f1bd15f106a665adbf7d788061aa
tree202a96f42677731f49a85b5c06c9308c3b5af8f6
parent2dff16f0892f88e5038eb0b7cb5f72de1ee9033e
modpost: check for static EXPORT_SYMBOL* functions

This patch adds a check to warn about static EXPORT_SYMBOL* functions
during the modpost. In most of the cases, a static symbol marked for
exporting is an odd combination that should be fixed either by deleting
the exporting mark or by removing the static attribute and adding the
appropriate declaration to headers.

This check could help to detect the following problems:
1. b14484a6ebcb ("i2c: add newly exported functions to the header, too")
2. 550134bb0041 ("net: phy: make exported variables non-static")
3. 2dad5d1b83ab ("mm: remove the exporting of totalram_pages")
4. de13bd432502 ("s390/zcrypt: remove the exporting of ap_query_configuration")
5. 4dd21a8476d2 ("sunrpc/cache: remove the exporting of cache_seq_next")
6. f39b7574c39a ("crypto: skcipher - remove the exporting of skcipher_walk_next")
7. 342a47941059 ("gve: Remove the exporting of gve_probe")
8. ebaf5e3ba0f3 ("scsi: libsas: remove the exporting of sas_wait_eh")
9. ...

The build time impact is very limited and is almost at the unnoticeable
level (< 1 sec).

Acked-by: Emil Velikov <emil.l.velikov@gmail.com>
Signed-off-by: Denis Efremov <efremov@linux.com>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
scripts/mod/modpost.c