Home
last modified time | relevance | path

Searched refs:stale (Results 1 – 25 of 131) sorted by relevance

123456

/OK3568_Linux_fs/kernel/fs/xfs/libxfs/
H A Dxfs_dir2_leaf.c47 to->stale = be16_to_cpu(from3->hdr.stale); in xfs_dir2_leaf_hdr_from_disk()
57 to->stale = be16_to_cpu(from->hdr.stale); in xfs_dir2_leaf_hdr_from_disk()
81 to3->hdr.stale = cpu_to_be16(from->stale); in xfs_dir2_leaf_hdr_to_disk()
90 to->hdr.stale = cpu_to_be16(from->stale); in xfs_dir2_leaf_hdr_to_disk()
146 int stale; in xfs_dir3_leaf_check_int() local
166 for (i = stale = 0; i < hdr->count; i++) { in xfs_dir3_leaf_check_int()
173 stale++; in xfs_dir3_leaf_check_int()
175 if (hdr->stale != stale) in xfs_dir3_leaf_check_int()
428 leafhdr.stale = be32_to_cpu(btp->stale); in xfs_dir2_block_to_leaf()
522 if (!leafhdr->stale) { in xfs_dir3_leaf_find_entry()
[all …]
H A Dxfs_dir2_block.c209 if (btp->stale) { in xfs_dir2_block_need_space()
234 if (be16_to_cpu(dup->length) + (be32_to_cpu(btp->stale) - 1) * in xfs_dir2_block_need_space()
237 } else if ((be32_to_cpu(btp->stale) - 1) * (uint)sizeof(*blp) < len) in xfs_dir2_block_need_space()
330 *lfloglow = toidx + 1 - (be32_to_cpu(btp->stale) - 1); in xfs_dir2_block_compact()
331 *lfloghigh -= be32_to_cpu(btp->stale) - 1; in xfs_dir2_block_compact()
332 be32_add_cpu(&btp->count, -(be32_to_cpu(btp->stale) - 1)); in xfs_dir2_block_compact()
335 (xfs_dir2_data_aoff_t)((be32_to_cpu(btp->stale) - 1) * sizeof(*blp)), in xfs_dir2_block_compact()
337 btp->stale = cpu_to_be32(1); in xfs_dir2_block_compact()
440 } else if (btp->stale) { in xfs_dir2_block_addname()
467 if (!btp->stale) { in xfs_dir2_block_addname()
[all …]
H A Dxfs_dir2_node.c531 if (!leafhdr.stale) in xfs_dir2_leafn_add()
533 compact = leafhdr.stale > 1; in xfs_dir2_leafn_add()
550 else if (leafhdr.stale) { in xfs_dir2_leafn_add()
961 int stale; /* count stale leaves copied */ in xfs_dir3_leafn_moveents() local
986 if (shdr->stale) { in xfs_dir3_leafn_moveents()
989 for (i = start_s, stale = 0; i < start_s + count; i++) { in xfs_dir3_leafn_moveents()
992 stale++; in xfs_dir3_leafn_moveents()
995 stale = 0; in xfs_dir3_leafn_moveents()
1018 shdr->stale -= stale; in xfs_dir3_leafn_moveents()
1020 dhdr->stale += stale; in xfs_dir3_leafn_moveents()
[all …]
H A Dxfs_da_format.h414 __be16 stale; /* count of stale entries */ member
420 __be16 stale; /* count of stale entries */ member
530 __be32 stale; /* count of stale lf entries */ member
H A Dxfs_dir2_data.c114 int stale; /* count of stale leaves */ in __xfs_dir3_data_check() local
256 for (i = stale = 0; i < be32_to_cpu(btp->count); i++) { in __xfs_dir3_data_check()
259 stale++; in __xfs_dir3_data_check()
264 if (count != be32_to_cpu(btp->count) - be32_to_cpu(btp->stale)) in __xfs_dir3_data_check()
266 if (stale != be32_to_cpu(btp->stale)) in __xfs_dir3_data_check()
/OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/gt/
H A Dintel_gt_buffer_pool.c43 struct intel_gt_buffer_pool_node *node, *stale = NULL; in pool_free_older_than() local
71 node->free = stale; in pool_free_older_than()
72 stale = node; in pool_free_older_than()
83 while ((node = stale)) { in pool_free_older_than()
84 stale = stale->free; in pool_free_older_than()
/OK3568_Linux_fs/kernel/Documentation/admin-guide/hw-vuln/
H A Dprocessor_mmio_stale_data.rst12 stale data into core fill buffers where the data can subsequently be inferred
21 Propagators are operations that result in stale data being copied or moved from
23 Vulnerabilities are operations that may result in stale data being directly
31 does not make stale data architecturally visible. Stale data must be propagated
36 The sideband stale data propagator (SSDP) is limited to the client (including
40 both requested data and unrequested stale data, from a transaction buffer and
41 the sideband response buffer. As a result, stale data from the sideband
46 The primary stale data propagator (PSDP) is limited to the client (including
50 buffer including both requested data and unrequested stale data. This is
51 similar to the sideband stale data propagator.
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/tile/
H A Dcustom_geometry_tile.cpp49 stale = true; in invalidateTileData()
57 if (newNecessity != necessity || stale ) { in setNecessity()
61 stale = false; in setNecessity()
H A Dcustom_geometry_tile.hpp36 bool stale = true; member in mbgl::CustomGeometryTile
/OK3568_Linux_fs/kernel/fs/cachefiles/
H A Dxattr.c220 goto stale; /* no attribute - power went off in cachefiles_check_object_xattr()
237 goto stale; in cachefiles_check_object_xattr()
266 goto stale; in cachefiles_check_object_xattr()
299 stale: in cachefiles_check_object_xattr()
/OK3568_Linux_fs/kernel/fs/xfs/
H A Dxfs_buf_item.c406 int stale = bip->bli_flags & XFS_BLI_STALE; in xfs_buf_item_unpin() local
424 if (freed && !stale && remove) in xfs_buf_item_unpin()
433 if (stale) { in xfs_buf_item_unpin()
582 bool stale = bip->bli_flags & XFS_BLI_STALE; in xfs_buf_item_release() local
598 ASSERT(!stale || (bip->__bli_format.blf_flags & XFS_BLF_CANCEL)); in xfs_buf_item_release()
614 if (hold || (stale && !released)) in xfs_buf_item_release()
616 ASSERT(!stale || aborted); in xfs_buf_item_release()
/OK3568_Linux_fs/kernel/drivers/md/bcache/
H A Dextents.c540 unsigned int i, stale; in bch_extent_bad() local
552 stale = ptr_stale(b->c, k, i); in bch_extent_bad()
554 if (stale && KEY_DIRTY(k)) { in bch_extent_bad()
557 stale, buf); in bch_extent_bad()
560 btree_bug_on(stale > BUCKET_GC_GEN_MAX, b, in bch_extent_bad()
562 stale, b->c->need_gc); in bch_extent_bad()
564 if (stale) in bch_extent_bad()
/OK3568_Linux_fs/kernel/Documentation/RCU/
H A DlistRCU.rst68 equipment outside of the computer, it will at times contain stale data.
204 So, when readers can tolerate stale data and when entries are either added or
283 The auditing example above tolerates stale data, as do most algorithms
288 However, there are many examples where stale data cannot be tolerated.
303 If the system-call audit module were to ever need to reject stale data, one way
364 For some usecases, reader performance can be improved by skipping stale objects
414 the ``cancel_list``, the ``might_cancel`` flag is consulted to skip stale
446 Read-mostly list-based data structures that can tolerate stale data are
451 If stale data cannot be tolerated, then a *deleted* flag may be used
462 then the caller will be processing stale data in any case. If it
[all …]
/OK3568_Linux_fs/kernel/fs/xfs/scrub/
H A Ddir.c499 unsigned int stale = 0; in xchk_directory_leaf1_bestfree() local
551 stale++; in xchk_directory_leaf1_bestfree()
553 if (leafhdr.stale != stale) in xchk_directory_leaf1_bestfree()
602 unsigned int stale = 0; in xchk_directory_free_bestfree() local
624 stale++; in xchk_directory_free_bestfree()
637 if (freehdr.nused + stale != freehdr.nvalid) in xchk_directory_free_bestfree()
/OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/gem/selftests/
H A Dmock_context.c28 spin_lock_init(&ctx->stale.lock); in mock_context()
29 INIT_LIST_HEAD(&ctx->stale.engines); in mock_context()
/OK3568_Linux_fs/buildroot/dl/hostapd/
H A D0001-P2P-Fix-a-corner-case-in-peer-addition-based-on-PD-R.patch8 removed entry becoming stale. A corner case with an invalid PD Request
16 p2p_add_device() so that the stale pointer cannot be used.
/OK3568_Linux_fs/buildroot/dl/wpa_supplicant/
H A D0001-P2P-Fix-a-corner-case-in-peer-addition-based-on-PD-R.patch8 removed entry becoming stale. A corner case with an invalid PD Request
16 p2p_add_device() so that the stale pointer cannot be used.
/OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-devtools/python/
H A Dpython3-pid_3.0.4.bb1 SUMMARY = "Pidfile featuring stale detection and file-locking, can also \
/OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/gem/
H A Di915_gem_context.c272 spin_lock_irqsave(&ctx->stale.lock, flags); in engines_notify()
274 spin_unlock_irqrestore(&ctx->stale.lock, flags); in engines_notify()
530 spin_lock_irq(&ctx->stale.lock); in kill_context()
532 list_for_each_entry_safe(pos, next, &ctx->stale.engines, link) { in kill_context()
538 spin_unlock_irq(&ctx->stale.lock); in kill_context()
542 spin_lock_irq(&ctx->stale.lock); in kill_context()
549 spin_unlock_irq(&ctx->stale.lock); in kill_context()
579 spin_lock_irq(&ctx->stale.lock); in engines_idle_release()
581 list_add_tail(&engines->link, &ctx->stale.engines); in engines_idle_release()
582 spin_unlock_irq(&ctx->stale.lock); in engines_idle_release()
[all …]
H A Di915_gem_context_types.h187 } stale; member
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/libtool/
H A Dlibtool-native_2.4.7.bb10 # Remove any existing libtool m4 since old stale versions would break
H A Dnativesdk-libtool_2.4.7.bb13 # Remove any existing libtool m4 since old stale versions would break
/OK3568_Linux_fs/kernel/drivers/gpu/drm/msm/disp/mdp4/
H A Dmdp4_crtc.c28 bool stale; member
363 if (mdp4_crtc->cursor.stale) { in update_cursor()
392 mdp4_crtc->cursor.stale = false; in update_cursor()
442 mdp4_crtc->cursor.stale = true; in mdp4_crtc_cursor_set()
/OK3568_Linux_fs/kernel/Documentation/filesystems/
H A Dceph.rst175 After reconnect, file locks become stale because the MDS loses track
176 of them. If an inode contains any stale file locks, read/write on the
177 inode is not allowed until applications release all stale file locks.
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/text/
H A Dplacement.hpp103 bool stale = false; member in mbgl::Placement

123456