diff options
author | Julian Wiedmann <jwi@linux.ibm.com> | 2019-03-20 22:02:56 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-03-21 23:39:25 +0300 |
commit | 02afc7ad45bd6cfc9fd51fdbc132455371b63469 (patch) | |
tree | 9136e544fc16eb034a84440f4b59d2b932159b03 /net/core/dst.c | |
parent | 88f808f312d3b847c873352210225a43b30b3ece (diff) | |
download | linux-02afc7ad45bd6cfc9fd51fdbc132455371b63469.tar.xz |
net: dst: remove gc leftovers
Get rid of some obsolete gc-related documentation and macros that were
missed in commit 5b7c9a8ff828 ("net: remove dst gc related code").
CC: Wei Wang <weiwan@google.com>
Signed-off-by: Julian Wiedmann <jwi@linux.ibm.com>
Acked-by: Wei Wang <weiwan@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/dst.c')
-rw-r--r-- | net/core/dst.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/net/core/dst.c b/net/core/dst.c index a263309df115..1f13d90cd0e4 100644 --- a/net/core/dst.c +++ b/net/core/dst.c @@ -26,23 +26,6 @@ #include <net/dst.h> #include <net/dst_metadata.h> -/* - * Theory of operations: - * 1) We use a list, protected by a spinlock, to add - * new entries from both BH and non-BH context. - * 2) In order to keep spinlock held for a small delay, - * we use a second list where are stored long lived - * entries, that are handled by the garbage collect thread - * fired by a workqueue. - * 3) This list is guarded by a mutex, - * so that the gc_task and dst_dev_event() can be synchronized. - */ - -/* - * We want to keep lock & list close together - * to dirty as few cache lines as possible in __dst_free(). - * As this is not a very strong hint, we dont force an alignment on SMP. - */ int dst_discard_out(struct net *net, struct sock *sk, struct sk_buff *skb) { kfree_skb(skb); |