/linux-4.4.14/fs/logfs/ |
D | gc.c | 131 u32 seg_ofs, logical_segno, cleaned = 0; in logfs_gc_segment() local 144 cleaned = -1; in logfs_gc_segment() 160 cleaned = super->s_segsize - 1; in logfs_gc_segment() 170 cleaned += len; in logfs_gc_segment() 173 cleaned += len; in logfs_gc_segment() 179 return cleaned; in logfs_gc_segment() 388 u32 cleaned, valid, segno, ec; in __logfs_gc_once() local 404 cleaned = logfs_gc_segment(sb, segno); in __logfs_gc_once() 406 valid - cleaned); in __logfs_gc_once() 407 BUG_ON(cleaned != valid); in __logfs_gc_once() [all …]
|
/linux-4.4.14/drivers/staging/lustre/lustre/ptlrpc/ |
D | sec_bulk.c | 285 unsigned long cleaned = 0; in enc_pools_cleanup() local 293 cleaned++; in enc_pools_cleanup() 301 return cleaned; in enc_pools_cleanup() 426 unsigned long cleaned, npools; in sptlrpc_enc_pool_fini() local 434 cleaned = enc_pools_cleanup(page_pools.epp_pools, npools); in sptlrpc_enc_pool_fini() 435 LASSERT(cleaned == page_pools.epp_total_pages); in sptlrpc_enc_pool_fini()
|
/linux-4.4.14/drivers/net/wireless/mediatek/mt7601u/ |
D | trace.h | 325 TP_PROTO(struct mt7601u_dev *dev, int cleaned), 326 TP_ARGS(dev, cleaned), 329 __field(int, cleaned) 333 __entry->cleaned = cleaned; 335 TP_printk(DEV_PR_FMT "%d", DEV_PR_ARG, __entry->cleaned)
|
D | tx.c | 241 int cleaned = 0; in mt7601u_tx_stat() local 251 cleaned++; in mt7601u_tx_stat() 253 trace_mt_tx_status_cleaned(dev, cleaned); in mt7601u_tx_stat() 256 if (cleaned) in mt7601u_tx_stat()
|
/linux-4.4.14/drivers/staging/media/bcm2048/ |
D | TODO | 23 until the rest of the driver is cleaned up. Then I have a better idea of
|
/linux-4.4.14/mm/ |
D | rmap.c | 983 int *cleaned = arg; in page_mkclean_one() local 1004 (*cleaned)++; in page_mkclean_one() 1020 int cleaned = 0; in page_mkclean() local 1023 .arg = (void *)&cleaned, in page_mkclean() 1039 return cleaned; in page_mkclean()
|
/linux-4.4.14/drivers/net/ethernet/intel/ixgb/ |
D | ixgb_main.c | 1849 bool cleaned = false; in ixgb_clean_tx_irq() local 1858 for (cleaned = false; !cleaned; ) { in ixgb_clean_tx_irq() 1871 cleaned = (i == eop); in ixgb_clean_tx_irq() 1881 if (unlikely(cleaned && netif_carrier_ok(netdev) && in ixgb_clean_tx_irq() 1926 return cleaned; in ixgb_clean_tx_irq() 2004 bool cleaned = false; in ixgb_clean_rx_irq() local 2038 cleaned = true; in ixgb_clean_rx_irq() 2104 return cleaned; in ixgb_clean_rx_irq()
|
/linux-4.4.14/drivers/net/ethernet/oki-semi/pch_gbe/ |
D | pch_gbe_main.c | 1543 bool cleaned = false; in pch_gbe_clean_tx() local 1588 cleaned = true; in pch_gbe_clean_tx() 1634 cleaned = false; in pch_gbe_clean_tx() 1644 if (unlikely(cleaned && (netif_queue_stopped(adapter->netdev)))) in pch_gbe_clean_tx() 1657 return cleaned; in pch_gbe_clean_tx() 1682 bool cleaned = false; in pch_gbe_clean_rx() local 1695 cleaned = true; in pch_gbe_clean_rx() 1773 return cleaned; in pch_gbe_clean_rx() 2386 bool cleaned = false; in pch_gbe_napi_poll() local 2391 cleaned = pch_gbe_clean_tx(adapter, adapter->tx_ring); in pch_gbe_napi_poll() [all …]
|
/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb/ |
D | sge.c | 182 unsigned int cleaned; /* total # of descs SW has reclaimed */ member 689 q->processed = q->cleaned = 0; in alloc_tx_resources() 1291 unsigned int reclaim = q->processed - q->cleaned; in reclaim_completed_tx() 1295 q->processed, q->cleaned); in reclaim_completed_tx() 1297 q->cleaned += reclaim; in reclaim_completed_tx() 1399 unsigned int r = q->processed - q->cleaned; in enough_free_Tx_descs() 1446 if (cmdq->cleaned + cmdq->in_use != cmdq->processed && in update_tx_info()
|
/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb3/ |
D | adapter.h | 170 unsigned int cleaned; /* total # of descs SW has reclaimed */ member
|
D | sge.c | 328 unsigned int reclaim = q->processed - q->cleaned; in reclaim_completed_tx() 333 q->cleaned += reclaim; in reclaim_completed_tx() 336 return q->processed - q->cleaned; in reclaim_completed_tx() 347 unsigned int r = q->processed - q->cleaned; in should_restart_tx() 1404 unsigned int reclaim = q->processed - q->cleaned; in reclaim_completed_tx_imm() 1407 q->cleaned += reclaim; in reclaim_completed_tx_imm() 2191 if (txq->cleaned + txq->in_use != txq->processed && in check_ring_db() 2202 if (txq->cleaned + txq->in_use != txq->processed && in check_ring_db()
|
/linux-4.4.14/drivers/net/ethernet/intel/i40evf/ |
D | i40e_txrx.c | 1352 int cleaned; in i40evf_napi_poll() local 1355 cleaned = i40e_clean_rx_irq_ps(ring, budget_per_ring); in i40evf_napi_poll() 1357 cleaned = i40e_clean_rx_irq_1buf(ring, budget_per_ring); in i40evf_napi_poll() 1359 work_done += cleaned; in i40evf_napi_poll() 1361 clean_complete &= (budget_per_ring != cleaned); in i40evf_napi_poll()
|
/linux-4.4.14/drivers/net/ethernet/intel/igbvf/ |
D | netdev.c | 273 bool cleaned = false; in igbvf_clean_rx_irq() local 303 cleaned = true; in igbvf_clean_rx_irq() 404 return cleaned; in igbvf_clean_rx_irq() 800 bool cleaned = false; in igbvf_clean_tx_irq() local 821 for (cleaned = false; !cleaned; count++) { in igbvf_clean_tx_irq() 823 cleaned = (tx_desc == eop_desc); in igbvf_clean_tx_irq()
|
/linux-4.4.14/drivers/net/ethernet/intel/e1000/ |
D | e1000_main.c | 3853 bool cleaned = false; in e1000_clean_tx_irq() local 3855 for ( ; !cleaned; count++) { in e1000_clean_tx_irq() 3858 cleaned = (i == eop); in e1000_clean_tx_irq() 3860 if (cleaned) { in e1000_clean_tx_irq() 4138 bool cleaned = false; in e1000_clean_jumbo_rx_irq() local 4162 cleaned = true; in e1000_clean_jumbo_rx_irq() 4313 return cleaned; in e1000_clean_jumbo_rx_irq() 4358 bool cleaned = false; in e1000_clean_rx_irq() local 4404 cleaned = true; in e1000_clean_rx_irq() 4484 return cleaned; in e1000_clean_rx_irq()
|
/linux-4.4.14/fs/ceph/ |
D | caps.c | 3015 int cleaned = 0; in handle_cap_flush_ack() local 3023 cleaned = cf->caps; in handle_cap_flush_ack() 3028 cleaned &= ~cf->caps; in handle_cap_flush_ack() 3029 if (!cleaned) in handle_cap_flush_ack() 3037 ceph_cap_string(cleaned), ceph_cap_string(ci->i_flushing_caps), in handle_cap_flush_ack() 3038 ceph_cap_string(ci->i_flushing_caps & ~cleaned)); in handle_cap_flush_ack() 3040 if (list_empty(&to_remove) && !cleaned) in handle_cap_flush_ack() 3043 ci->i_flushing_caps &= ~cleaned; in handle_cap_flush_ack()
|
/linux-4.4.14/drivers/net/ethernet/intel/ixgbevf/ |
D | ixgbevf.h | 79 u64 cleaned; member
|
D | ethtool.c | 419 rx_cleaned += adapter->rx_ring[i]->stats.cleaned; in ixgbevf_get_ethtool_stats() 425 tx_cleaned += adapter->tx_ring[i]->stats.cleaned; in ixgbevf_get_ethtool_stats()
|
D | ixgbevf_main.c | 1031 int cleaned = ixgbevf_clean_rx_irq(q_vector, ring, in ixgbevf_poll() local 1033 work_done += cleaned; in ixgbevf_poll() 1034 clean_complete &= (cleaned < per_ring_budget); in ixgbevf_poll() 1095 ring->stats.cleaned += found; in ixgbevf_busy_poll_recv()
|
/linux-4.4.14/fs/reiserfs/ |
D | journal.c | 3743 int cleaned = 0; in journal_mark_freed() local 3756 cleaned = remove_from_transaction(sb, blocknr, cleaned); in journal_mark_freed() 3775 cleaned = remove_from_transaction(sb, blocknr, cleaned); in journal_mark_freed() 3792 if (!cleaned) { in journal_mark_freed() 3798 cleaned = 1; in journal_mark_freed()
|
/linux-4.4.14/Documentation/scsi/ |
D | aacraid.txt | 7 Adaptec supplied driver. It has significantly cleaned up both the code
|
D | ChangeLog.ncr53c8xx | 68 but things will be cleaned up later. This code addresses 85 but things will be cleaned up later. This code addresses
|
D | ChangeLog.lpfc | 231 before locks so that they can GFP_KERNEL instead. Also cleaned 762 * Ensure lpfc_target is also cleaned up in lpfc_cleanup(). 877 * Collapsed lpfc_scsi_cmd_start into lpfc_queuecommand and cleaned 962 dead/redundant code, cleaned up badly and poorly written code, 963 cleaned up return values. 1711 Implemented OS calls directly in all remaining files and cleaned
|
/linux-4.4.14/drivers/net/ethernet/intel/i40e/ |
D | i40e_txrx.c | 1914 int cleaned; in i40e_napi_poll() local 1917 cleaned = i40e_clean_rx_irq_ps(ring, budget_per_ring); in i40e_napi_poll() 1919 cleaned = i40e_clean_rx_irq_1buf(ring, budget_per_ring); in i40e_napi_poll() 1921 work_done += cleaned; in i40e_napi_poll() 1923 clean_complete &= (budget_per_ring != cleaned); in i40e_napi_poll()
|
/linux-4.4.14/Documentation/ |
D | robust-futexes.txt | 72 are to be cleaned up, because a robust futex might have been registered 90 locks to be cleaned up?
|
D | kobject.txt | 391 must be cleaned up when the code is finished with it. To do that, call 400 kobject "invisible", but it is not cleaned up, and the reference count of
|
D | robust-futex-ABI.txt | 30 to do so, then improperly listed locks will not be cleaned up on exit,
|
D | stable_api_nonsense.txt | 142 Kernel interfaces are cleaned up over time. If there is no one using a
|
D | svga.txt | 237 Code cleaned up.
|
D | HOWTO | 192 problems that need to be cleaned up and fixed within the Linux kernel
|
/linux-4.4.14/drivers/net/ethernet/intel/e1000e/ |
D | netdev.c | 936 bool cleaned = false; in e1000_clean_rx_irq() local 965 cleaned = true; in e1000_clean_rx_irq() 1069 return cleaned; in e1000_clean_rx_irq() 1233 bool cleaned = false; in e1000_clean_tx_irq() local 1236 for (; !cleaned; count++) { in e1000_clean_tx_irq() 1239 cleaned = (i == eop); in e1000_clean_tx_irq() 1241 if (cleaned) { in e1000_clean_tx_irq() 1322 bool cleaned = false; in e1000_clean_rx_irq_ps() local 1348 cleaned = true; in e1000_clean_rx_irq_ps() 1491 return cleaned; in e1000_clean_rx_irq_ps() [all …]
|
/linux-4.4.14/drivers/net/ethernet/octeon/ |
D | octeon_mgmt.c | 255 int cleaned = 0; in octeon_mgmt_clean_tx_buffers() local 306 cleaned++; in octeon_mgmt_clean_tx_buffers() 311 if (cleaned && netif_queue_stopped(p->netdev)) in octeon_mgmt_clean_tx_buffers()
|
/linux-4.4.14/tools/perf/config/ |
D | utilities.mak | 184 # is automatically cleaned up.
|
/linux-4.4.14/Documentation/ABI/stable/ |
D | sysfs-class-ubi | 200 volume update starts, and cleaned when it ends. So the presence
|
/linux-4.4.14/drivers/net/ethernet/mellanox/mlx4/ |
D | mlx4_en.h | 326 unsigned long cleaned; member
|
D | en_ethtool.c | 414 data[index++] = priv->rx_ring[i]->cleaned; in mlx4_en_get_ethtool_stats()
|
D | en_netdev.c | 90 rx_ring->cleaned += done; in mlx4_en_low_latency_recv()
|
/linux-4.4.14/drivers/net/ethernet/intel/ixgbe/ |
D | ixgbe.h | 208 u64 cleaned; member
|
D | ixgbe_ethtool.c | 1145 data[i+2] = ring->stats.cleaned; in ixgbe_get_ethtool_stats() 1173 data[i+2] = ring->stats.cleaned; in ixgbe_get_ethtool_stats()
|
D | ixgbe_main.c | 2163 ring->stats.cleaned += found; in ixgbe_low_latency_recv() 2800 int cleaned = ixgbe_clean_rx_irq(q_vector, ring, in ixgbe_poll() local 2803 work_done += cleaned; in ixgbe_poll() 2804 clean_complete &= (cleaned < per_ring_budget); in ixgbe_poll()
|
/linux-4.4.14/Documentation/filesystems/ |
D | debugfs.txt | 221 cleaned up. We live in more civilized times now, though, and debugfs users
|
D | f2fs.txt | 112 discard Issue discard/TRIM commands when a segment is cleaned.
|
D | Locking | 327 cleaned, or an error value if not. Note that in order to prevent the page
|
/linux-4.4.14/Documentation/filesystems/nfs/ |
D | rpc-cache.txt | 93 cleaned to discard old data.
|
/linux-4.4.14/Documentation/ide/ |
D | ChangeLog.ide-cd.1994-2004 | 211 * - cleaned up various deprecated verify_area().
|
/linux-4.4.14/scripts/ |
D | Kbuild.include | 88 # is automatically cleaned up.
|
/linux-4.4.14/Documentation/arm64/ |
D | booting.txt | 156 cleaned to the PoC. In the presence of a system cache or other
|
/linux-4.4.14/Documentation/filesystems/caching/ |
D | object.txt | 239 Temporary data is cleaned up, and the parent is released.
|
/linux-4.4.14/drivers/md/ |
D | Kconfig | 296 cleaned etc. It supports writeback and writethrough modes.
|
/linux-4.4.14/Documentation/usb/ |
D | WUSB-Design-overview.txt | 362 be cleaned up a lot :)].
|
/linux-4.4.14/drivers/message/fusion/lsi/ |
D | mpi_history.txt | 253 * cleaned up.
|
/linux-4.4.14/drivers/net/ethernet/intel/igb/ |
D | igb_main.c | 6377 int cleaned = igb_clean_rx_irq(q_vector, budget); in igb_poll() local 6379 work_done += cleaned; in igb_poll() 6380 clean_complete &= (cleaned < budget); in igb_poll()
|
/linux-4.4.14/Documentation/cgroups/ |
D | unified-hierarchy.txt | 316 subhierarchy becomes empty so that it can be cleaned up. cgroup
|
/linux-4.4.14/Documentation/filesystems/cifs/ |
D | CHANGES | 1054 and cleaned them up and made them more consistent with other cifs functions.
|