]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commit - include/net/sock.h
sock: fix lockdep annotation in release_sock
authorHannes Frederic Sowa <hannes@stressinduktion.org>
Tue, 5 Apr 2016 15:10:14 +0000 (17:10 +0200)
committerDavid S. Miller <davem@davemloft.net>
Thu, 7 Apr 2016 20:44:14 +0000 (16:44 -0400)
commit61881cfb5ad80c1d0a46ca6d08b7e271892b2ff6
tree122cdc70b2d17ec6027143c442bfe0a26ce2b61f
parent8501786929de4616b10b8059ad97abd304a7dddf
sock: fix lockdep annotation in release_sock

During release_sock we use callbacks to finish the processing
of outstanding skbs on the socket. We actually are still locked,
sk_locked.owned == 1, but we already told lockdep that the mutex
is released. This could lead to false positives in lockdep for
lockdep_sock_is_held (we don't hold the slock spinlock during processing
the outstanding skbs).

I took over this patch from Eric Dumazet and tested it.

Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: Hannes Frederic Sowa <hannes@stressinduktion.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/sock.h
net/core/sock.c