Home
last modified time | relevance | path

Searched refs:local_copy (Results 1 – 10 of 10) sorted by relevance

/linux-6.15/include/linux/
H A Dzpool.h30 void *local_copy);
71 void *local_copy);
H A Dzsmalloc.h42 void *local_copy);
/linux-6.15/drivers/block/zram/
H A Dzcomp.c48 vfree(zstrm->local_copy); in zcomp_strm_free()
61 zstrm->local_copy = vzalloc(PAGE_SIZE); in zcomp_strm_init()
67 if (!zstrm->buffer || !zstrm->local_copy) { in zcomp_strm_init()
H A Dzcomp.h38 void *local_copy; member
H A Dzram_drv.c1588 src = zs_obj_read_begin(zram->mem_pool, handle, zstrm->local_copy); in read_compressed_page()
/linux-6.15/mm/
H A Dzpool.c279 void *local_copy) in zpool_obj_read_begin() argument
281 return zpool->driver->obj_read_begin(zpool->pool, handle, local_copy); in zpool_obj_read_begin()
H A Dzsmalloc.c479 void *local_copy) in zs_zpool_obj_read_begin() argument
481 return zs_obj_read_begin(pool, handle, local_copy); in zs_zpool_obj_read_begin()
1149 void *local_copy) in zs_obj_read_begin() argument
1181 addr = local_copy; in zs_obj_read_begin()
/linux-6.15/tools/perf/util/
H A Dcpumap.c95 DECLARE_BITMAP(local_copy, 64); in cpu_map__from_mask()
100 perf_record_cpu_map_data__read_one_mask(data, i, local_copy); in cpu_map__from_mask()
101 weight += bitmap_weight(local_copy, 64); in cpu_map__from_mask()
112 perf_record_cpu_map_data__read_one_mask(data, i, local_copy); in cpu_map__from_mask()
113 for_each_set_bit(cpu, local_copy, 64) { in cpu_map__from_mask()
/linux-6.15/arch/sparc/kernel/
H A Dtraps_64.c2081 struct sun4v_error_entry *ent, local_copy; in sun4v_resum_error() local
2092 memcpy(&local_copy, ent, sizeof(struct sun4v_error_entry)); in sun4v_resum_error()
2100 if (local_copy.err_type == SUN4V_ERR_TYPE_SHUTDOWN_RQST) { in sun4v_resum_error()
2107 local_copy.err_secs); in sun4v_resum_error()
2115 if (local_copy.err_attrs & SUN4V_ERR_ATTRS_MCD) { in sun4v_resum_error()
2116 do_mcd_err(regs, local_copy); in sun4v_resum_error()
2120 sun4v_log_error(regs, &local_copy, cpu, in sun4v_resum_error()
2199 struct sun4v_error_entry *ent, local_copy; in sun4v_nonresum_error() local
2210 memcpy(&local_copy, ent, sizeof(struct sun4v_error_entry)); in sun4v_nonresum_error()
2219 sun4v_nonresum_error_user_handled(regs, &local_copy)) { in sun4v_nonresum_error()
[all …]
/linux-6.15/Documentation/bpf/
H A Dkfuncs.rst561 struct task_struct *local_copy;
564 local_copy = global;
565 if (local_copy)
567 * We could also pass local_copy to kfuncs or helper functions here,
568 * as we're guaranteed that local_copy will be valid until we exit
571 bpf_printk("Global task %s is valid", local_copy->comm);
576 /* At this point we can no longer reference local_copy. */