net: nixge: Do not zero application specific fields in desc
Do not zero application specific fields in DMA descriptors. The hardware does ignore them, so should software. Signed-off-by: Moritz Fischer <mdf@kernel.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
6d37fa49da
commit
e158770e22
|
@ -739,22 +739,12 @@ static void nixge_dma_err_handler(unsigned long data)
|
|||
cur_p->phys = 0;
|
||||
cur_p->cntrl = 0;
|
||||
cur_p->status = 0;
|
||||
cur_p->app0 = 0;
|
||||
cur_p->app1 = 0;
|
||||
cur_p->app2 = 0;
|
||||
cur_p->app3 = 0;
|
||||
cur_p->app4 = 0;
|
||||
cur_p->sw_id_offset = 0;
|
||||
}
|
||||
|
||||
for (i = 0; i < RX_BD_NUM; i++) {
|
||||
cur_p = &lp->rx_bd_v[i];
|
||||
cur_p->status = 0;
|
||||
cur_p->app0 = 0;
|
||||
cur_p->app1 = 0;
|
||||
cur_p->app2 = 0;
|
||||
cur_p->app3 = 0;
|
||||
cur_p->app4 = 0;
|
||||
}
|
||||
|
||||
lp->tx_bd_ci = 0;
|
||||
|
|
Loading…
Reference in New Issue