Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 750afbf8 authored by David S. Miller's avatar David S. Miller
Browse files

bgmac: Fix reversed test of build_skb() return value.



Fixes: f1640c3d ("bgmac: fix a missing check for build_skb")
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent c6894dec
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -466,7 +466,7 @@ static int bgmac_dma_rx_read(struct bgmac *bgmac, struct bgmac_dma_ring *ring,
			len -= ETH_FCS_LEN;
			len -= ETH_FCS_LEN;


			skb = build_skb(buf, BGMAC_RX_ALLOC_SIZE);
			skb = build_skb(buf, BGMAC_RX_ALLOC_SIZE);
			if (unlikely(skb)) {
			if (unlikely(!skb)) {
				bgmac_err(bgmac, "build_skb failed\n");
				bgmac_err(bgmac, "build_skb failed\n");
				put_page(virt_to_head_page(buf));
				put_page(virt_to_head_page(buf));
				break;
				break;