Lines Matching refs:pnext
1518 struct sk_buff *pfirst, *pnext; in brcmf_sdio_rxglom() local
1533 pfirst = pnext = NULL; in brcmf_sdio_rxglom()
1551 pnext = NULL; in brcmf_sdio_rxglom()
1569 pnext = brcmu_pkt_buf_get_skb(sublen + bus->sgentry_align); in brcmf_sdio_rxglom()
1570 if (pnext == NULL) { in brcmf_sdio_rxglom()
1575 skb_queue_tail(&bus->glom, pnext); in brcmf_sdio_rxglom()
1578 pkt_align(pnext, sublen, bus->sgentry_align); in brcmf_sdio_rxglom()
1583 if (pnext) { in brcmf_sdio_rxglom()
1591 pfirst = pnext = NULL; in brcmf_sdio_rxglom()
1608 skb_queue_walk(&bus->glom, pnext) { in brcmf_sdio_rxglom()
1610 pnext, (u8 *) (pnext->data), in brcmf_sdio_rxglom()
1611 pnext->len, pnext->len); in brcmf_sdio_rxglom()
1658 skb_queue_walk(&bus->glom, pnext) { in brcmf_sdio_rxglom()
1663 rd_new.len = pnext->len; in brcmf_sdio_rxglom()
1666 errcode = brcmf_sdio_hdparse(bus, pnext->data, &rd_new, in brcmf_sdio_rxglom()
1670 pnext->data, 32, "subframe:\n"); in brcmf_sdio_rxglom()
1688 skb_queue_walk_safe(&bus->glom, pfirst, pnext) { in brcmf_sdio_rxglom()