Lines Matching refs:pnext
1517 struct sk_buff *pfirst, *pnext; in brcmf_sdio_rxglom() local
1532 pfirst = pnext = NULL; in brcmf_sdio_rxglom()
1550 pnext = NULL; in brcmf_sdio_rxglom()
1568 pnext = brcmu_pkt_buf_get_skb(sublen + bus->sgentry_align); in brcmf_sdio_rxglom()
1569 if (pnext == NULL) { in brcmf_sdio_rxglom()
1574 skb_queue_tail(&bus->glom, pnext); in brcmf_sdio_rxglom()
1577 pkt_align(pnext, sublen, bus->sgentry_align); in brcmf_sdio_rxglom()
1582 if (pnext) { in brcmf_sdio_rxglom()
1590 pfirst = pnext = NULL; in brcmf_sdio_rxglom()
1607 skb_queue_walk(&bus->glom, pnext) { in brcmf_sdio_rxglom()
1609 pnext, (u8 *) (pnext->data), in brcmf_sdio_rxglom()
1610 pnext->len, pnext->len); in brcmf_sdio_rxglom()
1657 skb_queue_walk(&bus->glom, pnext) { in brcmf_sdio_rxglom()
1662 rd_new.len = pnext->len; in brcmf_sdio_rxglom()
1665 errcode = brcmf_sdio_hdparse(bus, pnext->data, &rd_new, in brcmf_sdio_rxglom()
1669 pnext->data, 32, "subframe:\n"); in brcmf_sdio_rxglom()
1687 skb_queue_walk_safe(&bus->glom, pfirst, pnext) { in brcmf_sdio_rxglom()