Searched refs:pending (Results 1 - 25 of 652) sorted by last modified time

1234567891011>>

/linux-master/net/mptcp/
H A Dprotocol.c541 u8 ack_pending = READ_ONCE(icsk->icsk_ack.pending);
658 * a different CPU can have already processed the pending
1878 /* charge data on mptcp pending queue to the msk socket
2101 /* we can have data pending in the subflows only if the msk
2119 /* acquire the data lock only if some input data is pending */
2951 pr_debug("msk=%p snd_data_fin_enable=%d pending=%d snd_nxt=%llu write_seq=%llu",
2975 pr_debug("msk=%p snd_data_fin_enable=%d shutdown=%x state=%d pending=%d",
3481 WARN_ON_ONCE(icsk->icsk_ack.pending & ICSK_ACK_TIMER);
3482 icsk->icsk_ack.pending |= ICSK_ACK_SCHED | ICSK_ACK_TIMER;
/linux-master/net/ipv6/
H A Dudp.c1127 * Throw away all pending data and cancel the corking. Socket is locked.
1133 if (up->pending == AF_INET)
1135 else if (up->pending) {
1137 WRITE_ONCE(up->pending, 0);
1304 if (up->pending == AF_INET)
1315 WRITE_ONCE(up->pending, 0);
1372 } else if (!READ_ONCE(up->pending)) {
1403 if (READ_ONCE(up->pending)) {
1404 if (READ_ONCE(up->pending) == AF_INET)
1407 * There are pending frame
[all...]
/linux-master/net/ipv4/
H A Dudp.c806 * Throw away all pending data and cancel the corking. Socket is locked.
812 if (up->pending) {
814 WRITE_ONCE(up->pending, 0);
984 * Push out all pending data as one UDP datagram. Socket is locked.
1002 WRITE_ONCE(up->pending, 0);
1079 if (READ_ONCE(up->pending)) {
1081 * There are pending frames.
1085 if (likely(up->pending)) {
1086 if (unlikely(up->pending != AF_INET)) {
1262 if (unlikely(up->pending)) {
[all...]
/linux-master/fs/btrfs/
H A Dordered-data.c321 * pending io unfinished for the ordered extent.
395 * updated to indicate whether the pending ordered io is finished.
582 bool pending; local
618 pending = test_and_clear_bit(BTRFS_ORDERED_PENDING, &entry->flags);
625 if (pending) {
1066 * Lock the passed range and ensures all pending ordered extents in it are run
1077 * order extent can be pending.
1111 * Lock the passed range and ensure all pending ordered extents in it are run
H A Dinode.c1941 /* If there are pending snapshots for this root, we must COW. */
2440 * list of inodes that have pending delalloc work to be done.
3452 * Return EINTR if we were killed, 0 if nothing's pending
4169 * If we have a pending delayed iput we could end up with the final iput
5312 * This drops any pending insert or delete operations we have for this
8264 * we can't set the delalloc bits if there are pending ordered
9352 * of all the inodes with pending delalloc and forces them to disk.
10026 atomic_t pending; member in struct:btrfs_encoded_read_private
10045 if (!atomic_dec_return(&priv->pending))
10056 .pending
[all...]
H A Dbackref.c3029 INIT_LIST_HEAD(&cache->pending[i]);
3191 ASSERT(list_empty(&cache->pending[i]));
3273 * block to pending list
3420 * Add the block to pending list if we need to check its
3507 * Add the upper level block to pending list if we need check
/linux-master/drivers/spi/
H A Dspi-axi-spi-engine.c454 unsigned int pending; local
457 pending = readl_relaxed(spi_engine->base + SPI_ENGINE_REG_INT_PENDING);
459 if (pending & SPI_ENGINE_INT_SYNC) {
468 if (pending & SPI_ENGINE_INT_CMD_ALMOST_EMPTY) {
473 if (pending & SPI_ENGINE_INT_SDO_ALMOST_EMPTY) {
478 if (pending & (SPI_ENGINE_INT_SDI_ALMOST_FULL | SPI_ENGINE_INT_SYNC)) {
483 if (pending & SPI_ENGINE_INT_SYNC && msg) {
/linux-master/drivers/nvme/target/
H A Dtcp.c958 * figure out if there is still pending data left to receive. If
1430 bool pending; local
1434 pending = false;
1438 pending = true;
1444 pending = true;
1448 } while (pending && ops < NVMET_TCP_IO_WORK_BUDGET);
1454 if (nvmet_tcp_check_queue_deadline(queue, ops) || pending)
2134 int pending = 0; local
2136 /* Check for pending controller teardown */
2141 pending
[all...]
/linux-master/drivers/nvme/host/
H A Dtcp.c1275 bool pending = false; local
1282 pending = true;
1289 pending = true;
1293 if (!pending || !queue->rd_enabled)
2289 /* unquiesce to fail fast pending requests */
/linux-master/drivers/pinctrl/intel/
H A Dpinctrl-baytrail.c1355 unsigned long pending; local
1367 pending = readl(reg);
1368 for_each_set_bit(pin, &pending, 32)
/linux-master/drivers/dma/xilinx/
H A Dxilinx_dpdma.c222 * @desc.pending: Descriptor schedule to the hardware, pending execution
241 struct xilinx_dpdma_tx_desc *pending; member in struct:xilinx_dpdma_chan::__anon12
837 if (chan->desc.pending)
852 chan->desc.pending = desc;
1067 * At VSYNC the active descriptor may have been replaced by the pending
1073 struct xilinx_dpdma_tx_desc *pending; local
1080 pending = chan->desc.pending;
1081 if (!chan->running || !pending)
[all...]
/linux-master/drivers/dma/
H A Dowl-dma.c515 "terminating pchan %d that still has pending irq\n",
597 unsigned long pending; local
603 pending = dma_readl(od, OWL_DMA_IRQ_PD0);
606 for_each_set_bit(i, &pending, od->nr_pchans) {
611 /* Clear pending IRQ */
612 dma_writel(od, OWL_DMA_IRQ_PD0, pending);
614 /* Check missed pending IRQ */
627 "global and channel IRQ pending match err\n");
633 /* Update global IRQ pending */
634 pending |
[all...]
/linux-master/net/mac80211/
H A Dtx.c101 * RTS: time needed to transmit pending data/mgmt frame plus
499 * been queued to pending queue. No reordering can happen, go
990 * but store it away as pending.
1129 * packets are spliced over to the driver pending
1159 __skb_queue_tail(&tid_tx->pending, skb);
1160 if (skb_queue_len(&tid_tx->pending) > STA_MAX_TX_BUFFER)
1161 purge_skb = __skb_dequeue(&tid_tx->pending);
1693 (!txpending && !skb_queue_empty(&local->pending[q]))) {
1715 * later transmission from the tx-pending
1720 &local->pending[
[all...]
/linux-master/net/bluetooth/
H A Dmgmt.c960 /* If there's a pending mgmt command the flags will not yet have
984 /* If there's a pending mgmt command the flag will not yet have
2526 /* This is a helper function to test for pending mgmt commands that can
2527 * cause CoD or EIR HCI commands. We can only allow one such pending
3382 BT_DBG("Unable to find a pending command");
3401 BT_DBG("Unable to find a pending command");
8550 if (!adv->pending)
8554 adv->pending = false;
8767 if (!adv->pending)
9028 if (adv_instance->pending) {
[all...]
H A Dhci_sync.c1126 if (adv && !adv->pending) {
1517 adv->pending = false;
2138 * - At least one pending LE connection or one device to be scanned for
2657 * still in the list of pending connections or list of devices to
2686 * removed, walk through the list of pending connections
2716 /* After adding all new pending connections, walk through
2717 * the list of pending reports and also add these to the
2974 * list. If there are pending LE connection we start the background scanning,
3025 /* If there is no pending LE connections or devices
3037 /* If there is at least one pending L
[all...]
H A Dhci_event.c2532 * are pending. there is no need to continue resolving a next name as it
3136 /* In case of error status and there is no connection pending
3850 bool pending = false; local
3896 pending = true;
3900 if (pending)
4296 bool pending = false; local
4321 pending = true;
4328 if (pending)
5764 /* In case of error status and there is no connection pending
6267 * response event that doesn't match the pending repor
6773 bool pending = false; local
[all...]
H A Dhci_conn.c1959 bool pending = false; local
1970 pending = true;
1975 if (!pending)
2910 /* If the connection is pending check the command opcode since that
2926 /* Cancel connect attempt if still queued/pending */
/linux-master/include/net/bluetooth/
H A Dhci_core.h246 bool pending; member in struct:adv_info
/linux-master/drivers/net/wireless/virtual/
H A Dmac80211_hwsim.c711 struct sk_buff_head pending; /* packets pending */ member in struct:mac80211_hwsim_data
1389 * if pending PS-Poll has been sent */
1392 /* Allow unicast frames to own address if there is a pending
1520 if (skb_queue_len(&data->pending) >= MAX_QUEUE) {
1522 while (skb_queue_len(&data->pending) >= WARN_QUEUE) {
1523 ieee80211_free_txskb(hw, skb_dequeue(&data->pending));
1600 skb_queue_tail(&data->pending, my_skb);
2108 while (!skb_queue_empty(&data->pending))
2109 ieee80211_free_txskb(hw, skb_dequeue(&data->pending));
[all...]
/linux-master/drivers/net/ethernet/intel/iavf/
H A Diavf_main.c1343 /* Disable filters which are active or have a pending
1693 /* bail because we already have a command pending */
1694 dev_err(&adapter->pdev->dev, "Cannot configure RSS, command %d pending\n",
3191 u16 pending; local
3210 ret = iavf_clean_arq_element(hw, &event, &pending);
3219 if (pending != 0)
3221 } while (pending);
4131 /* Add filters which are inactive or have a pending
4197 /* clear any pending interrupts, may auto mask */
/linux-master/drivers/net/ethernet/intel/i40e/
H A Di40e_main.c374 /* don't kick off another recovery if one is already pending */
4307 /* if sharing a legacy IRQ, we might get called w/o an intr pending */
4398 /* If a critical error is pending we have no choice but to reset the
4450 /* if next_to_watch is not set then there is no work pending */
9568 /* Allow VF to process pending reset notification */
10119 u16 pending, i = 0; local
10177 ret = i40e_clean_arq_element(hw, &event, &pending);
/linux-master/drivers/gpio/
H A Dgpio-tangier.c356 unsigned long pending, enabled; local
358 pending = readl(gisr);
362 pending &= enabled;
364 for_each_set_bit(gpio, &pending, 32)
/linux-master/arch/arc/kernel/
H A Dentry.S260 ; Before returning to User mode check-for-and-complete any pending work
264 ; Disable IRQs to ensures that chk for pending work itself is atomic
269 ; Fast Path return to user mode if no pending work
282 ; --- (Slow Path #2) pending signal ---
/linux-master/drivers/tty/serial/
H A Dmxs-auart.c572 bool pending; local
608 pending = uart_port_tx_flags(&s->port, ch, UART_TX_NOSTOP,
611 if (pending)
/linux-master/arch/x86/kvm/
H A Dx86.c598 * Note, the payload is compatible with the pending debug
608 * The #DB payload is defined as compatible with the 'pending
610 * defined in the 'pending debug exceptions' field (enabled
633 ex->pending = true;
669 if (!vcpu->arch.exception.pending && !vcpu->arch.exception.injected) {
673 * On VM-Entry, an exception can be pending if and only
690 vcpu->arch.exception.pending = true;
716 * Synthesize #DF. Clear the previously injected or pending
720 vcpu->arch.exception.pending = false;
5175 * is pending o
[all...]

Completed in 573 milliseconds

1234567891011>>