lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-ID: <BYAPR11MB3367A2CB5BE0D529EED85EC6FC339@BYAPR11MB3367.namprd11.prod.outlook.com> Date: Thu, 27 Oct 2022 14:41:33 +0000 From: "G, GurucharanX" <gurucharanx.g@...el.com> To: Akihiko Odaki <akihiko.odaki@...nix.com> CC: "netdev@...r.kernel.org" <netdev@...r.kernel.org>, "linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>, "Yuri Benditovich" <yuri.benditovich@...nix.com>, Eric Dumazet <edumazet@...gle.com>, Jakub Kicinski <kuba@...nel.org>, Yan Vugenfirer <yan@...nix.com>, "intel-wired-lan@...ts.osuosl.org" <intel-wired-lan@...ts.osuosl.org>, Paolo Abeni <pabeni@...hat.com>, "David S. Miller" <davem@...emloft.net> Subject: RE: [Intel-wired-lan] [PATCH] e1000e: Fix TX dispatch condition > -----Original Message----- > From: Intel-wired-lan <intel-wired-lan-bounces@...osl.org> On Behalf Of > Akihiko Odaki > Sent: Thursday, October 13, 2022 10:31 AM > Cc: netdev@...r.kernel.org; linux-kernel@...r.kernel.org; Yuri Benditovich > <yuri.benditovich@...nix.com>; Eric Dumazet <edumazet@...gle.com>; > Jakub Kicinski <kuba@...nel.org>; Yan Vugenfirer <yan@...nix.com>; intel- > wired-lan@...ts.osuosl.org; Paolo Abeni <pabeni@...hat.com>; David S. > Miller <davem@...emloft.net> > Subject: [Intel-wired-lan] [PATCH] e1000e: Fix TX dispatch condition > > e1000_xmit_frame is expected to stop the queue and dispatch frames to > hardware if there is not sufficient space for the next frame in the buffer, but > sometimes it failed to do so because the estimated maxmium size of frame > was wrong. As the consequence, the later invocation of e1000_xmit_frame > failed with NETDEV_TX_BUSY, and the frame in the buffer remained forever, > resulting in a watchdog failure. > > This change fixes the estimated size by making it match with the condition for > NETDEV_TX_BUSY. Apparently, the old estimation failed to account for the > following lines which determines the space requirement for not causing > NETDEV_TX_BUSY: > > /* reserve a descriptor for the offload context */ > > if ((mss) || (skb->ip_summed == CHECKSUM_PARTIAL)) > > count++; > > count++; > > > > count += DIV_ROUND_UP(len, adapter->tx_fifo_limit); > > This issue was found with http-stress02 test included in Linux Test Project > 20220930. > > Signed-off-by: Akihiko Odaki <akihiko.odaki@...nix.com> > --- > drivers/net/ethernet/intel/e1000e/netdev.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > Tested-by: Gurucharan <gurucharanx.g@...el.com> (A Contingent worker at Intel)
Powered by blists - more mailing lists