Home
last modified time | relevance | path

Searched refs:new_map (Results 1 – 25 of 30) 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()
893 struct uid_gid_map *new_map) in verify_root_map() argument
899 for (idx = 0; idx < new_map->nr_extents; idx++) { in verify_root_map()
900 if (new_map->nr_extents <= UID_GID_MAP_MAX_BASE_EXTENTS) in verify_root_map()
901 extent0 = &new_map->extent[idx]; in verify_root_map()
903 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.c196 struct pinctrl_map *new_map; in k230_dt_node_to_map() local
213 new_map = kcalloc(map_num, sizeof(*new_map), GFP_KERNEL); in k230_dt_node_to_map()
214 if (!new_map) in k230_dt_node_to_map()
216 *map = new_map; in k230_dt_node_to_map()
223 new_map[idx].type = PIN_MAP_TYPE_MUX_GROUP; in k230_dt_node_to_map()
224 new_map[idx].data.mux.group = grp->name; in k230_dt_node_to_map()
225 new_map[idx].data.mux.function = np_config->name; in k230_dt_node_to_map()
229 new_map[idx].type = PIN_MAP_TYPE_CONFIGS_PIN; in k230_dt_node_to_map()
230 new_map[idx].data.configs.group_or_pin = in k230_dt_node_to_map()
232 new_map[idx].data.configs.configs = in k230_dt_node_to_map()
[all …]
H A Dpinctrl-st.c811 struct pinctrl_map *new_map; in st_pctl_dt_node_to_map() local
822 new_map = devm_kcalloc(dev, map_num, sizeof(*new_map), GFP_KERNEL); in st_pctl_dt_node_to_map()
823 if (!new_map) in st_pctl_dt_node_to_map()
828 devm_kfree(dev, new_map); in st_pctl_dt_node_to_map()
832 *map = new_map; in st_pctl_dt_node_to_map()
834 new_map[0].type = PIN_MAP_TYPE_MUX_GROUP; in st_pctl_dt_node_to_map()
835 new_map[0].data.mux.function = parent->name; in st_pctl_dt_node_to_map()
836 new_map[0].data.mux.group = np->name; in st_pctl_dt_node_to_map()
840 new_map++; in st_pctl_dt_node_to_map()
842 new_map[i].type = PIN_MAP_TYPE_CONFIGS_PIN; in st_pctl_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 = kcalloc(map_num, sizeof(*new_map), GFP_KERNEL); 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()
124 if (!ASSERT_GE(map_fd, 0, "new_map")) in load_test_prog()
175 extra_fds[0] = new_map(); in check_fd_array_cnt__fd_array_ok()
176 if (!ASSERT_GE(extra_fds[0], 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()
179 if (!ASSERT_GE(extra_fds[1], 0, "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()
215 if (!ASSERT_GE(extra_fds[0], 0, "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()
[all...]
/linux/drivers/pinctrl/freescale/
H A Dpinctrl-mxs.c67 struct pinctrl_map *new_map; in mxs_dt_node_to_map() local
95 new_map = kcalloc(new_num, sizeof(*new_map), GFP_KERNEL); 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.c61 struct pinctrl_map *new_map; in pinctrl_scmi_imx_dt_node_to_map() local
98 new_map = kmalloc_array(map_num, sizeof(struct pinctrl_map), in pinctrl_scmi_imx_dt_node_to_map()
100 if (!new_map) in pinctrl_scmi_imx_dt_node_to_map()
103 *map = new_map; in pinctrl_scmi_imx_dt_node_to_map()
138 new_map[i].type = PIN_MAP_TYPE_CONFIGS_PIN; in pinctrl_scmi_imx_dt_node_to_map()
139 new_map[i].data.configs.group_or_pin = pin_get_name(pctldev, pin_id); in pinctrl_scmi_imx_dt_node_to_map()
140 new_map[i].data.configs.configs = configs; in pinctrl_scmi_imx_dt_node_to_map()
141 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_array(map_num, sizeof(struct pinctrl_map), in imx1_dt_node_to_map()
249 if (!new_map) in imx1_dt_node_to_map()
252 *map = new_map; in imx1_dt_node_to_map()
258 kfree(new_map); in imx1_dt_node_to_map()
261 new_map[0].type = PIN_MAP_TYPE_MUX_GROUP; in imx1_dt_node_to_map()
262 new_map[0].data.mux.function = parent->name; in imx1_dt_node_to_map()
263 new_map[0].data.mux.group = np->name; in imx1_dt_node_to_map()
267 new_map++; in imx1_dt_node_to_map()
269 new_map[j].type = PIN_MAP_TYPE_CONFIGS_PIN; in imx1_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 = kcalloc(map_num, sizeof(*new_map), GFP_KERNEL); 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/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.c1250 int maps__merge_in(struct maps *kmaps, struct map *new_map) in maps__merge_in() argument
1268 first_after_ = first_ending_after(kmaps, new_map); in maps__merge_in()
1272 map__start(kmaps_maps_by_address[first_after_]) >= map__end(new_map)) { in maps__merge_in()
1275 return maps__insert(kmaps, new_map); in maps__merge_in()
1284 first_after_ = first_ending_after(kmaps, new_map); in maps__merge_in()
1289 map__start(kmaps_maps_by_address[first_after_]) >= map__end(new_map)) { in maps__merge_in()
1291 int ret = __maps__insert(kmaps, new_map); in maps__merge_in()
1319 __maps__insert(kmaps, new_map); in maps__merge_in()
H A Dmaps.h75 int maps__merge_in(struct maps *kmaps, struct map *new_map);
H A Dsymbol.c1378 struct map *new_map = new_node->map; in dso__load_kcore() local
1379 u64 new_size = map__size(new_map); in dso__load_kcore()
1381 if (!(stext >= map__start(new_map) && stext < map__end(new_map))) in dso__load_kcore()
1391 replacement_map = new_map; in dso__load_kcore()
1421 struct map *new_map = new_node->map; in dso__load_kcore() local
1426 if (!RC_CHK_EQUAL(new_map, replacement_map)) { in dso__load_kcore()
1432 if (maps__merge_in(kmaps, new_map)) { in dso__load_kcore()
/linux/sound/usb/
H A Dfcp.c654 s16 *new_map __free(kfree) = NULL; in fcp_ioctl_set_meter_map()
658 new_map = kmalloc_array(map.map_size, sizeof(s16), GFP_KERNEL); in fcp_ioctl_set_meter_map()
659 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/drivers/pinctrl/samsung/
H A Dpinctrl-samsung.c83 struct pinctrl_map *new_map; in reserve_map() local
88 new_map = krealloc(*map, sizeof(*new_map) * new_num, GFP_KERNEL); in reserve_map()
89 if (!new_map) in reserve_map()
92 memset(new_map + old_num, 0, (new_num - old_num) * sizeof(*new_map)); in reserve_map()
94 *map = new_map; in reserve_map()
/linux/arch/powerpc/platforms/embedded6xx/
H A Dmpc10x.h150 uint new_map,
/linux/drivers/nvdimm/
H A Dbtt.h87 __le32 new_map; member
/linux/fs/hpfs/
H A Dalloc.c328 new_map: in hpfs_free_sectors()
348 goto new_map; in hpfs_free_sectors()
/linux/drivers/pinctrl/sunxi/
H A Dpinctrl-sunxi.c411 struct pinctrl_map *new_map; in sunxi_pctrl_dt_node_to_map() local
486 new_map = krealloc(*map, i * sizeof(struct pinctrl_map), GFP_KERNEL); in sunxi_pctrl_dt_node_to_map()
487 if (!new_map) { in sunxi_pctrl_dt_node_to_map()
492 *map = new_map; in sunxi_pctrl_dt_node_to_map()
/linux/Documentation/driver-api/nvdimm/
H A Dbtt.rst135 new_map The new postmap ABA. The map will up updated to reflect this
143 new_map' alternate new postmap entry

12