diff options
author | Ido Schimmel <idosch@mellanox.com> | 2017-03-10 08:56:18 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-03-10 09:45:09 -0800 |
commit | c0243892cbb0e48873d6132f673c830602808245 (patch) | |
tree | 8791a5ccdf38e91a3b9d7a091772287cb8c03088 /net/ipv4/Makefile | |
parent | 71e8727ebee78f7f6711f272d6ba5d78d0852835 (diff) | |
download | linux-c0243892cbb0e48873d6132f673c830602808245.tar.gz linux-c0243892cbb0e48873d6132f673c830602808245.tar.bz2 linux-c0243892cbb0e48873d6132f673c830602808245.zip |
ipv4: fib: Move FIB notification code to a separate file
Most of the code concerned with the FIB notification chain currently
resides in fib_trie.c, but this isn't really appropriate, as the FIB
notification chain is also used for FIB rules.
Therefore, it makes sense to move the common FIB notification code to a
separate file and have it export the relevant functions, which can be
invoked by its different users (e.g., fib_trie.c, fib_rules.c).
Signed-off-by: Ido Schimmel <idosch@mellanox.com>
Signed-off-by: Jiri Pirko <jiri@mellanox.com>
Acked-by: David Ahern <dsa@cumulusnetworks.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/Makefile')
-rw-r--r-- | net/ipv4/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/Makefile b/net/ipv4/Makefile index c6d4238ff94a..f83de23a30e7 100644 --- a/net/ipv4/Makefile +++ b/net/ipv4/Makefile @@ -11,7 +11,7 @@ obj-y := route.o inetpeer.o protocol.o \ tcp_rate.o tcp_recovery.o \ tcp_offload.o datagram.o raw.o udp.o udplite.o \ udp_offload.o arp.o icmp.o devinet.o af_inet.o igmp.o \ - fib_frontend.o fib_semantics.o fib_trie.o \ + fib_frontend.o fib_semantics.o fib_trie.o fib_notifier.o \ inet_fragment.o ping.o ip_tunnel_core.o gre_offload.o obj-$(CONFIG_NET_IP_TUNNEL) += ip_tunnel.o |