Home
last modified time | relevance | path

Searched refs:new_map (Results 1 – 25 of 34) sorted by relevance

12

/linux/kernel/
H A Duser_namespace.c745 static bool mappings_overlap(struct uid_gid_map *new_map, in mappings_overlap() argument
756 for (idx = 0; idx < new_map->nr_extents; idx++) { in mappings_overlap()
761 if (new_map->nr_extents <= UID_GID_MAP_MAX_BASE_EXTENTS) in mappings_overlap()
762 prev = &new_map->extent[idx]; in mappings_overlap()
764 prev = &new_map->forward[idx]; in mappings_overlap()
892 struct uid_gid_map *new_map) in verify_root_map() argument
898 for (idx = 0; idx < new_map->nr_extents; idx++) { in verify_root_map()
899 if (new_map->nr_extents <= UID_GID_MAP_MAX_BASE_EXTENTS) in verify_root_map()
900 extent0 = &new_map->extent[idx]; in verify_root_map()
902 extent0 = &new_map->forward[idx]; in verify_root_map()
[all …]
/linux/drivers/pinctrl/
H A Dpinctrl-utils.c26 struct pinctrl_map *new_map; in pinctrl_utils_reserve_map() local
31 new_map = krealloc_array(*map, new_num, sizeof(*new_map), GFP_KERNEL); in pinctrl_utils_reserve_map()
32 if (!new_map) { in pinctrl_utils_reserve_map()
37 memset(new_map + old_num, 0, (new_num - old_num) * sizeof(*new_map)); in pinctrl_utils_reserve_map()
39 *map = new_map; in pinctrl_utils_reserve_map()
H A Dpinctrl-k230.c197 struct pinctrl_map *new_map; in k230_dt_node_to_map() local
214 new_map = kzalloc_objs(*new_map, map_num); in k230_dt_node_to_map()
215 if (!new_map) in k230_dt_node_to_map()
217 *map = new_map; in k230_dt_node_to_map()
224 new_map[idx].type = PIN_MAP_TYPE_MUX_GROUP; in k230_dt_node_to_map()
225 new_map[idx].data.mux.group = grp->name; in k230_dt_node_to_map()
226 new_map[idx].data.mux.function = np_config->name; in k230_dt_node_to_map()
230 new_map[idx].type = PIN_MAP_TYPE_CONFIGS_PIN; in k230_dt_node_to_map()
231 new_map[idx].data.configs.group_or_pin = in k230_dt_node_to_map()
233 new_map[idx].data.configs.configs = in k230_dt_node_to_map()
[all …]
H A Dpinctrl-at91.c294 struct pinctrl_map *new_map; in at91_dt_node_to_map() local
311 new_map = devm_kcalloc(pctldev->dev, map_num, sizeof(*new_map), in at91_dt_node_to_map()
313 if (!new_map) in at91_dt_node_to_map()
316 *map = new_map; in at91_dt_node_to_map()
322 devm_kfree(pctldev->dev, new_map); in at91_dt_node_to_map()
325 new_map[0].type = PIN_MAP_TYPE_MUX_GROUP; in at91_dt_node_to_map()
326 new_map[0].data.mux.function = parent->name; in at91_dt_node_to_map()
327 new_map[0].data.mux.group = np->name; in at91_dt_node_to_map()
331 new_map++; in at91_dt_node_to_map()
333 new_map[i].type = PIN_MAP_TYPE_CONFIGS_PIN; in at91_dt_node_to_map()
[all …]
H A Dpinctrl-rockchip.c401 struct pinctrl_map *new_map; in rockchip_dt_node_to_map() local
418 new_map = kzalloc_objs(*new_map, map_num); in rockchip_dt_node_to_map()
419 if (!new_map) in rockchip_dt_node_to_map()
422 *map = new_map; in rockchip_dt_node_to_map()
428 kfree(new_map); in rockchip_dt_node_to_map()
431 new_map[0].type = PIN_MAP_TYPE_MUX_GROUP; in rockchip_dt_node_to_map()
432 new_map[0].data.mux.function = parent->name; in rockchip_dt_node_to_map()
433 new_map[0].data.mux.group = np->name; in rockchip_dt_node_to_map()
437 new_map++; in rockchip_dt_node_to_map()
439 new_map[i].type = PIN_MAP_TYPE_CONFIGS_PIN; in rockchip_dt_node_to_map()
[all …]
/linux/drivers/input/rmi4/
H A Drmi_smbus.c84 struct mapping_table_entry new_map; in rmi_smb_get_command_code() local
109 memset(&new_map, 0, sizeof(new_map)); in rmi_smb_get_command_code()
110 new_map.rmiaddr = cpu_to_le16(rmiaddr); in rmi_smb_get_command_code()
111 new_map.readcount = bytecount; in rmi_smb_get_command_code()
112 new_map.flags = !isread ? RMI_SMB2_MAP_FLAGS_WE : 0; in rmi_smb_get_command_code()
114 retval = smb_block_write(xport, i + 0x80, &new_map, sizeof(new_map)); in rmi_smb_get_command_code()
120 memset(&new_map, 0, sizeof(new_map)); in rmi_smb_get_command_code()
124 rmi_smb->mapping_table[i] = new_map; in rmi_smb_get_command_code()
/linux/tools/testing/selftests/bpf/prog_tests/
H A Dfd_array.c10 static inline int new_map(void) in new_map() function
123 map_fd = new_map(); in load_test_prog()
175 extra_fds[0] = new_map(); in check_fd_array_cnt__fd_array_ok()
178 extra_fds[1] = new_map(); in check_fd_array_cnt__fd_array_ok()
214 extra_fds[0] = extra_fds[2] = new_map(); in check_fd_array_cnt__duplicated_maps()
217 extra_fds[1] = extra_fds[3] = new_map(); in check_fd_array_cnt__duplicated_maps()
253 extra_fds[0] = new_map(); in check_fd_array_cnt__referenced_maps_in_fd_array()
357 extra_fds[0] = new_map(); in check_fd_array_cnt__fd_array_with_trash()
406 extra_fds[i] = new_map(); in check_fd_array_cnt__fd_array_too_big()
/linux/drivers/pinctrl/freescale/
H A Dpinctrl-mxs.c67 struct pinctrl_map *new_map; in mxs_dt_node_to_map() local
95 new_map = kzalloc_objs(*new_map, new_num); in mxs_dt_node_to_map()
96 if (!new_map) in mxs_dt_node_to_map()
100 new_map[i].type = PIN_MAP_TYPE_MUX_GROUP; in mxs_dt_node_to_map()
101 new_map[i].data.mux.function = np->name; in mxs_dt_node_to_map()
110 new_map[i].data.mux.group = group; in mxs_dt_node_to_map()
121 new_map[i].type = PIN_MAP_TYPE_CONFIGS_GROUP; in mxs_dt_node_to_map()
122 new_map[i].data.configs.group_or_pin = purecfg ? np->name : in mxs_dt_node_to_map()
124 new_map[i].data.configs.configs = pconfig; in mxs_dt_node_to_map()
125 new_map[i].data.configs.num_configs = 1; in mxs_dt_node_to_map()
[all …]
H A Dpinctrl-imx-scmi.c63 struct pinctrl_map *new_map; in pinctrl_scmi_imx_dt_node_to_map() local
102 new_map = kmalloc_objs(struct pinctrl_map, map_num); in pinctrl_scmi_imx_dt_node_to_map()
103 if (!new_map) in pinctrl_scmi_imx_dt_node_to_map()
106 *map = new_map; in pinctrl_scmi_imx_dt_node_to_map()
148 new_map[i].type = PIN_MAP_TYPE_CONFIGS_PIN; in pinctrl_scmi_imx_dt_node_to_map()
149 new_map[i].data.configs.group_or_pin = pin_get_name(pctldev, pin_id); in pinctrl_scmi_imx_dt_node_to_map()
150 new_map[i].data.configs.configs = configs; in pinctrl_scmi_imx_dt_node_to_map()
151 new_map[i].data.configs.num_configs = ncfg; in pinctrl_scmi_imx_dt_node_to_map()
H A Dpinctrl-imx1-core.c228 struct pinctrl_map *new_map; in imx1_dt_node_to_map() local
247 new_map = kmalloc_objs(struct pinctrl_map, map_num); in imx1_dt_node_to_map()
248 if (!new_map) in imx1_dt_node_to_map()
251 *map = new_map; in imx1_dt_node_to_map()
257 kfree(new_map); in imx1_dt_node_to_map()
260 new_map[0].type = PIN_MAP_TYPE_MUX_GROUP; in imx1_dt_node_to_map()
261 new_map[0].data.mux.function = parent->name; in imx1_dt_node_to_map()
262 new_map[0].data.mux.group = np->name; in imx1_dt_node_to_map()
266 new_map++; in imx1_dt_node_to_map()
268 new_map[j].type = PIN_MAP_TYPE_CONFIGS_PIN; in imx1_dt_node_to_map()
[all …]
H A Dpinctrl-imx.c65 struct pinctrl_map *new_map; in imx_dt_node_to_map() local
91 new_map = kmalloc_objs(struct pinctrl_map, map_num); in imx_dt_node_to_map()
92 if (!new_map) in imx_dt_node_to_map()
95 *map = new_map; in imx_dt_node_to_map()
101 kfree(new_map); in imx_dt_node_to_map()
104 new_map[0].type = PIN_MAP_TYPE_MUX_GROUP; in imx_dt_node_to_map()
105 new_map[0].data.mux.function = parent->name; in imx_dt_node_to_map()
106 new_map[0].data.mux.group = np->name; in imx_dt_node_to_map()
110 new_map++; in imx_dt_node_to_map()
122 new_map[j].type = PIN_MAP_TYPE_CONFIGS_PIN; in imx_dt_node_to_map()
[all …]
/linux/drivers/md/
H A Ddm-ioctl.c53 struct dm_table *new_map; member
245 hc->new_map = NULL; in alloc_cell()
328 if (hc->new_map) in __hash_remove()
329 table = hc->new_map; in __hash_remove()
804 table = hc->new_map; in dm_get_inactive_table()
955 if (hc->new_map) in __find_device_hash_cell()
1155 struct dm_table *new_map, *old_map = NULL; in do_resume() local
1169 new_map = hc->new_map; in do_resume()
1170 hc->new_map = NULL; in do_resume()
1176 if (new_map) { in do_resume()
[all …]
H A Ddm-ima.h63 void dm_ima_measure_on_table_clear(struct mapped_device *md, bool new_map);
72 static inline void dm_ima_measure_on_table_clear(struct mapped_device *md, bool new_map) {} in dm_ima_measure_on_table_clear() argument
/linux/drivers/pinctrl/nuvoton/
H A Dpinctrl-ma35.c188 struct pinctrl_map *new_map; in ma35_pinctrl_dt_node_to_map_func() local
205 new_map = kzalloc_objs(*new_map, map_num); in ma35_pinctrl_dt_node_to_map_func()
206 if (!new_map) in ma35_pinctrl_dt_node_to_map_func()
209 *map = new_map; in ma35_pinctrl_dt_node_to_map_func()
218 new_map[0].type = PIN_MAP_TYPE_MUX_GROUP; in ma35_pinctrl_dt_node_to_map_func()
219 new_map[0].data.mux.function = parent->name; in ma35_pinctrl_dt_node_to_map_func()
220 new_map[0].data.mux.group = np->name; in ma35_pinctrl_dt_node_to_map_func()
223 new_map++; in ma35_pinctrl_dt_node_to_map_func()
225 new_map[i].type = PIN_MAP_TYPE_CONFIGS_PIN; in ma35_pinctrl_dt_node_to_map_func()
226 new_map[i].data.configs.group_or_pin = pin_get_name(pctldev, grp->grp.pins[i]); in ma35_pinctrl_dt_node_to_map_func()
[all …]
/linux/drivers/gpu/drm/vmwgfx/
H A Dvmwgfx_cotable.c409 struct ttm_bo_kmap_obj old_map, new_map; in vmw_cotable_resize() local
462 ret = ttm_bo_kmap(bo, i, 1, &new_map); in vmw_cotable_resize()
467 memcpy(ttm_kmap_obj_virtual(&new_map, &dummy), in vmw_cotable_resize()
470 ttm_bo_kunmap(&new_map); in vmw_cotable_resize()
/linux/drivers/remoteproc/
H A Dremoteproc_virtio.c31 const struct bus_dma_region *map = from->dma_range_map, *new_map, *r; in copy_dma_range_map() local
40 new_map = kmemdup(map, array_size(num_ranges + 1, sizeof(*map)), in copy_dma_range_map()
42 if (!new_map) in copy_dma_range_map()
44 to->dma_range_map = new_map; in copy_dma_range_map()
/linux/tools/perf/util/
H A Dmaps.c1283 int maps__merge_in(struct maps *kmaps, struct map *new_map) in maps__merge_in() argument
1301 first_after_ = first_ending_after(kmaps, new_map); in maps__merge_in()
1305 map__start(kmaps_maps_by_address[first_after_]) >= map__end(new_map)) { in maps__merge_in()
1308 return maps__insert(kmaps, new_map); in maps__merge_in()
1317 first_after_ = first_ending_after(kmaps, new_map); in maps__merge_in()
1322 map__start(kmaps_maps_by_address[first_after_]) >= map__end(new_map)) { in maps__merge_in()
1324 int ret = __maps__insert(kmaps, new_map); in maps__merge_in()
1352 __maps__insert(kmaps, new_map); in maps__merge_in()
H A Dmaps.h79 int maps__merge_in(struct maps *kmaps, struct map *new_map);
H A Dsymbol.c1367 struct map *new_map = new_node->map; in dso__load_kcore() local
1368 u64 new_size = map__size(new_map); in dso__load_kcore()
1370 if (!(stext >= map__start(new_map) && stext < map__end(new_map))) in dso__load_kcore()
1380 replacement_map = new_map; in dso__load_kcore()
1410 struct map *new_map = new_node->map; in dso__load_kcore() local
1415 if (!RC_CHK_EQUAL(new_map, replacement_map)) { in dso__load_kcore()
1421 if (maps__merge_in(kmaps, new_map)) { in dso__load_kcore()
/linux/drivers/nvdimm/
H A Dbtt.c490 ent.new_map = cpu_to_le32(arena->external_nlba + i); in btt_log_init()
553 log_newmap = ent_lba(le32_to_cpu(log_new.new_map)); in btt_freelist_init()
596 le32_to_cpu(log_new.new_map), 0, 0, 0); in btt_freelist_init()
607 return (ent->lba == 0) && (ent->old_map == 0) && (ent->new_map == 0) in ent_is_padding()
1220 u32 new_map; in btt_read_pg() local
1240 ret = btt_map_read(arena, premap, &new_map, &new_t, in btt_read_pg()
1245 if ((postmap == new_map) && (t_flag == new_t) && in btt_read_pg()
1249 postmap = new_map; in btt_read_pg()
1382 log.new_map = cpu_to_le32(new_postmap); in btt_write_pg()
H A Dbtt.h87 __le32 new_map; member
/linux/arch/powerpc/platforms/embedded6xx/
H A Dmpc10x.h150 uint new_map,
/linux/sound/usb/
H A Dfcp.c656 s16 *new_map __free(kfree) = in fcp_ioctl_set_meter_map()
658 if (!new_map) in fcp_ioctl_set_meter_map()
675 private->meter_level_map = new_map; in fcp_ioctl_set_meter_map()
678 new_map = NULL; in fcp_ioctl_set_meter_map()
/linux/kernel/bpf/
H A Dbpf_struct_ops.c1260 static int bpf_struct_ops_map_link_update(struct bpf_link *link, struct bpf_map *new_map, in bpf_struct_ops_map_link_update() argument
1269 st_map = container_of(new_map, struct bpf_struct_ops_map, map); in bpf_struct_ops_map_link_update()
1271 if (!bpf_struct_ops_valid_to_reg(new_map)) in bpf_struct_ops_map_link_update()
1300 bpf_map_inc(new_map); in bpf_struct_ops_map_link_update()
1301 rcu_assign_pointer(st_link->map, new_map); in bpf_struct_ops_map_link_update()
/linux/fs/hpfs/
H A Dalloc.c328 new_map: in hpfs_free_sectors()
348 goto new_map; in hpfs_free_sectors()

12