[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <20161221.153105.1045097172899590296.davem@davemloft.net>
Date: Wed, 21 Dec 2016 15:31:05 -0500 (EST)
From: David Miller <davem@...emloft.net>
To: eric.dumazet@...il.com
Cc: netdev@...r.kernel.org, edumazet@...gle.com, madalin.bucur@....com
Subject: Re: [PATCH net] tcp: add a missing barrier in tcp_tasklet_func()
From: Eric Dumazet <eric.dumazet@...il.com>
Date: Wed, 21 Dec 2016 05:42:43 -0800
> From: Eric Dumazet <edumazet@...gle.com>
>
> Madalin reported crashes happening in tcp_tasklet_func() on powerpc64
>
> Before TSQ_QUEUED bit is cleared, we must ensure the changes done
> by list_del(&tp->tsq_node); are committed to memory, otherwise
> corruption might happen, as an other cpu could catch TSQ_QUEUED
> clearance too soon.
>
> We can notice that old kernels were immune to this bug, because
> TSQ_QUEUED was cleared after a bh_lock_sock(sk)/bh_unlock_sock(sk)
> section, but they could have missed a kick to write additional bytes,
> when NIC interrupts for a given flow are spread to multiple cpus.
>
> Affected TCP flows would need an incoming ACK or RTO timer to add more
> packets to the pipe. So overall situation should be better now.
>
> Fixes: b223feb9de2a ("tcp: tsq: add shortcut in tcp_tasklet_func()")
> Signed-off-by: Eric Dumazet <edumazet@...gle.com>
> Reported-by: Madalin Bucur <madalin.bucur@....com>
> Tested-by: Madalin Bucur <madalin.bucur@....com>
Applied, thanks Eric.
Powered by blists - more mailing lists