> -----Original Message----- > From: Intel-wired-lan <intel-wired-lan-bounces@xxxxxxxxxx> On Behalf Of > Maciej Fijalkowski > Sent: Friday, March 18, 2022 12:06 AM > To: intel-wired-lan@xxxxxxxxxxxxxxxx > Cc: netdev@xxxxxxxxxxxxxxx; kuba@xxxxxxxxxx; bpf@xxxxxxxxxxxxxxx; > davem@xxxxxxxxxxxxx; Karlsson, Magnus <magnus.karlsson@xxxxxxxxx> > Subject: [Intel-wired-lan] [PATCH intel-net 3/3] ice: clear > cmd_type_offset_bsz for TX rings > > Currently when XDP rings are created, each descriptor gets its DD bit set, > which turns out to be the wrong approach as it can lead to a situation where > more descriptors get cleaned than it was supposed to, e.g. when AF_XDP > busy poll is run with a large batch size. In this situation, the driver would > request for more buffers than it is able to handle. > > Fix this by not setting the DD bits in ice_xdp_alloc_setup_rings(). They should > be initialized to zero instead. > > Fixes: 9610bd988df9 ("ice: optimize XDP_TX workloads") > Signed-off-by: Maciej Fijalkowski <maciej.fijalkowski@xxxxxxxxx> > --- > drivers/net/ethernet/intel/ice/ice_main.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > Tested-by: Shwetha Nagaraju <Shwetha.nagaraju@xxxxxxxxx>