Home
last modified time | relevance | path

Searched refs:cached (Results 1 – 25 of 130) sorted by relevance

123456

/linux/tools/lib/api/fs/
H A Dcgroup.c17 static struct cgroupfs_cache_entry *cached; variable
27 if (cached && !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 if (!cached) in cgroupfs_find_mountpoint()
95 cached = calloc(1, sizeof(*cached)); in cgroupfs_find_mountpoint()
97 if (cached) { in cgroupfs_find_mountpoint()
98 strncpy(cached->subsys, subsys, sizeof(cached->subsys) - 1); in cgroupfs_find_mountpoint()
99 strcpy(cached->mountpoint, mountpoint); in cgroupfs_find_mountpoint()
/linux/fs/btrfs/
H A Dextent-io-tree.h145 struct extent_state **cached);
147 u32 bits, struct extent_state **cached);
150 struct extent_state **cached) in btrfs_lock_extent() argument
152 return btrfs_lock_extent_bits(tree, start, end, EXTENT_LOCKED, cached); in btrfs_lock_extent()
156 u64 end, struct extent_state **cached) in btrfs_try_lock_extent() argument
158 return btrfs_try_lock_extent_bits(tree, start, end, EXTENT_LOCKED, cached); in btrfs_try_lock_extent()
178 u32 bits, struct extent_state **cached,
183 struct extent_state **cached) in btrfs_clear_extent_bit() argument
185 return btrfs_clear_extent_bit_changeset(tree, start, end, bits, cached, NULL); in btrfs_clear_extent_bit()
189 struct extent_state **cached) in btrfs_unlock_extent() argument
[all …]
H A Dfiemap.c72 bool cached; member
117 if (!cache->cached) in emit_fiemap_extent()
252 cache->cached = false; in emit_fiemap_extent()
266 cache->cached = false; in emit_fiemap_extent()
270 cache->cached = true; in emit_fiemap_extent()
295 if (!cache->cached) in emit_last_fiemap_cache()
300 cache->cached = false; in emit_last_fiemap_cache()
821 if (cache.cached && cache.offset + cache.len >= last_extent_end) { in extent_fiemap()
/linux/lib/zstd/compress/
H A Dhist.c102 { U32 cached = MEM_read32(ip); ip += 4; in HIST_count_parallel_wksp() local
104 U32 c = cached; cached = MEM_read32(ip); ip += 4; in HIST_count_parallel_wksp()
109 c = cached; cached = MEM_read32(ip); ip += 4; in HIST_count_parallel_wksp()
114 c = cached; cached = MEM_read32(ip); ip += 4; in HIST_count_parallel_wksp()
119 c = cached; cached = MEM_read32(ip); ip += 4; in HIST_count_parallel_wksp()
/linux/drivers/mtd/maps/
H A Dpxa2xx-flash.c26 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/tools/perf/util/
H A Dsmt.c9 static bool cached; in smt_on() local
13 if (cached) in smt_on()
21 cached = true; in smt_on()
H A Daddr2line.c98 static bool cached;
101 if (!cached) { in cmd_addr2line_configure() local
114 cached = true; in cmd_addr2line_configure()
119 cached = true; in cmd_addr2line_configure()
H A Dutil.c64 static bool cached; in sysctl__nmi_watchdog_enabled() local
68 if (cached) in sysctl__nmi_watchdog_enabled()
75 cached = true; in sysctl__nmi_watchdog_enabled()
/linux/drivers/mtd/devices/
H A Dphram.c38 bool cached; member
89 if (phram->cached) in phram_map()
105 if (phram->cached) { in phram_unmap()
129 bool cached = np ? !of_property_read_bool(np, "no-map") : false; in register_device() local
137 new->cached = cached; in register_device()
/linux/tools/perf/arch/x86/util/
H A Dtopdown.c17 static bool cached; in topdown_sys_has_perf_metrics() local
20 if (cached) in topdown_sys_has_perf_metrics()
33 cached = true; in topdown_sys_has_perf_metrics()
/linux/Documentation/filesystems/fuse/
H A Dfuse-io.rst10 - cached
21 In cached mode reads may be satisfied from the page cache, and data may be
25 The cached mode has two sub modes controlling how writes are handled. The
31 WRITE requests, as well as updating any cached pages (and caching previously
/linux/tools/testing/selftests/drivers/net/lib/py/
H A Denv.py271 cached = self._required_cmd.get(comm, {})
272 if cached.get(key) is None:
273 cached[key] = cmd("command -v -- " + comm, fail=False,
275 self._required_cmd[comm] = cached
276 return cached[key]
/linux/Documentation/admin-guide/device-mapper/
H A Dwritecache.rst6 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/drivers/gpu/drm/msm/dsi/phy/
H A Ddsi_phy_7nm.c634 struct pll_7nm_cached_state *cached = &pll_7nm->cached_state; in dsi_7nm_pll_save_state() local
639 cached->pll_out_div = readl(pll_7nm->phy->pll_base + in dsi_7nm_pll_save_state()
641 cached->pll_out_div &= 0x3; in dsi_7nm_pll_save_state()
644 cached->bit_clk_div = FIELD_GET(DSI_7nm_PHY_CMN_CLK_CFG0_DIV_CTRL_3_0__MASK, cmn_clk_cfg0); in dsi_7nm_pll_save_state()
645 cached->pix_clk_div = FIELD_GET(DSI_7nm_PHY_CMN_CLK_CFG0_DIV_CTRL_7_4__MASK, cmn_clk_cfg0); in dsi_7nm_pll_save_state()
648 cached->pll_mux = FIELD_GET(DSI_7nm_PHY_CMN_CLK_CFG1_DSICLK_SEL__MASK, cmn_clk_cfg1); in dsi_7nm_pll_save_state()
652 pll_7nm->phy->id, cached->pll_out_div, cached->bit_clk_div, in dsi_7nm_pll_save_state()
653 cached->pix_clk_div, cached->pll_mux); in dsi_7nm_pll_save_state()
659 struct pll_7nm_cached_state *cached = &pll_7nm->cached_state; in dsi_7nm_pll_restore_state() local
665 val |= cached->pll_out_div; in dsi_7nm_pll_restore_state()
[all …]
/linux/arch/arm/mach-omap2/
H A Dsram.c184 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/Documentation/ABI/testing/
H A Dsysfs-class-iommu-intel-iommu15 The cached hardware capability register value
23 The cached hardware extended capability register
/linux/drivers/block/
H A Dps3vram.c426 unsigned int cached, count; in ps3vram_read() local
447 cached = CACHE_OFFSET + entry * priv->cache.page_size + offset; in ps3vram_read()
451 (unsigned int)from, cached, offset, avail, count); in ps3vram_read()
455 memcpy(buf, priv->xdr_buf + cached, avail); in ps3vram_read()
470 unsigned int cached, count; in ps3vram_write() local
488 cached = CACHE_OFFSET + entry * priv->cache.page_size + offset; in ps3vram_write()
492 cached, offset, avail, count); in ps3vram_write()
496 memcpy(priv->xdr_buf + cached, buf, avail); in ps3vram_write()
/linux/drivers/gpu/drm/ttm/
H A Dttm_agp_backend.c56 int ret, cached = ttm->caching == ttm_cached; in ttm_agp_bind() local
78 mem->type = (cached) ? AGP_USER_CACHED_MEMORY : AGP_USER_MEMORY; in ttm_agp_bind()
/linux/arch/s390/appldata/
H A Dappldata_mem.c54 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/tools/perf/Documentation/
H A Dperf-buildid-cache.txt45 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/sound/usb/
H A Dmixer_us16x08.c228 elem->cached |= 1 << index; in snd_us16x08_route_put()
287 elem->cached |= 1 << index; in snd_us16x08_master_put()
328 elem->cached |= 1; in snd_us16x08_bus_put()
396 elem->cached |= 1 << index; in snd_us16x08_channel_put()
474 elem->cached |= 1 << index; in snd_us16x08_comp_put()
533 elem->cached |= 1 << index; in snd_us16x08_eqswitch_put()
597 elem->cached |= 1 << index; in snd_us16x08_eq_put()
1322 elem->cached = 0xff; in snd_us16x08_controls_create()
1344 elem->cached = 1; in snd_us16x08_controls_create()
1364 elem->cached = 0xffff; in snd_us16x08_controls_create()
H A Dmixer_scarlett.c295 if (elem->cached) in forte_get_ctl_value()
356 elem->cached |= 1; in forte_input_gain_put()
367 if (elem->cached) in forte_input_gain_resume()
408 elem->cached |= 1; in forte_ctl_enum_put()
419 if (elem->cached) in forte_ctl_enum_resume()
457 elem->cached |= 1; in forte_ctl_switch_put()
468 if (elem->cached) in forte_ctl_switch_resume()
535 if (elem->cached & (1 << i)) in scarlett_ctl_resume()
693 if (elem->cached) in scarlett_ctl_enum_resume()
/linux/sound/soc/codecs/
H A Dsigmadsp.c37 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()
681 if (ctrl->cached) in sigmadsp_activate_ctrl()
/linux/drivers/md/bcache/
H A Dsysfs.c1059 uint16_t q[31], *p, *cached; in SHOW() local
1062 cached = p = vmalloc(array_size(sizeof(uint16_t), in SHOW()
1086 !cached[n - 1]) in SHOW()
1089 while (cached < p + n && in SHOW()
1090 *cached == BTREE_PRIO) { in SHOW()
1091 cached++; in SHOW()
1096 sum += INITIAL_PRIO - cached[i]; in SHOW()
1102 q[i] = INITIAL_PRIO - cached[n * (i + 1) / in SHOW()
/linux/Documentation/mm/
H A Dpage_frags.rst18 and tracks allows multiple calls to make use of a cached page. The
35 fragments, but the page fragments are cached at the ring or descriptor

123456