Home
last modified time | relevance | path

Searched refs:kfifo_get (Results 1 – 24 of 24) sorted by relevance

/linux/lib/tests/
H A Dkfifo_kunit.c68 processed_elements = kfifo_get(&my_fifo, &out_data); in kfifo_test_put_should_insert_and_get_should_pop()
76 processed_elements = kfifo_get(&my_fifo, &out_data); in kfifo_test_put_should_insert_and_get_should_pop()
93 processed_elements = kfifo_get(&my_fifo, &out_data); in kfifo_test_in_should_insert_multiple_elements()
/linux/samples/kfifo/
H A Dinttype-example.c90 while (kfifo_get(&test, &i)) { in testfunc()
H A Dbytestream-example.c97 while (kfifo_get(&test, &i)) { in testfunc()
/linux/drivers/tty/hvc/
H A Dhvc_dcc.c139 while (kfifo_get(&outbuf, &ch)) in dcc_put_work()
/linux/drivers/gpu/drm/sun4i/
H A Dsun4i_drv.c392 while (kfifo_get(&list.fifo, &endpoint)) { in sun4i_drv_probe()
/linux/include/linux/
H A Dserial_core.h866 chars = kfifo_get(&tport->xmit_fifo, ch); in uart_fifo_get()
921 if (!kfifo_get(&__tport->xmit_fifo, &(ch))) \
H A Dkfifo.h21 * - Replace the use of kfifo_put into kfifo_in_spinlocked and kfifo_get
442 * kfifo_get - get data from the fifo
453 #define kfifo_get(fifo, val) \ macro
/linux/drivers/tty/serial/
H A Drsci.c274 } else if (stopped || !kfifo_get(&tport->xmit_fifo, &c)) { in rsci_transmit_chars()
H A Dsh-sci.c864 } else if (stopped || !kfifo_get(&tport->xmit_fifo, &c)) { in sci_transmit_chars()
/linux/drivers/input/rmi4/
H A Drmi_driver.c195 count = kfifo_get(&drvdata->attn_fifo, &attn_data); in rmi_irq_fn()
936 count = kfifo_get(&data->attn_fifo, &attn_data); in rmi_disable_irq()
/linux/drivers/net/wireless/mediatek/mt76/
H A Dmt76x02_mmio.c135 while (kfifo_get(&dev->txstatus_fifo, &stat)) in mt76x02_process_tx_status_fifo()
/linux/drivers/acpi/apei/
H A Dghes.c797 return kfifo_get(&cxl_cper_prot_err_fifo, wd); in cxl_cper_prot_err_kfifo_get()
866 return kfifo_get(&cxl_cper_fifo, wd); in cxl_cper_kfifo_get()
/linux/drivers/pci/pcie/
H A Daer.c1289 while (kfifo_get(&aer_recover_ring, &entry)) { in aer_recover_work_func()
1523 while (kfifo_get(&rpc->aer_fifo, &e_src)) in aer_isr()
/linux/drivers/tty/serial/jsm/
H A Djsm_neo.c507 WARN_ON_ONCE(!kfifo_get(&tport->xmit_fifo, &c)); in neo_copy_data_from_queue_to_uart()
/linux/drivers/crypto/hisilicon/sec/
H A Dsec_algs.c487 ret = kfifo_get(&ctx->queue->softqueue, &nextrequest); in sec_skcipher_alg_callback()
/linux/drivers/iio/adc/
H A Dad7124.c426 ret = kfifo_get(&st->live_cfgs_fifo, &lru_cfg); in ad7124_pop_config()
/linux/drivers/hwtracing/ptt/
H A Dhisi_ptt.c563 while (kfifo_get(&hisi_ptt->filter_update_kfifo, &info)) { in hisi_ptt_update_filters()
/linux/drivers/nvme/target/
H A Dpr.c99 if (!kfifo_get(&log_mgr->log_queue, &log)) in nvmet_execute_get_log_page_resv()
/linux/drivers/usb/gadget/function/
H A Df_midi.c434 while (kfifo_get(&midi->in_req_fifo, &req)) in f_midi_disable()
/linux/mm/
H A Dmemory-failure.c2505 gotten = kfifo_get(&mf_cpu->fifo, &entry); in memory_failure_work_func()
/linux/drivers/tty/
H A Dmxser.c1587 if (!kfifo_get(&port->port.xmit_fifo, &c)) in mxser_transmit_chars()
/linux/drivers/gpu/drm/amd/amdgpu/
H A Damdgpu_ras.c3235 return kfifo_get(&con->poison_fifo, poison_msg); in amdgpu_ras_get_poison_req()
3372 ret = kfifo_get(&con->poison_fifo, &msg); in amdgpu_ras_clear_poison_fifo()
/linux/drivers/net/wireless/ath/ath10k/
H A Dhtt_rx.c4414 /* kfifo_get: called only within txrx_tasklet so it's neatly serialized. in ath10k_htt_txrx_compl_task()
4415 * From kfifo_get() documentation: in ath10k_htt_txrx_compl_task()
4419 while (kfifo_get(&htt->txdone_fifo, &tx_done)) in ath10k_htt_txrx_compl_task()
/linux/drivers/net/wireless/ralink/rt2x00/
H A Drt2800lib.c1128 while (quota-- > 0 && kfifo_get(&rt2x00dev->txstatus_fifo, &reg)) { in rt2800_txdone()