Searched refs:tx_ready (Results 1 - 10 of 10) sorted by relevance

/linux-master/include/linux/
H A Dserial_core.h784 #define __uart_port_tx(uport, ch, flags, tx_ready, put_char, tx_done, \
791 for (; (for_test) && (tx_ready); (for_post), __port->icount.tx++) { \
827 * @tx_ready: can HW accept more data function
832 * @put_char(). It does so until @count characters are sent and while @tx_ready
838 * * **tx_ready:** should evaluate to true if the HW can accept more data to
848 #define uart_port_tx_limited(port, ch, count, tx_ready, put_char, tx_done) ({ \
850 __uart_port_tx(port, ch, 0, tx_ready, put_char, tx_done, __count, \
858 * @tx_ready: can HW accept more data function
863 #define uart_port_tx(port, ch, tx_ready, put_char) \
864 __uart_port_tx(port, ch, 0, tx_ready, put_cha
[all...]
/linux-master/drivers/net/ethernet/intel/fm10k/
H A Dfm10k_common.c174 hw->mac.tx_ready = true;
190 /* clear tx_ready to prevent any false hits for reset */
191 hw->mac.tx_ready = false;
493 if (mac->tx_ready && !(txdctl & FM10K_TXDCTL_ENABLE)) {
H A Dfm10k_mbx.h220 bool (*tx_ready)(struct fm10k_mbx_info *, u16); member in struct:fm10k_mbx_ops
H A Dfm10k_type.h549 bool tx_ready; member in struct:fm10k_mac_info
H A Dfm10k_iov.c248 !hw->mbx.ops.tx_ready(&hw->mbx, FM10K_VFMBX_MSG_MTU)) {
H A Dfm10k_mbx.c1616 mbx->ops.tx_ready = fm10k_mbx_tx_ready;
2175 mbx->ops.tx_ready = fm10k_mbx_tx_ready;
H A Dfm10k_pci.c801 if (!hw->mbx.ops.tx_ready(&hw->mbx, FM10K_VFMBX_MSG_MTU + 5)) {
/linux-master/drivers/tty/ipwireless/
H A Dhardware.c240 int tx_ready; member in struct:ipw_hardware
418 hw->tx_ready = 0;
961 if (hw->tx_queued && hw->tx_ready) {
1075 hw->tx_ready = 1;
1181 hw->tx_ready = 1;
1628 hw->tx_ready = 1;
1704 hw->tx_ready = 1;
/linux-master/net/tls/
H A Dtls.h113 int tx_ready; member in struct:tls_rec
H A Dtls_sw.c438 if (READ_ONCE(rec->tx_ready)) {
507 smp_store_mb(rec->tx_ready, true);
594 WRITE_ONCE(rec->tx_ready, true);
2583 return READ_ONCE(rec->tx_ready);

Completed in 324 milliseconds