/linux-4.1.27/fs/xfs/libxfs/ |
D | xfs_dir2_leaf.c | 90 int stale; in xfs_dir3_leaf_check_int() local 125 for (i = stale = 0; i < hdr->count; i++) { in xfs_dir3_leaf_check_int() 132 stale++; in xfs_dir3_leaf_check_int() 134 if (hdr->stale != stale) in xfs_dir3_leaf_check_int() 426 leafhdr.stale = be32_to_cpu(btp->stale); in xfs_dir2_block_to_leaf() 519 if (!leafhdr->stale) { in xfs_dir3_leaf_find_entry() 574 leafhdr->stale--; in xfs_dir3_leaf_find_entry() 594 leafhdr->stale--; in xfs_dir3_leaf_find_entry() 698 if (!leafhdr.stale) in xfs_dir2_leaf_addname() 714 leafhdr.stale > 1) in xfs_dir2_leaf_addname() [all …]
|
D | xfs_dir2_block.c | 190 if (btp->stale) { in xfs_dir2_block_need_space() 215 if (be16_to_cpu(dup->length) + (be32_to_cpu(btp->stale) - 1) * in xfs_dir2_block_need_space() 218 } else if ((be32_to_cpu(btp->stale) - 1) * (uint)sizeof(*blp) < len) in xfs_dir2_block_need_space() 311 *lfloglow = toidx + 1 - (be32_to_cpu(btp->stale) - 1); in xfs_dir2_block_compact() 312 *lfloghigh -= be32_to_cpu(btp->stale) - 1; in xfs_dir2_block_compact() 313 be32_add_cpu(&btp->count, -(be32_to_cpu(btp->stale) - 1)); in xfs_dir2_block_compact() 316 (xfs_dir2_data_aoff_t)((be32_to_cpu(btp->stale) - 1) * sizeof(*blp)), in xfs_dir2_block_compact() 318 btp->stale = cpu_to_be32(1); in xfs_dir2_block_compact() 421 } else if (btp->stale) { in xfs_dir2_block_addname() 448 if (!btp->stale) { in xfs_dir2_block_addname() [all …]
|
D | xfs_dir2_node.c | 411 if (!leafhdr.stale) in xfs_dir2_leafn_add() 413 compact = leafhdr.stale > 1; in xfs_dir2_leafn_add() 430 else if (leafhdr.stale) { in xfs_dir2_leafn_add() 845 int stale; /* count stale leaves copied */ in xfs_dir3_leafn_moveents() local 870 if (shdr->stale) { in xfs_dir3_leafn_moveents() 873 for (i = start_s, stale = 0; i < start_s + count; i++) { in xfs_dir3_leafn_moveents() 876 stale++; in xfs_dir3_leafn_moveents() 879 stale = 0; in xfs_dir3_leafn_moveents() 901 shdr->stale -= stale; in xfs_dir3_leafn_moveents() 903 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 | 61 int stale; /* count of stale leaves */ in __xfs_dir3_data_check() local 197 for (i = stale = 0; i < be32_to_cpu(btp->count); i++) { in __xfs_dir3_data_check() 200 stale++; in __xfs_dir3_data_check() 207 be32_to_cpu(btp->count) - be32_to_cpu(btp->stale)); in __xfs_dir3_data_check() 208 XFS_WANT_CORRUPTED_RETURN(mp, stale == be32_to_cpu(btp->stale)); in __xfs_dir3_data_check()
|
/linux-4.1.27/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.1.27/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 | 211 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.1.27/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.1.27/net/sunrpc/xprtrdma/ |
D | verbs.c | 1256 rpcrdma_retry_flushed_linv(struct list_head *stale, in rpcrdma_retry_flushed_linv() argument 1264 list_for_each(pos, stale) { in rpcrdma_retry_flushed_linv() 1270 list_splice_tail(stale, &buf->rb_mws); in rpcrdma_retry_flushed_linv() 1276 struct list_head *stale) in rpcrdma_buffer_get_frmrs() argument 1287 list_add(&r->mw_list, stale); in rpcrdma_buffer_get_frmrs() 1336 struct list_head stale; in rpcrdma_buffer_get() local 1359 INIT_LIST_HEAD(&stale); in rpcrdma_buffer_get() 1362 req = rpcrdma_buffer_get_frmrs(req, buffers, &stale); in rpcrdma_buffer_get() 1371 if (!list_empty(&stale)) in rpcrdma_buffer_get() 1372 rpcrdma_retry_flushed_linv(&stale, buffers); in rpcrdma_buffer_get()
|
/linux-4.1.27/drivers/gpu/drm/msm/mdp/mdp4/ |
D | mdp4_crtc.c | 38 bool stale; member 378 if (mdp4_crtc->cursor.stale) { in update_cursor() 407 mdp4_crtc->cursor.stale = false; in update_cursor() 456 mdp4_crtc->cursor.stale = true; in mdp4_crtc_cursor_set()
|
/linux-4.1.27/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.1.27/arch/arm/kvm/ |
D | init.S | 102 @ Invalidate the stale TLBs from Bootloader
|
/linux-4.1.27/mm/ |
D | ksm.c | 555 goto stale; in get_ksm_page() 576 goto stale; in get_ksm_page() 582 goto stale; in get_ksm_page() 590 goto stale; in get_ksm_page() 595 stale: in get_ksm_page()
|
/linux-4.1.27/drivers/net/wireless/ath/ath9k/ |
D | xmit.c | 401 tbf->bf_state.stale = false; in ath_clone_txbuf() 484 if (!bf->bf_state.stale || bf_next != NULL) in ath_tx_complete_aggr() 577 if (bf_next != NULL || !bf_last->bf_state.stale) in ath_tx_complete_aggr() 605 if (bf->bf_next == NULL && bf_last->bf_state.stale) { in ath_tx_complete_aggr() 894 bf->bf_state.stale = false; in ath_tx_get_tid_subframe() 1820 if (bf->bf_state.stale) { in ath_drain_txq_list() 2673 if (bf->bf_state.stale) { in ath_tx_processq() 2697 lastbf->bf_state.stale = true; in ath_tx_processq() 2775 if (bf->bf_state.stale) { in ath_tx_edma_tasklet() 2797 lastbf->bf_state.stale = true; in ath_tx_edma_tasklet()
|
D | ath9k.h | 222 bool stale; member
|
/linux-4.1.27/fs/xfs/ |
D | xfs_inode_item.c | 701 bool stale) in xfs_iflush_abort() argument 712 stale ? 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.1.27/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 | 170 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.1.27/Documentation/filesystems/pohmelfs/ |
D | info.txt | 14 trees looking for stale requests, which have to be resent, or if number of
|
/linux-4.1.27/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.1.27/Documentation/i2c/ |
D | slave-interface | 174 the buffer might get stale.
|
/linux-4.1.27/arch/powerpc/platforms/44x/ |
D | Kconfig | 357 that can cause execution of stale instructions when falling
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | sysfs-block | 210 stale or random data when a previously discarded block
|
/linux-4.1.27/net/sctp/ |
D | sm_statefuns.c | 2309 time_t 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 time_t 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.1.27/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 | 2834 such cases, a device attempting DMA may obtain stale data from RAM because
|
/linux-4.1.27/Documentation/filesystems/caching/ |
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
|
/linux-4.1.27/tools/usb/usbip/ |
D | INSTALL | 30 disabled by default to prevent problems with accidental use of stale
|
/linux-4.1.27/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.1.27/Documentation/networking/ |
D | cxgb.txt | 274 can provide stale data via split completion cycles to a PCI-X card that
|
/linux-4.1.27/Documentation/timers/ |
D | highres.txt | 231 handler has not to deal with an eventually stale jiffy value.
|
/linux-4.1.27/arch/arm/ |
D | Kconfig | 1046 stale interworking branch prediction. This results in Cortex-A8 1068 bool "ARM errata: Data written to the L2 cache can be overwritten with stale data" 1075 and overwritten with stale memory contents from external memory. The 1163 can populate the micro-TLB with a stale entry which may be hit with
|
/linux-4.1.27/Documentation/vm/ |
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.1.27/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.1.27/ |
D | README | 106 - Make sure you have no stale .o files and dependencies lying around:
|
/linux-4.1.27/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.1.27/Documentation/powerpc/ |
D | hvcs.txt | 268 As a security feature to prevent the delivery of stale data to an
|
/linux-4.1.27/Documentation/virtual/kvm/ |
D | mmu.txt | 421 memslot is changed, this information may become stale and needs to be
|
/linux-4.1.27/Documentation/PCI/ |
D | pci.txt | 406 is important for both data coherency and avoiding stale control data.
|
/linux-4.1.27/arch/arm/mm/ |
D | Kconfig | 849 functions may leave stale cache entries on other CPUs. By
|
/linux-4.1.27/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.1.27/Documentation/virtual/uml/ |
D | UserModeLinux-HOWTO.txt | 3839 thread to occasionally read stale data from a mmapped page shared with
|