Merge branch 'tcp_get_info-locking'
authorDavid S. Miller <davem@davemloft.net>
Wed, 9 Nov 2016 18:02:28 +0000 (13:02 -0500)
committerDavid S. Miller <davem@davemloft.net>
Wed, 9 Nov 2016 18:02:28 +0000 (13:02 -0500)
Eric Dumazet says:

====================
tcp: tcp_get_info() locking changes

This short series prepares tcp_get_info() for more detailed infos.

In order to not slow down fast path, our goal is to use the normal
socket spinlock instead of custom synchronization.

All we need to ensure is that tcp_get_info() is not called with
ehash lock, which might dead lock, since packet processing would acquire
the spinlocks in reverse way.
====================

Signed-off-by: David S. Miller <davem@davemloft.net>

Trivial merge