Lines Matching refs:pMsgBlock
2305 struct sk_buff *pMsgBlock; /* pointer to a new message block */ in FillRxDescriptor() local
2310 pMsgBlock = alloc_skb(pAC->RxBufSize, GFP_ATOMIC); in FillRxDescriptor()
2311 if (pMsgBlock == NULL) { in FillRxDescriptor()
2319 skb_reserve(pMsgBlock, 2); /* to align IP frames */ in FillRxDescriptor()
2326 virt_to_page(pMsgBlock->data), in FillRxDescriptor()
2327 ((unsigned long) pMsgBlock->data & in FillRxDescriptor()
2334 pRxd->pMBuf = pMsgBlock; in FillRxDescriptor()
4323 struct sk_buff *pMsgBlock; /* pointer to a new message block */ local
4325 pMsgBlock = alloc_skb(BufferSize + sizeof(SK_MBUF), GFP_ATOMIC);
4326 if (pMsgBlock == NULL) {
4329 pRlmtMbuf = (SK_MBUF*) pMsgBlock->data;
4330 skb_reserve(pMsgBlock, sizeof(SK_MBUF));
4332 pRlmtMbuf->pOs = pMsgBlock;
4333 pRlmtMbuf->pData = pMsgBlock->data; /* Data buffer. */