提交 750afbf8 编写于 作者: D David S. Miller

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

Fixes: f1640c3d ("bgmac: fix a missing check for build_skb")
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 c6894dec
......@@ -466,7 +466,7 @@ static int bgmac_dma_rx_read(struct bgmac *bgmac, struct bgmac_dma_ring *ring,
len -= ETH_FCS_LEN;
skb = build_skb(buf, BGMAC_RX_ALLOC_SIZE);
if (unlikely(skb)) {
if (unlikely(!skb)) {
bgmac_err(bgmac, "build_skb failed\n");
put_page(virt_to_head_page(buf));
break;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册