Symbol: kfifo_to_user
drivers/counter/counter-chrdev.c
94
err = kfifo_to_user(&counter->events, buf, len, &copied);
drivers/gnss/core.c
114
ret = kfifo_to_user(&gdev->read_fifo, buf, count, &copied);
drivers/hid/hid-debug.c
3764
ret = kfifo_to_user(&list->hid_debug_fifo, buffer, count, &copied);
drivers/hid/hid-sensor-custom.c
662
ret = kfifo_to_user(&sensor_inst->data_fifo, buf, count,
drivers/iio/buffer/kfifo_buf.c
112
ret = kfifo_to_user(&kf->kf, buf, n, &copied);
drivers/iio/industrialio-event.c
151
ret = kfifo_to_user(&ev_int->det_events, buf, count, &copied);
drivers/media/radio/radio-si476x.c
1109
if (kfifo_to_user(&radio->core->rds_fifo, buf,
drivers/media/rc/lirc_dev.c
634
ret = kfifo_to_user(&fh->rawir, buffer, length, &copied);
drivers/media/rc/lirc_dev.c
673
ret = kfifo_to_user(&fh->scancodes, buffer, length, &copied);
drivers/platform/surface/surface_aggregator_cdev.c
622
status = kfifo_to_user(&client->buffer, buf, count, &copied);
drivers/platform/surface/surface_dtx.c
507
status = kfifo_to_user(&client->buffer, buf, count, &copied);
drivers/rapidio/devices/rio_mport_cdev.c
2271
if (kfifo_to_user(&priv->event_fifo, buf,
drivers/soc/aspeed/aspeed-lpc-snoop.c
128
ret = kfifo_to_user(&chan->fifo, buffer, count, &copied);
samples/kfifo/bytestream-example.c
140
ret = kfifo_to_user(&test, buf, count, &copied);
samples/kfifo/inttype-example.c
133
ret = kfifo_to_user(&test, buf, count, &copied);
samples/kfifo/record-example.c
147
ret = kfifo_to_user(&test, buf, count, &copied);
sound/soc/intel/avs/debugfs.c
224
if (kfifo_to_user(fifo, to, count, &copied))
sound/usb/line6/driver.c
594
rv = kfifo_to_user(&line6->messages.fifo, buf, count, &out_count);