Home
last modified time | relevance | path

Searched refs:bouncebuffer (Results 1 – 5 of 5) sorted by relevance

/linux-4.4.14/fs/ncpfs/
Dfile.c175 void *bouncebuffer; in ncp_file_write_iter() local
194 bouncebuffer = vmalloc(bufsize); in ncp_file_write_iter()
195 if (!bouncebuffer) { in ncp_file_write_iter()
206 if (copy_from_iter(bouncebuffer, to_write, from) != to_write) { in ncp_file_write_iter()
212 pos, to_write, bouncebuffer, &written_this_time) != 0) { in ncp_file_write_iter()
222 vfree(bouncebuffer); in ncp_file_write_iter()
Dioctl.c262 char* bouncebuffer; in __ncp_ioctl() local
288 bouncebuffer = vmalloc(NCP_PACKET_SIZE_INTERNAL); in __ncp_ioctl()
289 if (!bouncebuffer) in __ncp_ioctl()
291 if (copy_from_user(bouncebuffer, request.data, request.size)) { in __ncp_ioctl()
292 vfree(bouncebuffer); in __ncp_ioctl()
302 memcpy(server->packet, bouncebuffer, request.size); in __ncp_ioctl()
305 bouncebuffer, NCP_PACKET_SIZE_INTERNAL); in __ncp_ioctl()
313 if (copy_to_user(request.data, bouncebuffer, result)) in __ncp_ioctl()
315 vfree(bouncebuffer); in __ncp_ioctl()
/linux-4.4.14/drivers/net/wireless/b43/
Ddma.c1306 priv_info->bouncebuffer = NULL; in dma_tx_fragment()
1311 priv_info->bouncebuffer = kmemdup(skb->data, skb->len, in dma_tx_fragment()
1313 if (!priv_info->bouncebuffer) { in dma_tx_fragment()
1320 meta->dmaaddr = map_descbuffer(ring, priv_info->bouncebuffer, skb->len, 1); in dma_tx_fragment()
1322 kfree(priv_info->bouncebuffer); in dma_tx_fragment()
1323 priv_info->bouncebuffer = NULL; in dma_tx_fragment()
1551 kfree(priv_info->bouncebuffer); in b43_dma_handle_txstatus()
1552 priv_info->bouncebuffer = NULL; in b43_dma_handle_txstatus()
Dxmit.h405 void *bouncebuffer; member
/linux-4.4.14/Documentation/serial/
Ddriver59 access to the info->tmpbuf bouncebuffer used for port writes.