Home
last modified time | relevance | path

Searched refs:skb_rx (Results 1 – 4 of 4) sorted by relevance

/drivers/net/wireless/st/cw1200/
Dbh.c242 struct sk_buff *skb_rx = NULL; in cw1200_bh_rx_helper() local
277 skb_rx = dev_alloc_skb(alloc_len); in cw1200_bh_rx_helper()
278 if (WARN_ON(!skb_rx)) in cw1200_bh_rx_helper()
281 skb_trim(skb_rx, 0); in cw1200_bh_rx_helper()
282 skb_put(skb_rx, read_len); in cw1200_bh_rx_helper()
283 data = skb_rx->data; in cw1200_bh_rx_helper()
309 skb_trim(skb_rx, wsm_len); in cw1200_bh_rx_helper()
332 if (WARN_ON(wsm_handle_rx(priv, wsm_id, wsm, &skb_rx))) in cw1200_bh_rx_helper()
335 if (skb_rx) { in cw1200_bh_rx_helper()
336 dev_kfree_skb(skb_rx); in cw1200_bh_rx_helper()
[all …]
/drivers/net/wimax/i2400m/
Drx.c166 struct sk_buff *skb_rx; member
202 kfree_skb(args->skb_rx); in i2400m_report_hook_work()
227 kfree_skb(args->skb_rx); in i2400m_report_hook_flush()
243 void i2400m_report_hook_queue(struct i2400m *i2400m, struct sk_buff *skb_rx, in i2400m_report_hook_queue() argument
252 args->skb_rx = skb_get(skb_rx); in i2400m_report_hook_queue()
358 void i2400m_rx_ctl(struct i2400m *i2400m, struct sk_buff *skb_rx, in i2400m_rx_ctl() argument
400 i2400m_report_hook_queue(i2400m, skb_rx, l3l4_hdr, size); in i2400m_rx_ctl()
980 void i2400m_rx_edata(struct i2400m *i2400m, struct sk_buff *skb_rx, in i2400m_rx_edata() argument
997 "size %zu)\n", i2400m, skb_rx, single_last, payload, size); in i2400m_rx_edata()
1005 skb = skb_get(skb_rx); in i2400m_rx_edata()
[all …]
Dnetdev.c453 void i2400m_net_rx(struct i2400m *i2400m, struct sk_buff *skb_rx, in i2400m_net_rx() argument
463 skb = skb_get(skb_rx); in i2400m_net_rx()
/drivers/nfc/st-nci/
Dspi.c79 struct sk_buff *skb_rx; in st_nci_spi_write() local
97 skb_rx = alloc_skb(skb->len, GFP_KERNEL); in st_nci_spi_write()
98 if (!skb_rx) { in st_nci_spi_write()
103 skb_put(skb_rx, skb->len); in st_nci_spi_write()
104 memcpy(skb_rx->data, buf, skb->len); in st_nci_spi_write()
105 ndlc_recv(phy->ndlc, skb_rx); in st_nci_spi_write()