Skip to content

tcp: Add listening address to SYN flood message

Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=2143850
Upstream Status: https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git

With many listeners on different IP but same port, it is not possible to
tell which listener has the problem from "SYN flooding on port X".

Add the listening IP so the message format is now:

Possible SYN flooding on port 0.0.0.0:9001.  
Possible SYN flooding on port 127.0.0.1:9001.  
Possible SYN flooding on port [::]:9001.  
Possible SYN flooding on port [fc00::1]:9001.  

Add recent READ_ONCE data-race patches to avoid cherry-pick conflicts.

Signed-off-by: Jamie Bainbridge jbainbri@redhat.com

Merge request reports