Thread (2 messages) 2 messages, 1 author, 2015-03-11
STALE4132d

[PATCH 0/15] don't export static symbol

From: Julia Lawall <hidden>
Date: 2015-03-11 17:09:43
Also in: alsa-devel, kernel-janitors, linux-arm-kernel, linux-crypto, linux-media, linux-nfs, linux-rdma, linux-scsi, linux-wireless, lkml, netdev

These patches remove EXPORT_SYMBOL or EXPORT_SYMBOL_GPL declarations on
static functions.

This was done using the following semantic patch:
(http://coccinelle.lip6.fr/)

// <smpl>
@r@
type T;
identifier f;
@@

static T f (...) { ... }

@@
identifier r.f;
declarer name EXPORT_SYMBOL;
@@

-EXPORT_SYMBOL(f);

@@
identifier r.f;
declarer name EXPORT_SYMBOL_GPL;
@@

-EXPORT_SYMBOL_GPL(f);
// </smpl>
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help