/linux-6.3-rc2/tools/lib/api/fs/ |
A D | cgroup.c | 17 static struct cgroupfs_cache_entry cached; variable 27 if (!strcmp(cached.subsys, subsys)) { in cgroupfs_find_mountpoint() 28 if (strlen(cached.mountpoint) < maxlen) { in cgroupfs_find_mountpoint() 29 strcpy(buf, cached.mountpoint); in cgroupfs_find_mountpoint() 94 strncpy(cached.subsys, subsys, sizeof(cached.subsys) - 1); in cgroupfs_find_mountpoint() 95 strcpy(cached.mountpoint, mountpoint); in cgroupfs_find_mountpoint()
|
/linux-6.3-rc2/fs/lockd/ |
A D | mon.c | 340 if (cached != NULL) { in nsm_get_handle() 341 refcount_inc(&cached->sm_count); in nsm_get_handle() 345 "cnt %d\n", cached->sm_name, in nsm_get_handle() 346 cached->sm_addrbuf, in nsm_get_handle() 348 return cached; in nsm_get_handle() 379 struct nsm_handle *cached; in nsm_reboot_lookup() local 385 if (unlikely(cached == NULL)) { in nsm_reboot_lookup() 389 return cached; in nsm_reboot_lookup() 392 refcount_inc(&cached->sm_count); in nsm_reboot_lookup() 396 cached->sm_name, cached->sm_addrbuf, in nsm_reboot_lookup() [all …]
|
/linux-6.3-rc2/lib/zstd/compress/ |
A D | hist.c | 91 { U32 cached = MEM_read32(ip); ip += 4; in HIST_count_parallel_wksp() local 93 U32 c = cached; cached = MEM_read32(ip); ip += 4; in HIST_count_parallel_wksp() 98 c = cached; cached = MEM_read32(ip); ip += 4; in HIST_count_parallel_wksp() 103 c = cached; cached = MEM_read32(ip); ip += 4; in HIST_count_parallel_wksp() 108 c = cached; cached = MEM_read32(ip); ip += 4; in HIST_count_parallel_wksp()
|
/linux-6.3-rc2/drivers/mtd/maps/ |
A D | pxa2xx-flash.c | 26 unsigned long start = (unsigned long)map->cached + from; in pxa2xx_map_inval_cache() 70 info->map.cached = ioremap_cache(info->map.phys, info->map.size); in pxa2xx_flash_probe() 71 if (!info->map.cached) in pxa2xx_flash_probe() 87 if (info->map.cached) in pxa2xx_flash_probe() 88 iounmap(info->map.cached); in pxa2xx_flash_probe() 109 if (info->map.cached) in pxa2xx_flash_remove() 110 iounmap(info->map.cached); in pxa2xx_flash_remove()
|
/linux-6.3-rc2/fs/btrfs/ |
A D | extent-io-tree.h | 111 struct extent_state **cached); 114 struct extent_state **cached); 130 u32 bits, struct extent_state **cached, gfp_t mask, 135 struct extent_state **cached) in clear_extent_bit() argument 137 return __clear_extent_bit(tree, start, end, bits, cached, in clear_extent_bit() 142 struct extent_state **cached) in unlock_extent() argument 144 return __clear_extent_bit(tree, start, end, EXTENT_LOCKED, cached, in unlock_extent() 185 u64 end, struct extent_state **cached) in clear_extent_dirty() argument 189 EXTENT_DO_ACCOUNTING, cached); in clear_extent_dirty()
|
A D | extent-io-tree.c | 586 cached = *cached_state; in __clear_extent_bit() 593 if (cached && extent_state_in_tree(cached) && in __clear_extent_bit() 594 cached->start <= start && cached->end > start) { in __clear_extent_bit() 597 state = cached; in __clear_extent_bit() 1562 cached = *cached_state; in count_range_bits() 1567 if (cached->start <= cur_start && cur_start <= cached->end) { in count_range_bits() 1568 state = cached; in count_range_bits() 1581 state = cached; in count_range_bits() 1639 if (cached && extent_state_in_tree(cached) && cached->start <= start && in test_range_bit() 1640 cached->end > start) in test_range_bit() [all …]
|
A D | block-group.h | 151 int cached; member 351 return cache->cached == BTRFS_CACHE_FINISHED || in btrfs_block_group_done() 352 cache->cached == BTRFS_CACHE_ERROR; in btrfs_block_group_done()
|
/linux-6.3-rc2/tools/perf/util/ |
A D | smt.c | 9 static bool cached; in smt_on() local 13 if (cached) in smt_on() 21 cached = true; in smt_on()
|
A D | util.c | 61 static bool cached; in sysctl__nmi_watchdog_enabled() local 65 if (cached) in sysctl__nmi_watchdog_enabled() 72 cached = true; in sysctl__nmi_watchdog_enabled()
|
/linux-6.3-rc2/fs/proc/ |
A D | meminfo.c | 36 long cached; in meminfo_proc_show() local 46 cached = global_node_page_state(NR_FILE_PAGES) - in meminfo_proc_show() 48 if (cached < 0) in meminfo_proc_show() 49 cached = 0; in meminfo_proc_show() 62 show_val_kb(m, "Cached: ", cached); in meminfo_proc_show()
|
/linux-6.3-rc2/tools/perf/arch/x86/util/ |
A D | topdown.c | 21 static bool cached; in topdown_sys_has_perf_metrics() local 24 if (cached) in topdown_sys_has_perf_metrics() 37 cached = true; in topdown_sys_has_perf_metrics()
|
A D | tsc.c | 61 static bool cached; in arch_get_tsc_freq() local 65 if (cached) in arch_get_tsc_freq() 68 cached = true; in arch_get_tsc_freq()
|
/linux-6.3-rc2/drivers/gpu/drm/msm/dsi/phy/ |
A D | dsi_phy_10nm.c | 487 struct pll_10nm_cached_state *cached = &pll_10nm->cached_state; in dsi_10nm_pll_save_state() local 491 cached->pll_out_div = dsi_phy_read(pll_10nm->phy->pll_base + in dsi_10nm_pll_save_state() 493 cached->pll_out_div &= 0x3; in dsi_10nm_pll_save_state() 496 cached->bit_clk_div = cmn_clk_cfg0 & 0xf; in dsi_10nm_pll_save_state() 497 cached->pix_clk_div = (cmn_clk_cfg0 & 0xf0) >> 4; in dsi_10nm_pll_save_state() 500 cached->pll_mux = cmn_clk_cfg1 & 0x3; in dsi_10nm_pll_save_state() 503 pll_10nm->phy->id, cached->pll_out_div, cached->bit_clk_div, in dsi_10nm_pll_save_state() 504 cached->pix_clk_div, cached->pll_mux); in dsi_10nm_pll_save_state() 517 val |= cached->pll_out_div; in dsi_10nm_pll_restore_state() 521 cached->bit_clk_div | (cached->pix_clk_div << 4)); in dsi_10nm_pll_restore_state() [all …]
|
A D | dsi_phy_7nm.c | 536 struct pll_7nm_cached_state *cached = &pll_7nm->cached_state; in dsi_7nm_pll_save_state() local 540 cached->pll_out_div = dsi_phy_read(pll_7nm->phy->pll_base + in dsi_7nm_pll_save_state() 542 cached->pll_out_div &= 0x3; in dsi_7nm_pll_save_state() 545 cached->bit_clk_div = cmn_clk_cfg0 & 0xf; in dsi_7nm_pll_save_state() 546 cached->pix_clk_div = (cmn_clk_cfg0 & 0xf0) >> 4; in dsi_7nm_pll_save_state() 549 cached->pll_mux = cmn_clk_cfg1 & 0x3; in dsi_7nm_pll_save_state() 552 pll_7nm->phy->id, cached->pll_out_div, cached->bit_clk_div, in dsi_7nm_pll_save_state() 553 cached->pix_clk_div, cached->pll_mux); in dsi_7nm_pll_save_state() 566 val |= cached->pll_out_div; in dsi_7nm_pll_restore_state() 570 cached->bit_clk_div | (cached->pix_clk_div << 4)); in dsi_7nm_pll_restore_state() [all …]
|
/linux-6.3-rc2/drivers/mtd/devices/ |
A D | phram.c | 37 bool cached; member 88 if (phram->cached) in phram_map() 104 if (phram->cached) { in phram_unmap() 128 bool cached = np ? !of_property_read_bool(np, "no-map") : false; in register_device() local 136 new->cached = cached; in register_device()
|
/linux-6.3-rc2/Documentation/filesystems/ |
A D | fuse-io.rst | 10 - cached 20 In cached mode reads may be satisfied from the page cache, and data may be 24 The cached mode has two sub modes controlling how writes are handled. The 30 WRITE requests, as well as updating any cached pages (and caching previously
|
/linux-6.3-rc2/Documentation/admin-guide/device-mapper/ |
A D | writecache.rst | 6 doesn't cache reads because reads are supposed to be cached in page cache 17 2. the underlying device that will be cached 58 new writes (however, writes to already cached blocks are 60 writes) and it will gradually writeback any cached 62 process with "dmsetup status". When the number of cached
|
/linux-6.3-rc2/arch/arm/mach-omap2/ |
A D | sram.c | 184 int cached = 1; in omap2_map_sram() local 194 cached = 0; in omap2_map_sram() 201 omap_sram_base = __arm_ioremap_exec(omap_sram_start, omap_sram_size, cached); in omap2_map_sram()
|
/linux-6.3-rc2/Documentation/ABI/testing/ |
A D | sysfs-class-iommu-intel-iommu | 15 The cached hardware capability register value 23 The cached hardware extended capability register
|
/linux-6.3-rc2/drivers/gpu/drm/ttm/ |
A D | ttm_agp_backend.c | 55 int ret, cached = ttm->caching == ttm_cached; in ttm_agp_bind() local 77 mem->type = (cached) ? AGP_USER_CACHED_MEMORY : AGP_USER_MEMORY; in ttm_agp_bind()
|
/linux-6.3-rc2/arch/s390/appldata/ |
A D | appldata_mem.c | 54 u64 cached; /* size of (used) cache, w/o buffers */ member 102 mem_data->cached = P2K(global_node_page_state(NR_FILE_PAGES) in appldata_get_mem_data()
|
/linux-6.3-rc2/drivers/block/ |
A D | ps3vram.c | 428 unsigned int cached, count; in ps3vram_read() local 449 cached = CACHE_OFFSET + entry * priv->cache.page_size + offset; in ps3vram_read() 453 (unsigned int)from, cached, offset, avail, count); in ps3vram_read() 457 memcpy(buf, priv->xdr_buf + cached, avail); in ps3vram_read() 472 unsigned int cached, count; in ps3vram_write() local 490 cached = CACHE_OFFSET + entry * priv->cache.page_size + offset; in ps3vram_write() 494 cached, offset, avail, count); in ps3vram_write() 498 memcpy(priv->xdr_buf + cached, buf, avail); in ps3vram_write()
|
/linux-6.3-rc2/tools/perf/Documentation/ |
A D | perf-buildid-cache.txt | 45 Remove a cached binary which has same build-id of specified file 49 Purge all cached binaries including older caches which have specified 53 Purge all cached binaries. This will flush out entire cache.
|
/linux-6.3-rc2/sound/usb/ |
A D | mixer_us16x08.c | 229 elem->cached |= 1 << index; in snd_us16x08_route_put() 288 elem->cached |= 1 << index; in snd_us16x08_master_put() 329 elem->cached |= 1; in snd_us16x08_bus_put() 397 elem->cached |= 1 << index; in snd_us16x08_channel_put() 475 elem->cached |= 1 << index; in snd_us16x08_comp_put() 534 elem->cached |= 1 << index; in snd_us16x08_eqswitch_put() 598 elem->cached |= 1 << index; in snd_us16x08_eq_put() 1315 elem->cached = 0xff; in snd_us16x08_controls_create() 1337 elem->cached = 1; in snd_us16x08_controls_create() 1357 elem->cached = 0xffff; in snd_us16x08_controls_create()
|
/linux-6.3-rc2/sound/soc/codecs/ |
A D | sigmadsp.c | 37 bool cached; member 148 ctrl->cached = true; in sigmadsp_ctrl_put() 165 if (!ctrl->cached) { in sigmadsp_ctrl_get() 172 ctrl->cached = true; in sigmadsp_ctrl_get() 695 if (ctrl->cached) in sigmadsp_activate_ctrl()
|