mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-12 08:09:56 +00:00
r8169: improve rtl8169_rx_fill
We have only one user of the error path, so we can inline it. In addition the call to rtl8169_make_unusable_by_asic() can be removed because rtl8169_alloc_rx_data() didn't call rtl8169_mark_to_asic() yet for the respective index if returning NULL. Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
7cb83b21fd
commit
e4b5c7a582
@ -5493,18 +5493,15 @@ static int rtl8169_rx_fill(struct rtl8169_private *tp)
|
||||
|
||||
data = rtl8169_alloc_rx_data(tp, tp->RxDescArray + i);
|
||||
if (!data) {
|
||||
rtl8169_make_unusable_by_asic(tp->RxDescArray + i);
|
||||
goto err_out;
|
||||
rtl8169_rx_clear(tp);
|
||||
return -ENOMEM;
|
||||
}
|
||||
tp->Rx_databuff[i] = data;
|
||||
}
|
||||
|
||||
rtl8169_mark_as_last_descriptor(tp->RxDescArray + NUM_RX_DESC - 1);
|
||||
return 0;
|
||||
|
||||
err_out:
|
||||
rtl8169_rx_clear(tp);
|
||||
return -ENOMEM;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int rtl8169_init_ring(struct rtl8169_private *tp)
|
||||
|
Loading…
x
Reference in New Issue
Block a user