Lines Matching refs:pnext
1507 struct sk_buff *pfirst, *pnext; in brcmf_sdio_rxglom() local
1522 pfirst = pnext = NULL; in brcmf_sdio_rxglom()
1540 pnext = NULL; in brcmf_sdio_rxglom()
1558 pnext = brcmu_pkt_buf_get_skb(sublen + bus->sgentry_align); in brcmf_sdio_rxglom()
1559 if (pnext == NULL) { in brcmf_sdio_rxglom()
1564 skb_queue_tail(&bus->glom, pnext); in brcmf_sdio_rxglom()
1567 pkt_align(pnext, sublen, bus->sgentry_align); in brcmf_sdio_rxglom()
1572 if (pnext) { in brcmf_sdio_rxglom()
1580 pfirst = pnext = NULL; in brcmf_sdio_rxglom()
1597 skb_queue_walk(&bus->glom, pnext) { in brcmf_sdio_rxglom()
1599 pnext, (u8 *) (pnext->data), in brcmf_sdio_rxglom()
1600 pnext->len, pnext->len); in brcmf_sdio_rxglom()
1647 skb_queue_walk(&bus->glom, pnext) { in brcmf_sdio_rxglom()
1652 rd_new.len = pnext->len; in brcmf_sdio_rxglom()
1655 errcode = brcmf_sdio_hdparse(bus, pnext->data, &rd_new, in brcmf_sdio_rxglom()
1659 pnext->data, 32, "subframe:\n"); in brcmf_sdio_rxglom()
1677 skb_queue_walk_safe(&bus->glom, pfirst, pnext) { in brcmf_sdio_rxglom()