Searched refs:bouncebuffer (Results 1 – 5 of 5) sorted by relevance
/linux-3.4.99/fs/ncpfs/ |
D | file.c | 185 void* bouncebuffer; in ncp_file_write() local 224 bouncebuffer = vmalloc(bufsize); in ncp_file_write() 225 if (!bouncebuffer) { in ncp_file_write() 235 if (copy_from_user(bouncebuffer, buf, to_write)) { in ncp_file_write() 241 pos, to_write, bouncebuffer, &written_this_time) != 0) { in ncp_file_write() 253 vfree(bouncebuffer); in ncp_file_write()
|
D | ioctl.c | 262 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() 314 if (copy_to_user(request.data, bouncebuffer, result)) in __ncp_ioctl() 316 vfree(bouncebuffer); in __ncp_ioctl()
|
/linux-3.4.99/drivers/net/wireless/b43/ |
D | dma.c | 1314 priv_info->bouncebuffer = NULL; in dma_tx_fragment() 1319 priv_info->bouncebuffer = kmemdup(skb->data, skb->len, in dma_tx_fragment() 1321 if (!priv_info->bouncebuffer) { in dma_tx_fragment() 1328 meta->dmaaddr = map_descbuffer(ring, priv_info->bouncebuffer, skb->len, 1); in dma_tx_fragment() 1330 kfree(priv_info->bouncebuffer); in dma_tx_fragment() 1331 priv_info->bouncebuffer = NULL; in dma_tx_fragment() 1559 kfree(priv_info->bouncebuffer); in b43_dma_handle_txstatus() 1560 priv_info->bouncebuffer = NULL; in b43_dma_handle_txstatus()
|
D | xmit.h | 401 void *bouncebuffer; member
|
/linux-3.4.99/Documentation/serial/ |
D | driver | 59 access to the info->tmpbuf bouncebuffer used for port writes.
|