/linux-4.4.14/fs/xfs/libxfs/ |
D | xfs_dir2_leaf.c | 91 int stale; in xfs_dir3_leaf_check_int() local 126 for (i = stale = 0; i < hdr->count; i++) { in xfs_dir3_leaf_check_int() 133 stale++; in xfs_dir3_leaf_check_int() 135 if (hdr->stale != stale) in xfs_dir3_leaf_check_int() 431 leafhdr.stale = be32_to_cpu(btp->stale); in xfs_dir2_block_to_leaf() 524 if (!leafhdr->stale) { in xfs_dir3_leaf_find_entry() 579 leafhdr->stale--; in xfs_dir3_leaf_find_entry() 599 leafhdr->stale--; in xfs_dir3_leaf_find_entry() 703 if (!leafhdr.stale) in xfs_dir2_leaf_addname() 719 leafhdr.stale > 1) in xfs_dir2_leaf_addname() [all …]
|
D | xfs_dir2_block.c | 194 if (btp->stale) { in xfs_dir2_block_need_space() 219 if (be16_to_cpu(dup->length) + (be32_to_cpu(btp->stale) - 1) * in xfs_dir2_block_need_space() 222 } else if ((be32_to_cpu(btp->stale) - 1) * (uint)sizeof(*blp) < len) in xfs_dir2_block_need_space() 315 *lfloglow = toidx + 1 - (be32_to_cpu(btp->stale) - 1); in xfs_dir2_block_compact() 316 *lfloghigh -= be32_to_cpu(btp->stale) - 1; in xfs_dir2_block_compact() 317 be32_add_cpu(&btp->count, -(be32_to_cpu(btp->stale) - 1)); in xfs_dir2_block_compact() 320 (xfs_dir2_data_aoff_t)((be32_to_cpu(btp->stale) - 1) * sizeof(*blp)), in xfs_dir2_block_compact() 322 btp->stale = cpu_to_be32(1); in xfs_dir2_block_compact() 425 } else if (btp->stale) { in xfs_dir2_block_addname() 452 if (!btp->stale) { in xfs_dir2_block_addname() [all …]
|
D | xfs_dir2_node.c | 415 if (!leafhdr.stale) in xfs_dir2_leafn_add() 417 compact = leafhdr.stale > 1; in xfs_dir2_leafn_add() 434 else if (leafhdr.stale) { in xfs_dir2_leafn_add() 849 int stale; /* count stale leaves copied */ in xfs_dir3_leafn_moveents() local 874 if (shdr->stale) { in xfs_dir3_leafn_moveents() 877 for (i = start_s, stale = 0; i < start_s + count; i++) { in xfs_dir3_leafn_moveents() 880 stale++; in xfs_dir3_leafn_moveents() 883 stale = 0; in xfs_dir3_leafn_moveents() 905 shdr->stale -= stale; in xfs_dir3_leafn_moveents() 907 dhdr->stale += stale; in xfs_dir3_leafn_moveents() [all …]
|
D | xfs_da_format.c | 461 to->stale = be16_to_cpu(from->hdr.stale); in xfs_dir2_leaf_hdr_from_disk() 479 to->hdr.stale = cpu_to_be16(from->stale); in xfs_dir2_leaf_hdr_to_disk() 493 to->stale = be16_to_cpu(hdr3->stale); in xfs_dir3_leaf_hdr_from_disk() 513 hdr3->stale = cpu_to_be16(from->stale); in xfs_dir3_leaf_hdr_to_disk()
|
D | xfs_da_format.h | 458 __be16 stale; /* count of stale entries */ member 464 __be16 stale; /* count of stale entries */ member 473 __uint16_t stale; member 595 __be32 stale; /* count of stale lf entries */ member
|
D | xfs_dir2_data.c | 62 int stale; /* count of stale leaves */ in __xfs_dir3_data_check() local 198 for (i = stale = 0; i < be32_to_cpu(btp->count); i++) { in __xfs_dir3_data_check() 201 stale++; in __xfs_dir3_data_check() 208 be32_to_cpu(btp->count) - be32_to_cpu(btp->stale)); in __xfs_dir3_data_check() 209 XFS_WANT_CORRUPTED_RETURN(mp, stale == be32_to_cpu(btp->stale)); in __xfs_dir3_data_check()
|
/linux-4.4.14/fs/cachefiles/ |
D | xattr.c | 220 goto stale; /* no attribute - power went off in cachefiles_check_object_xattr() 237 goto stale; in cachefiles_check_object_xattr() 265 goto stale; in cachefiles_check_object_xattr() 298 stale: in cachefiles_check_object_xattr()
|
/linux-4.4.14/Documentation/RCU/ |
D | listRCU.txt | 17 equipment outside of the computer, it will at times contain stale data. 154 So, when readers can tolerate stale data and when entries are either added 222 The auditing examples above tolerate stale data, as do most algorithms 227 However, there are many examples where stale data cannot be tolerated. 237 If the system-call audit module were to ever need to reject stale data, 296 Read-mostly list-based data structures that can tolerate stale data are 301 If stale data cannot be tolerated, then a "deleted" flag may be used 311 then the caller will be processing stale data in any case. If it 312 is really OK to be processing stale data, then you don't need a 313 "deleted" flag. If processing stale data really is a problem,
|
D | rcu_dereference.txt | 207 see stale and/or inconsistent values. If RCU readers need fresh or
|
D | RTFP.txt | 40 theoretical justification for use of stale data. 391 avoid synchronization overhead by using possibly-stale data.
|
/linux-4.4.14/drivers/md/bcache/ |
D | extents.c | 537 unsigned i, stale; in bch_extent_bad() local 552 stale = ptr_stale(b->c, k, i); in bch_extent_bad() 554 btree_bug_on(stale > 96, b, in bch_extent_bad() 556 stale, b->c->need_gc); in bch_extent_bad() 558 btree_bug_on(stale && KEY_DIRTY(k) && KEY_SIZE(k), in bch_extent_bad() 561 if (stale) in bch_extent_bad()
|
D | btree.c | 1174 uint8_t stale = 0; in __bch_btree_mark_key() local 1184 return stale; in __bch_btree_mark_key() 1196 stale = max(stale, ptr_stale(c, k, i)); in __bch_btree_mark_key() 1220 return stale; in __bch_btree_mark_key() 1247 uint8_t stale = 0; in btree_gc_mark_node() local 1256 stale = max(stale, btree_mark_key(b, k)); in btree_gc_mark_node() 1278 if (stale > 10) in btree_gc_mark_node()
|
/linux-4.4.14/drivers/gpu/drm/msm/mdp/mdp4/ |
D | mdp4_crtc.c | 38 bool stale; member 387 if (mdp4_crtc->cursor.stale) { in update_cursor() 416 mdp4_crtc->cursor.stale = false; in update_cursor() 465 mdp4_crtc->cursor.stale = true; in mdp4_crtc_cursor_set()
|
/linux-4.4.14/Documentation/scsi/ |
D | hpsa.txt | 76 and not be disrupted in any way by stale commands or other stale state
|
D | ChangeLog.megaraid | 441 avoid getting the stale values for busy bit. We want to set the busy
|
D | ChangeLog.sym53c8xx | 541 - Damned! I just broke the driver for Alpha by leaving a stale
|
D | ChangeLog.lpfc | 32 interpretation of stale sense length when the command completes
|
/linux-4.4.14/drivers/net/wireless/ath/ath9k/ |
D | xmit.c | 390 tbf->bf_state.stale = false; in ath_clone_txbuf() 473 if (!bf->bf_state.stale || bf_next != NULL) in ath_tx_complete_aggr() 566 if (bf_next != NULL || !bf_last->bf_state.stale) in ath_tx_complete_aggr() 594 if (bf->bf_next == NULL && bf_last->bf_state.stale) { in ath_tx_complete_aggr() 883 bf->bf_state.stale = false; in ath_tx_get_tid_subframe() 1799 if (bf->bf_state.stale) { in ath_drain_txq_list() 2636 if (bf->bf_state.stale) { in ath_tx_processq() 2660 lastbf->bf_state.stale = true; in ath_tx_processq() 2738 if (bf->bf_state.stale) { in ath_tx_edma_tasklet() 2760 lastbf->bf_state.stale = true; in ath_tx_edma_tasklet()
|
D | ath9k.h | 214 bool stale; member
|
/linux-4.4.14/arch/arm/kvm/ |
D | init.S | 102 @ Invalidate the stale TLBs from Bootloader
|
/linux-4.4.14/mm/ |
D | ksm.c | 556 goto stale; in get_ksm_page() 577 goto stale; in get_ksm_page() 583 goto stale; in get_ksm_page() 591 goto stale; in get_ksm_page() 596 stale: in get_ksm_page()
|
/linux-4.4.14/fs/xfs/ |
D | xfs_inode_item.c | 701 bool stale) in xfs_iflush_abort() argument 708 stale ? SHUTDOWN_LOG_IO_ERROR : in xfs_iflush_abort()
|
D | xfs_buf_item.c | 418 int stale = bip->bli_flags & XFS_BLI_STALE; in xfs_buf_item_unpin() local 431 if (freed && stale) { in xfs_buf_item_unpin()
|
/linux-4.4.14/Documentation/filesystems/ |
D | files.txt | 108 fdtable and making the earlier fdtable pointer stale.
|
D | ocfs2.txt | 102 stale data on other nodes.
|
D | debugfs.txt | 210 will be a lot of stale pointers and no end of highly antisocial behavior.
|
D | logfs.txt | 164 garbage collection. If a stale segments erase count is significantly
|
D | xfs-delayed-logging-design.txt | 99 necessary copy in the log buffer, and three stale copies that are simply 101 objects, these "stale objects" can be over 90% of the space used in the log 102 buffers. It is clear that reducing the number of stale objects written to the 111 accumulating stale objects in the log buffers.
|
D | ext4.txt | 72 running mounted with data=writeback can potentially leave stale data
|
D | sharedsubtree.txt | 649 symbolic links can get stale if the destination mount gets
|
D | coda.txt | 1481 is to prevent stale cache information being held. Some operating
|
/linux-4.4.14/Documentation/filesystems/pohmelfs/ |
D | info.txt | 14 trees looking for stale requests, which have to be resent, or if number of
|
/linux-4.4.14/drivers/net/ethernet/8390/ |
D | axnet_cs.c | 115 int stale, fast_poll; member 547 PRIV(dev)->stale = 0; in ei_irq_wrapper() 563 if (info->stale++ && (inb_p(nic_base + EN0_ISR) & ENISR_ALL)) { in ei_watchdog()
|
D | pcnet_cs.c | 208 int stale, fast_poll; member 1005 info->stale = 0; in ei_irq_wrapper() 1022 if (info->stale++ && (inb_p(nic_base + EN0_ISR) & ENISR_ALL)) { in ei_watchdog()
|
/linux-4.4.14/Documentation/x86/ |
D | kernel-stacks | 120 - either the address is not part of the call chain: it's just stale
|
/linux-4.4.14/Documentation/i2c/ |
D | slave-interface | 182 the buffer might get stale.
|
/linux-4.4.14/arch/powerpc/platforms/44x/ |
D | Kconfig | 357 that can cause execution of stale instructions when falling
|
/linux-4.4.14/Documentation/vm/ |
D | pagemap.txt | 127 stale in case the page was accessed via a PTE. To make sure the flag
|
D | cleancache.txt | 74 subsequent get can never return the stale data (AAA). For get-get coherency,
|
D | frontswap.txt | 49 or the store fails AND the page is invalidated. This ensures stale data may
|
/linux-4.4.14/Documentation/filesystems/caching/ |
D | backend-api.txt | 679 (*) Indicate that a stale object was found and discarded: 684 the cache that the netfs decided was stale. The object has been 696 FSCACHE_OBJECT_IS_STALE - the object was stale and needs discarding.
|
D | cachefiles.txt | 38 reaping stale nodes and culling. This is called cachefilesd and lives in 302 the netfs. The latter is used to detect stale objects in the cache and update
|
D | fscache.txt | 308 stl=N Number of stale objects deleted
|
/linux-4.4.14/net/sctp/ |
D | sm_statefuns.c | 2309 u32 stale; in sctp_sf_do_5_2_6_stale() local 2340 stale = ntohl(*(__be32 *)((u8 *)err + sizeof(sctp_errhdr_t))); in sctp_sf_do_5_2_6_stale() 2341 stale = (stale * 2) / 1000; in sctp_sf_do_5_2_6_stale() 2345 bht.lifespan_increment = htonl(stale); in sctp_sf_do_5_2_6_stale()
|
D | sm_make_chunk.c | 2497 u32 stale; in sctp_process_param() local 2530 stale = ntohl(param.life->lifespan_increment); in sctp_process_param() 2535 asoc->cookie_life = ktime_add_ms(asoc->cookie_life, stale); in sctp_process_param()
|
/linux-4.4.14/Documentation/ |
D | cachetlb.txt | 26 possible for stale translations to exist in this "TLB" cache. 400 which prevents the processor from making the cache stale by
|
D | dma-buf-sharing.txt | 269 write) might return stale or even bogus data (e.g. when the exporter needs to 302 the partial chunks at the beginning and end but may return stale or bogus
|
D | bcache.txt | 394 was reused and invalidated - i.e. where the pointer was stale after the read
|
D | SubmittingPatches | 164 stale.
|
D | memory-barriers.txt | 2789 such cases, a device attempting DMA may obtain stale data from RAM because
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | sysfs-block | 217 stale or random data when a previously discarded block
|
/linux-4.4.14/tools/usb/usbip/ |
D | INSTALL | 30 disabled by default to prevent problems with accidental use of stale
|
/linux-4.4.14/drivers/net/ethernet/agere/ |
D | et131x.c | 350 u32 stale; /* Used to spot stuck/lost packets */ member 2519 tcb->stale = 0; in nic_send_packet() 3431 if (++tcb->stale > 1) in et131x_isr()
|
/linux-4.4.14/Documentation/networking/ |
D | cxgb.txt | 274 can provide stale data via split completion cycles to a PCI-X card that
|
/linux-4.4.14/Documentation/timers/ |
D | highres.txt | 231 handler has not to deal with an eventually stale jiffy value.
|
/linux-4.4.14/arch/arm/ |
D | Kconfig | 1059 stale interworking branch prediction. This results in Cortex-A8 1081 bool "ARM errata: Data written to the L2 cache can be overwritten with stale data" 1088 and overwritten with stale memory contents from external memory. The 1176 can populate the micro-TLB with a stale entry which may be hit with
|
/linux-4.4.14/Documentation/filesystems/cifs/ |
D | CHANGES | 372 without invalidating the readahead data (so we could get stale 626 page cache could contain stale data, and write through did 645 instance is closed so that the client does not continue using stale local
|
/linux-4.4.14/Documentation/powerpc/ |
D | cxlflash.txt | 171 destroyed, the tokens are to be considered stale and subsequent
|
D | hvcs.txt | 268 As a security feature to prevent the delivery of stale data to an
|
/linux-4.4.14/ |
D | README | 106 - Make sure you have no stale .o files and dependencies lying around:
|
/linux-4.4.14/drivers/scsi/aic7xxx/ |
D | aic79xx.seq | 637 * any stale busfree status. This avoids 823 * any stale busfree status. This avoids 2219 * any stale busfree status. This avoids
|
/linux-4.4.14/Documentation/virtual/kvm/ |
D | mmu.txt | 427 memslot is changed, this information may become stale and needs to be
|
/linux-4.4.14/Documentation/PCI/ |
D | pci.txt | 406 is important for both data coherency and avoiding stale control data.
|
/linux-4.4.14/arch/arm/mm/ |
D | Kconfig | 857 functions may leave stale cache entries on other CPUs. By
|
/linux-4.4.14/Documentation/laptops/ |
D | thinkpad-acpi.txt | 1171 maximum speed, and in some ThinkPads, the tachometer readings go stale 1278 Fan tachometer reading, in RPM. May go stale on certain
|
/linux-4.4.14/Documentation/virtual/uml/ |
D | UserModeLinux-HOWTO.txt | 3839 thread to occasionally read stale data from a mmapped page shared with
|