diff options
author | Ido Schimmel <idosch@mellanox.com> | 2016-12-03 18:44:58 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-12-04 03:29:35 +0300 |
commit | b423cb10807b3a24b909c40f4372df88118a9875 (patch) | |
tree | d5390de939c954f2a87401934557ba594c0e814e /net/ipv4 | |
parent | 548ed722465b763841252bf74b7eda52cfc9131c (diff) | |
download | linux-b423cb10807b3a24b909c40f4372df88118a9875.tar.xz |
ipv4: fib: Export free_fib_info()
The FIB notification chain is going to be converted to an atomic chain,
which means switchdev drivers will have to offload FIB entries in
deferred work, as hardware operations entail sleeping.
However, while the work is queued fib info might be freed, so a
reference must be taken. To release the reference (and potentially free
the fib info) fib_info_put() will be called, which in turn calls
free_fib_info().
Export free_fib_info() so that modules will be able to invoke
fib_info_put().
Signed-off-by: Ido Schimmel <idosch@mellanox.com>
Signed-off-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/fib_semantics.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv4/fib_semantics.c b/net/ipv4/fib_semantics.c index 388d3e21629b..c1bc1e92de0e 100644 --- a/net/ipv4/fib_semantics.c +++ b/net/ipv4/fib_semantics.c @@ -234,6 +234,7 @@ void free_fib_info(struct fib_info *fi) #endif call_rcu(&fi->rcu, free_fib_info_rcu); } +EXPORT_SYMBOL_GPL(free_fib_info); void fib_release_info(struct fib_info *fi) { |