diff options
author | Nicolas Dichtel <nicolas.dichtel@6wind.com> | 2010-07-19 23:51:38 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-07-20 13:28:03 -0700 |
commit | d79d991379af35d43f003f162e8650e72965b8ca (patch) | |
tree | 64e66aab45e5038211c6678527afa5f05a9ddaac /net/core/dst.c | |
parent | dab1086362f0a357e74f45bba48d664a48c294ec (diff) | |
download | op-kernel-dev-d79d991379af35d43f003f162e8650e72965b8ca.zip op-kernel-dev-d79d991379af35d43f003f162e8650e72965b8ca.tar.gz |
__dst_free(): put EXPORT_SYMBOLS after the fct
Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/dst.c')
-rw-r--r-- | net/core/dst.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/dst.c b/net/core/dst.c index 9920722..6c41b1f 100644 --- a/net/core/dst.c +++ b/net/core/dst.c @@ -197,7 +197,6 @@ static void ___dst_free(struct dst_entry *dst) dst->input = dst->output = dst_discard; dst->obsolete = 2; } -EXPORT_SYMBOL(__dst_free); void __dst_free(struct dst_entry *dst) { @@ -213,6 +212,7 @@ void __dst_free(struct dst_entry *dst) } spin_unlock_bh(&dst_garbage.lock); } +EXPORT_SYMBOL(__dst_free); struct dst_entry *dst_destroy(struct dst_entry * dst) { |