Lines Matching refs:pnext
1540 struct sk_buff *pfirst, *pnext; in brcmf_sdio_rxglom() local
1555 pfirst = pnext = NULL; in brcmf_sdio_rxglom()
1573 pnext = NULL; in brcmf_sdio_rxglom()
1591 pnext = brcmu_pkt_buf_get_skb(sublen + bus->sgentry_align); in brcmf_sdio_rxglom()
1592 if (pnext == NULL) { in brcmf_sdio_rxglom()
1597 skb_queue_tail(&bus->glom, pnext); in brcmf_sdio_rxglom()
1600 pkt_align(pnext, sublen, bus->sgentry_align); in brcmf_sdio_rxglom()
1605 if (pnext) { in brcmf_sdio_rxglom()
1613 pfirst = pnext = NULL; in brcmf_sdio_rxglom()
1630 skb_queue_walk(&bus->glom, pnext) { in brcmf_sdio_rxglom()
1632 pnext, (u8 *) (pnext->data), in brcmf_sdio_rxglom()
1633 pnext->len, pnext->len); in brcmf_sdio_rxglom()
1686 skb_queue_walk(&bus->glom, pnext) { in brcmf_sdio_rxglom()
1691 rd_new.len = pnext->len; in brcmf_sdio_rxglom()
1694 errcode = brcmf_sdio_hdparse(bus, pnext->data, &rd_new, in brcmf_sdio_rxglom()
1698 pnext->data, 32, "subframe:\n"); in brcmf_sdio_rxglom()
1724 skb_queue_walk_safe(&bus->glom, pfirst, pnext) { in brcmf_sdio_rxglom()