Home
last modified time | relevance | path

Searched refs:map_type (Results 1 – 25 of 101) sorted by relevance

12345

/linux/fs/btrfs/tests/
H A Draid-stripe-tree-tests.c43 u64 map_type = RST_TEST_RAID1_TYPE; in test_punch_hole_3extents() local
64 bioc->map_type = map_type; in test_punch_hole_3extents()
141 ret = btrfs_get_raid_extent_offset(fs_info, logical1, &len1, map_type, in test_punch_hole_3extents()
164 ret = btrfs_get_raid_extent_offset(fs_info, logical2, &len2, map_type, in test_punch_hole_3extents()
175 ret = btrfs_get_raid_extent_offset(fs_info, logical3, &len3, map_type, in test_punch_hole_3extents()
221 u64 map_type = RST_TEST_RAID1_TYPE; in test_delete_two_extents() local
240 bioc->map_type = map_type; in test_delete_two_extents()
315 ret = btrfs_get_raid_extent_offset(fs_info, logical1, &len1, map_type, in test_delete_two_extents()
323 ret = btrfs_get_raid_extent_offset(fs_info, logical2, &len2, map_type, in test_delete_two_extents()
331 ret = btrfs_get_raid_extent_offset(fs_info, logical3, &len3, map_type, in test_delete_two_extents()
[all …]
/linux/tools/testing/selftests/bpf/
H A Dtest_lru_map.c28 static int create_map(int map_type, int map_flags, unsigned int size) in create_map() argument
33 map_fd = bpf_map_create(map_type, NULL, sizeof(unsigned long long), in create_map()
161 static void test_lru_sanity0(int map_type, int map_flags) in test_lru_sanity0() argument
167 printf("%s (map_type:%d map_flags:0x%X): ", __func__, map_type, in test_lru_sanity0()
173 lru_map_fd = create_map(map_type, map_flags, 2 * nr_cpus); in test_lru_sanity0()
175 lru_map_fd = create_map(map_type, map_flags, 2); in test_lru_sanity0()
252 static void test_lru_sanity1(int map_type, int map_flags, unsigned int tgt_free) in test_lru_sanity1() argument
264 printf("%s (map_type:%d map_flags:0x%X): ", __func__, map_type, in test_lru_sanity1()
273 lru_map_fd = create_map(map_type, map_flags, map_size); in test_lru_sanity1()
320 static void test_lru_sanity2(int map_type, int map_flags, unsigned int tgt_free) in test_lru_sanity2() argument
[all …]
/linux/tools/testing/selftests/bpf/prog_tests/
H A Dbtf.c67 enum bpf_map_type map_type; member
134 .map_type = BPF_MAP_TYPE_ARRAY,
189 .map_type = BPF_MAP_TYPE_ARRAY,
214 .map_type = BPF_MAP_TYPE_ARRAY,
255 .map_type = BPF_MAP_TYPE_ARRAY,
300 .map_type = BPF_MAP_TYPE_ARRAY,
322 .map_type = BPF_MAP_TYPE_ARRAY,
344 .map_type = BPF_MAP_TYPE_ARRAY,
366 .map_type = BPF_MAP_TYPE_ARRAY,
391 .map_type = BPF_MAP_TYPE_ARRAY,
[all …]
H A Dlibbpf_probes.c68 enum bpf_map_type map_type = (enum bpf_map_type)e->val; in test_libbpf_probe_map_types() local
71 if (map_type == BPF_MAP_TYPE_UNSPEC) in test_libbpf_probe_map_types()
79 res = libbpf_probe_bpf_map_type(map_type, NULL); in test_libbpf_probe_map_types()
H A Dlibbpf_str.c130 enum bpf_map_type map_type = (enum bpf_map_type)e->val; in test_libbpf_bpf_map_type_str() local
135 if (map_type == __MAX_BPF_MAP_TYPE) in test_libbpf_bpf_map_type_str()
139 map_type_str = libbpf_bpf_map_type_str(map_type); in test_libbpf_bpf_map_type_str()
H A Dsockmap_ktls.c121 enum bpf_map_type map_type) in fmt_test_name() argument
406 static void run_tests(int family, enum bpf_map_type map_type) in run_tests() argument
410 map = bpf_map_create(map_type, NULL, sizeof(int), sizeof(int), 1, NULL); in run_tests()
414 if (test__start_subtest(fmt_test_name("update_fails_when_sock_has_ulp", family, map_type))) in run_tests()
/linux/samples/bpf/
H A Dtest_lru_dist.c202 static int create_map(int map_type, int map_flags, unsigned int size) in create_map() argument
209 map_fd = bpf_map_create(map_type, NULL, sizeof(unsigned long long), in create_map()
307 static void test_parallel_lru_dist(int map_type, int map_flags, in test_parallel_lru_dist() argument
313 printf("%s (map_type:%d map_flags:0x%X):\n", __func__, map_type, in test_parallel_lru_dist()
317 lru_map_fd = create_map(map_type, map_flags, in test_parallel_lru_dist()
320 lru_map_fd = create_map(map_type, map_flags, in test_parallel_lru_dist()
332 static void test_lru_loss0(int map_type, int map_flags) in test_lru_loss0() argument
340 printf("%s (map_type:%d map_flags:0x%X): ", __func__, map_type, in test_lru_loss0()
346 map_fd = create_map(map_type, map_flags, 900 * nr_cpus); in test_lru_loss0()
348 map_fd = create_map(map_type, map_flags, 900); in test_lru_loss0()
[all …]
/linux/tools/testing/selftests/bpf/map_tests/
H A Dmap_percpu_stats.c129 static bool is_lru(__u32 map_type) in is_lru() argument
131 return map_type == BPF_MAP_TYPE_LRU_HASH || in is_lru()
132 map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH; in is_lru()
135 static bool is_percpu(__u32 map_type) in is_percpu() argument
137 return map_type == BPF_MAP_TYPE_PERCPU_HASH || in is_percpu()
138 map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH; in is_percpu()
142 __u32 map_type; member
175 if (opts->map_type == BPF_MAP_TYPE_HASH_OF_MAPS) { in patch_map_thread()
178 } else if (is_percpu(opts->map_type)) { in patch_map_thread()
193 if (opts->map_type == BPF_MAP_TYPE_HASH_OF_MAPS) in patch_map_thread()
[all …]
H A Dmap_in_map_batch_ops.c31 static void create_inner_maps(enum bpf_map_type map_type, in create_inner_maps() argument
41 map_fd = bpf_map_create(map_type, map_name, sizeof(__u32), in create_inner_maps()
46 map_type, map_name, strerror(errno)); in create_inner_maps()
62 map_type, map_name, strerror(errno)); in create_inner_maps()
66 static int create_outer_map(enum bpf_map_type map_type, __u32 inner_map_fd) in create_outer_map() argument
72 outer_map_fd = bpf_map_create(map_type, "outer_map", sizeof(__u32), in create_outer_map()
78 map_type, strerror(errno)); in create_outer_map()
/linux/include/trace/events/
H A Dxdp.h95 enum bpf_map_type map_type,
98 TP_ARGS(dev, xdp, tgt, err, map_type, map_id, index),
113 if (map_type == BPF_MAP_TYPE_DEVMAP || map_type == BPF_MAP_TYPE_DEVMAP_HASH) {
119 } else if (map_type == BPF_MAP_TYPE_UNSPEC && map_id == INT_MAX) {
145 enum bpf_map_type map_type,
147 TP_ARGS(dev, xdp, tgt, err, map_type, map_id, index)
154 enum bpf_map_type map_type,
156 TP_ARGS(dev, xdp, tgt, err, map_type, map_id, index)
165 #define _trace_xdp_redirect_map(dev, xdp, to, map_type, map_id, index) \ argument
166 trace_xdp_redirect(dev, xdp, to, 0, map_type, map_id, index)
[all …]
/linux/tools/testing/selftests/filesystems/
H A Dutils.c63 idmap_type_t map_type; member
180 static int write_id_mapping(idmap_type_t map_type, pid_t pid, const char *buf, size_t buf_size) in write_id_mapping() argument
188 if (geteuid() != 0 && map_type == ID_TYPE_GID) { in write_id_mapping()
208 ret = snprintf(path, sizeof(path), "/proc/%d/%cid_map", pid, map_type == ID_TYPE_UID ? 'u' : 'g'); in write_id_mapping()
221 map_type == ID_TYPE_UID ? 'u' : 'g', path); in write_id_mapping()
238 idmap_type_t map_type, u_or_g; in map_ids_from_idmap() local
243 for (map_type = ID_TYPE_UID, u_or_g = 'u'; in map_ids_from_idmap()
244 map_type <= ID_TYPE_GID; map_type++, u_or_g = 'g') { in map_ids_from_idmap()
252 if (map->map_type != map_type) in map_ids_from_idmap()
271 ret = write_id_mapping(map_type, pid, mapbuf, pos - mapbuf); in map_ids_from_idmap()
[all …]
/linux/fs/btrfs/
H A Draid-stripe-tree.h27 u64 logical, u64 *length, u64 map_type,
38 u64 map_type) in btrfs_need_stripe_tree_update() argument
40 u64 type = map_type & BTRFS_BLOCK_GROUP_TYPE_MASK; in btrfs_need_stripe_tree_update()
41 u64 profile = map_type & BTRFS_BLOCK_GROUP_PROFILE_MASK; in btrfs_need_stripe_tree_update()
H A Draid-stripe-tree.c301 const int num_stripes = btrfs_bg_type_to_factor(bioc->map_type); in btrfs_insert_one_raid_extent()
370 u64 logical, u64 *length, u64 map_type, in btrfs_get_raid_extent_offset() argument
452 if ((map_type & BTRFS_BLOCK_GROUP_DUP) && stripe_index != i) in btrfs_get_raid_extent_offset()
472 btrfs_bg_type_to_raid_name(map_type)); in btrfs_get_raid_extent_offset()
/linux/kernel/bpf/
H A Dmap_iter.c116 if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH || in bpf_iter_attach_map()
117 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH || in bpf_iter_attach_map()
118 map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY) in bpf_iter_attach_map()
120 else if (map->map_type != BPF_MAP_TYPE_HASH && in bpf_iter_attach_map()
121 map->map_type != BPF_MAP_TYPE_LRU_HASH && in bpf_iter_attach_map()
122 map->map_type != BPF_MAP_TYPE_ARRAY) in bpf_iter_attach_map()
H A Dsyscall.c48 #define IS_FD_ARRAY(map) ((map)->map_type == BPF_MAP_TYPE_PERF_EVENT_ARRAY || \
49 (map)->map_type == BPF_MAP_TYPE_CGROUP_ARRAY || \
50 (map)->map_type == BPF_MAP_TYPE_ARRAY_OF_MAPS)
51 #define IS_FD_PROG_ARRAY(map) ((map)->map_type == BPF_MAP_TYPE_PROG_ARRAY)
52 #define IS_FD_HASH(map) ((map)->map_type == BPF_MAP_TYPE_HASH_OF_MAPS)
138 if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH || in bpf_map_value_size()
139 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH || in bpf_map_value_size()
140 map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY || in bpf_map_value_size()
141 map->map_type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE) in bpf_map_value_size()
159 if (map->map_type == BPF_MAP_TYPE_HASH_OF_MAPS || in maybe_wait_bpf_programs()
[all …]
H A Dmap_in_map.c36 inner_map_meta->map_type = inner_map->map_type; in bpf_map_meta_alloc()
87 return meta0->map_type == meta1->map_type && in bpf_map_meta_equal()
/linux/fs/smb/client/
H A Dcifs_unicode.c17 int map_type; in cifs_remap() local
20 map_type = SFM_MAP_UNI_RSVD; in cifs_remap()
22 map_type = SFU_MAP_UNI_RSVD; in cifs_remap()
24 map_type = NO_MAP_UNI_RSVD; in cifs_remap()
26 return map_type; in cifs_remap()
178 const struct nls_table *codepage, int map_type) in cifs_from_utf16() argument
213 charlen = cifs_mapchar(tmp, ftmp, codepage, map_type); in cifs_from_utf16()
219 charlen = cifs_mapchar(&to[outlen], ftmp, codepage, map_type); in cifs_from_utf16()
/linux/tools/lib/bpf/
H A Dlibbpf_probes.c282 static int probe_map_create(enum bpf_map_type map_type) in probe_map_create() argument
293 switch (map_type) { in probe_map_create()
372 if (map_type == BPF_MAP_TYPE_ARRAY_OF_MAPS || in probe_map_create()
373 map_type == BPF_MAP_TYPE_HASH_OF_MAPS) { in probe_map_create()
388 fd = bpf_map_create(map_type, NULL, key_size, value_size, max_entries, &opts); in probe_map_create()
405 int libbpf_probe_bpf_map_type(enum bpf_map_type map_type, const void *opts) in libbpf_probe_bpf_map_type() argument
412 ret = probe_map_create(map_type); in libbpf_probe_bpf_map_type()
H A Dskel_internal.h168 if (map->map_type != BPF_MAP_TYPE_ARRAY) in skel_finalize_map_data()
229 static inline int skel_map_create(enum bpf_map_type map_type, in skel_map_create() argument
242 attr.map_type = map_type; in skel_map_create()
/linux/tools/testing/selftests/bpf/progs/
H A Dlpm_trie_bench.c44 u32 map_type; in BPF_PROG() local
46 map_type = BPF_CORE_READ(map, map_type); in BPF_PROG()
47 if (map_type != BPF_MAP_TYPE_LPM_TRIE) in BPF_PROG()
/linux/tools/testing/selftests/arm64/mte/
H A Dcheck_user_mem.c145 const char* map_type; in format_test_name() local
179 map_type = "MAP_SHARED"; in format_test_name()
182 map_type = "MAP_PRIVATE"; in format_test_name()
191 test_type, mte_type, map_type, len, offset); in format_test_name()
/linux/tools/bpf/bpftool/
H A Dfeature.c515 static bool probe_map_type_ifindex(enum bpf_map_type map_type, __u32 ifindex) in probe_map_type_ifindex() argument
527 fd = bpf_map_create(map_type, NULL, key_size, value_size, max_entries, in probe_map_type_ifindex()
536 probe_map_type(enum bpf_map_type map_type, char const *map_type_str, in probe_map_type() argument
545 switch (map_type) { in probe_map_type()
553 res = probe_map_type_ifindex(map_type, ifindex); in probe_map_type()
555 res = libbpf_probe_bpf_map_type(map_type, NULL) > 0; in probe_map_type()
903 unsigned int map_type = BPF_MAP_TYPE_UNSPEC; in section_map_types() local
912 map_type++; in section_map_types()
913 map_type_str = libbpf_bpf_map_type_str(map_type); in section_map_types()
918 probe_map_type(map_type, map_type_str, define_prefix, ifindex); in section_map_types()
H A Dgen.c1016 const struct btf_type *map_type, __u32 map_type_id) in walk_st_ops_shadow_vars() argument
1032 n = btf_vlen(map_type); in walk_st_ops_shadow_vars()
1033 for (i = 0, m = btf_members(map_type); i < n; i++, m++) { in walk_st_ops_shadow_vars()
1133 const struct btf_type *map_type; in gen_st_ops_shadow_type() local
1141 map_type = btf__type_by_id(btf, map_type_id); in gen_st_ops_shadow_type()
1142 if (!map_type) in gen_st_ops_shadow_type()
1145 type_name = btf__name_by_offset(btf, map_type->name_off); in gen_st_ops_shadow_type()
1149 err = walk_st_ops_shadow_vars(btf, ident, map_type, map_type_id); in gen_st_ops_shadow_type()
1643 const struct btf_type *map_type, *var_type; in do_subskeleton() local
1749 map_type = btf__type_by_id(btf, map_type_id); in do_subskeleton()
[all …]
/linux/drivers/gpu/drm/i915/gt/
H A Dshmem_utils.c37 enum i915_map_type map_type; in shmem_create_from_object() local
47 map_type = i915_gem_object_is_lmem(obj) ? I915_MAP_WC : I915_MAP_WB; in shmem_create_from_object()
48 ptr = i915_gem_object_pin_map_unlocked(obj, map_type); in shmem_create_from_object()
/linux/drivers/media/platform/chips-media/wave5/
H A Dwave5.h77 struct frame_buffer *fb_arr, enum tiled_map_type map_type,
112 struct frame_buffer *fb_arr, enum tiled_map_type map_type,

12345