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

niu: BUG on inability to find page in rx page hashes.

Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 05eda04b
......@@ -3330,10 +3330,12 @@ static struct page *niu_find_rxpage(struct rx_ring_info *rp, u64 addr,
for (; (p = *pp) != NULL; pp = (struct page **) &p->mapping) {
if (p->index == addr) {
*link = pp;
break;
goto found;
}
}
BUG();
found:
return p;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册