Searched refs:rfds (Results 1 – 8 of 8) sorted by relevance
/linux-4.4.14/tools/usb/ffs-aio-example/simple/device_app/ |
D | aio_simple.c | 215 fd_set rfds; in main() local 280 FD_ZERO(&rfds); in main() 281 FD_SET(ep0, &rfds); in main() 282 FD_SET(evfd, &rfds); in main() 285 &rfds, NULL, NULL, NULL); in main() 293 if (FD_ISSET(ep0, &rfds)) in main() 301 if (FD_ISSET(evfd, &rfds)) { in main()
|
/linux-4.4.14/tools/usb/ffs-aio-example/multibuff/device_app/ |
D | aio_multibuff.c | 245 fd_set rfds; in main() local 303 FD_ZERO(&rfds); in main() 304 FD_SET(ep0, &rfds); in main() 305 FD_SET(evfd, &rfds); in main() 308 &rfds, NULL, NULL, NULL); in main() 316 if (FD_ISSET(ep0, &rfds)) in main() 349 if (!FD_ISSET(evfd, &rfds)) in main()
|
/linux-4.4.14/drivers/net/ethernet/i825xx/ |
D | lib82596.c | 308 struct i596_rfd rfds[RX_RING_SIZE] __attribute__((aligned(32))); member 494 for (i = 0, rfd = dma->rfds; i < rx_ring_size; i++, rfd++) { in init_rx_bufs() 501 lp->rfd_head = dma->rfds; in init_rx_bufs() 502 dma->scb.rfd = SWAP32(virt_to_dma(lp, dma->rfds)); in init_rx_bufs() 503 rfd = dma->rfds; in init_rx_bufs() 505 rfd->v_prev = dma->rfds + rx_ring_size - 1; in init_rx_bufs() 506 rfd = dma->rfds + rx_ring_size - 1; in init_rx_bufs() 507 rfd->v_next = dma->rfds; in init_rx_bufs() 508 rfd->b_next = SWAP32(virt_to_dma(lp, dma->rfds)); in init_rx_bufs() 541 dma->rfds[i].rbd = I596_NULL; in rebuild_rx_bufs() [all …]
|
D | 82596.c | 332 struct i596_rfd rfds[RX_RING_SIZE]; member 575 for (i = 0, rfd = lp->rfds; i < rx_ring_size; i++, rfd++) { in init_rx_bufs() 582 lp->rfd_head = lp->rfds; in init_rx_bufs() 583 lp->scb.rfd = WSWAPrfd(virt_to_bus(lp->rfds)); in init_rx_bufs() 584 rfd = lp->rfds; in init_rx_bufs() 586 rfd->v_prev = lp->rfds + rx_ring_size - 1; in init_rx_bufs() 587 rfd = lp->rfds + rx_ring_size - 1; in init_rx_bufs() 588 rfd->v_next = lp->rfds; in init_rx_bufs() 589 rfd->b_next = WSWAPrfd(virt_to_bus(lp->rfds)); in init_rx_bufs() 604 lp->rfds[i].rbd = I596_NULL; in rebuild_rx_bufs() [all …]
|
D | sun3_82586.c | 859 volatile struct rfd_struct *rfds=p->rfd_top; in sun3_82586_rcv_int() 864 rbds = (struct rbd_struct *) make32(rfds->rbd_offset); in sun3_82586_rcv_int() 865 printk("%04x:%04x ",rfds->status,rbds->status); in sun3_82586_rcv_int() 866 rfds = (struct rfd_struct *) make32(rfds->next); in sun3_82586_rcv_int()
|
/linux-4.4.14/tools/testing/selftests/x86/ |
D | test_syscall_vdso.c | 173 fd_set rfds; variable 186 FD_ZERO(&rfds); in prep_args() 189 FD_SET(0, &rfds); in prep_args()
|
/linux-4.4.14/Documentation/usb/ |
D | gadget_hid.txt | 372 fd_set rfds; 395 FD_ZERO(&rfds); 396 FD_SET(STDIN_FILENO, &rfds); 397 FD_SET(fd, &rfds); 399 retval = select(fd + 1, &rfds, NULL, NULL, NULL); 407 if (FD_ISSET(fd, &rfds)) { 415 if (FD_ISSET(STDIN_FILENO, &rfds)) {
|
/linux-4.4.14/drivers/net/ethernet/intel/ |
D | e100.c | 561 struct param_range rfds; member 1066 struct param_range rfds = { .min = 16, .max = 256, .count = 256 }; in e100_get_defaults() local 1074 nic->params.rfds = rfds; in e100_get_defaults() 2159 unsigned int i, count = nic->params.rfds.count; in e100_rx_clean_list() 2181 unsigned int i, count = nic->params.rfds.count; in e100_rx_alloc_list() 2580 struct param_range *rfds = &nic->params.rfds; in e100_get_ringparam() local 2583 ring->rx_max_pending = rfds->max; in e100_get_ringparam() 2585 ring->rx_pending = rfds->count; in e100_get_ringparam() 2593 struct param_range *rfds = &nic->params.rfds; in e100_set_ringparam() local 2601 rfds->count = max(ring->rx_pending, rfds->min); in e100_set_ringparam() [all …]
|