aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/inetpeer.h
diff options
context:
space:
mode:
authorWillem de Bruijn <willemb@google.com>2014-09-08 19:08:34 -0400
committerDavid S. Miller <davem@davemloft.net>2014-09-08 16:42:42 -0700
commita7f26b7e1ee73ac9e766c430fea5af658d839954 (patch)
tree24ddbc5f3052e033a8721d0b0ef27b425823123f /include/net/inetpeer.h
parentdrivers: net: cpsw: Add support for pause frames (diff)
downloadlinux-dev-a7f26b7e1ee73ac9e766c430fea5af658d839954.tar.xz
linux-dev-a7f26b7e1ee73ac9e766c430fea5af658d839954.zip
inet: remove dead inetpeer sequence code
inetpeer sequence numbers are no longer incremented, so no need to check and flush the tree. The function that increments the sequence number was already dead code and removed in in "ipv4: remove unused function" (068a6e18). Remove the code that checks for a change, too. Verifying that v4_seq and v6_seq are never incremented and thus that flush_check compares bp->flush_seq to 0 is trivial. The second part of the change removes flush_check completely even though bp->flush_seq is exactly !0 once, at initialization. This change is correct because the time this branch is true is when bp->root == peer_avl_empty_rcu, in which the branch and inetpeer_invalidate_tree are a NOOP. Signed-off-by: Willem de Bruijn <willemb@google.com> Acked-by: Eric Dumazet <edumazet@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/inetpeer.h')
-rw-r--r--include/net/inetpeer.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/net/inetpeer.h b/include/net/inetpeer.h
index 01d590ee5e7e..80479abddf73 100644
--- a/include/net/inetpeer.h
+++ b/include/net/inetpeer.h
@@ -61,7 +61,6 @@ struct inet_peer {
struct inet_peer_base {
struct inet_peer __rcu *root;
seqlock_t lock;
- u32 flush_seq;
int total;
};