Home
last modified time | relevance | path

Searched refs:GFP_KERNEL (Results 1 – 25 of 5610) sorted by relevance

12345678910>>...225

/Linux-v4.19/mm/
Dkmemleak-test.c55 pr_info("kmalloc(32) = %p\n", kmalloc(32, GFP_KERNEL)); in kmemleak_test_init()
56 pr_info("kmalloc(32) = %p\n", kmalloc(32, GFP_KERNEL)); in kmemleak_test_init()
57 pr_info("kmalloc(1024) = %p\n", kmalloc(1024, GFP_KERNEL)); in kmemleak_test_init()
58 pr_info("kmalloc(1024) = %p\n", kmalloc(1024, GFP_KERNEL)); in kmemleak_test_init()
59 pr_info("kmalloc(2048) = %p\n", kmalloc(2048, GFP_KERNEL)); in kmemleak_test_init()
60 pr_info("kmalloc(2048) = %p\n", kmalloc(2048, GFP_KERNEL)); in kmemleak_test_init()
61 pr_info("kmalloc(4096) = %p\n", kmalloc(4096, GFP_KERNEL)); in kmemleak_test_init()
62 pr_info("kmalloc(4096) = %p\n", kmalloc(4096, GFP_KERNEL)); in kmemleak_test_init()
65 kmem_cache_alloc(files_cachep, GFP_KERNEL)); in kmemleak_test_init()
67 kmem_cache_alloc(files_cachep, GFP_KERNEL)); in kmemleak_test_init()
[all …]
/Linux-v4.19/lib/
Dtest_kasan.c36 ptr = kmalloc(size, GFP_KERNEL); in kmalloc_oob_right()
52 ptr = kmalloc(size, GFP_KERNEL); in kmalloc_oob_left()
68 ptr = kmalloc_node(size, GFP_KERNEL, 0); in kmalloc_node_oob_right()
88 ptr = kmalloc(size, GFP_KERNEL); in kmalloc_pagealloc_oob_right()
104 ptr = kmalloc(size, GFP_KERNEL); in kmalloc_pagealloc_uaf()
120 ptr = kmalloc(size, GFP_KERNEL); in kmalloc_pagealloc_invalid_free()
138 ptr = kmalloc(size, GFP_KERNEL); in kmalloc_large_oob_right()
155 ptr1 = kmalloc(size1, GFP_KERNEL); in kmalloc_oob_krealloc_more()
156 ptr2 = krealloc(ptr1, size2, GFP_KERNEL); in kmalloc_oob_krealloc_more()
174 ptr1 = kmalloc(size1, GFP_KERNEL); in kmalloc_oob_krealloc_less()
[all …]
Dtest_ida.c36 IDA_BUG_ON(ida, ida_alloc(ida, GFP_KERNEL) != i); in ida_check_alloc()
41 id = ida_alloc(ida, GFP_KERNEL); in ida_check_alloc()
50 IDA_BUG_ON(ida, ida_alloc_min(ida, 5000, GFP_KERNEL) != 10001); in ida_check_alloc()
59 IDA_BUG_ON(ida, ida_alloc_min(ida, base, GFP_KERNEL) != base); in ida_check_destroy_1()
89 IDA_BUG_ON(ida, ida_alloc_min(ida, base, GFP_KERNEL) != in ida_check_leaf()
96 IDA_BUG_ON(ida, ida_alloc(ida, GFP_KERNEL) != 0); in ida_check_leaf()
114 IDA_BUG_ON(ida, ida_alloc_min(ida, base, GFP_KERNEL) != in ida_check_max()
117 IDA_BUG_ON(ida, ida_alloc_min(ida, base, GFP_KERNEL) != in ida_check_max()
132 IDA_BUG_ON(ida, ida_alloc_min(ida, i + 1, GFP_KERNEL) != i + 1); in ida_check_conv()
134 GFP_KERNEL) != i + BITS_PER_LONG); in ida_check_conv()
[all …]
/Linux-v4.19/tools/testing/radix-tree/
Didr-test.c46 assert(idr_alloc_cyclic(&idr, DUMMY_PTR, 0, 0x4000, GFP_KERNEL) == 0); in idr_alloc_test()
47 assert(idr_alloc_cyclic(&idr, DUMMY_PTR, 0x3ffd, 0x4000, GFP_KERNEL) == 0x3ffd); in idr_alloc_test()
60 id = idr_alloc_cyclic(&idr, item, 1, 0x4000, GFP_KERNEL); in idr_alloc_test()
72 idr_alloc(&idr, (void *)-1, 10, 11, GFP_KERNEL); in idr_replace_test()
91 assert(idr_alloc(&idr, NULL, 0, 0, GFP_KERNEL) == 0); in idr_null_test()
96 assert(idr_alloc(&idr, NULL, 0, 0, GFP_KERNEL) == 0); in idr_null_test()
102 assert(idr_alloc(&idr, NULL, 0, 0, GFP_KERNEL) == i); in idr_null_test()
110 assert(idr_alloc(&idr, NULL, 0, 0, GFP_KERNEL) == 5); in idr_null_test()
122 assert(idr_alloc(&idr, NULL, 0, 0, GFP_KERNEL) == 0); in idr_null_test()
131 assert(idr_alloc(&idr, NULL, 1, 0, GFP_KERNEL) == i); in idr_null_test()
[all …]
/Linux-v4.19/drivers/misc/lkdtm/
Dheap.c18 u32 *data = kmalloc(len, GFP_KERNEL); in lkdtm_OVERWRITE_ALLOCATION()
37 base = kmalloc(len, GFP_KERNEL); in lkdtm_WRITE_AFTER_FREE()
46 again = kmalloc(len, GFP_KERNEL); in lkdtm_WRITE_AFTER_FREE()
63 base = kmalloc(len, GFP_KERNEL); in lkdtm_READ_AFTER_FREE()
69 val = kmalloc(len, GFP_KERNEL); in lkdtm_READ_AFTER_FREE()
96 unsigned long p = __get_free_page(GFP_KERNEL); in lkdtm_WRITE_BUDDY_AFTER_FREE()
109 p = __get_free_page(GFP_KERNEL); in lkdtm_WRITE_BUDDY_AFTER_FREE()
116 unsigned long p = __get_free_page(GFP_KERNEL); in lkdtm_READ_BUDDY_AFTER_FREE()
125 val = kmalloc(1024, GFP_KERNEL); in lkdtm_READ_BUDDY_AFTER_FREE()
/Linux-v4.19/drivers/net/wireless/ti/wl1251/
Dacx.c20 rates = kzalloc(sizeof(*rates), GFP_KERNEL); in wl1251_acx_frame_rates()
49 mac = kzalloc(sizeof(*mac), GFP_KERNEL); in wl1251_acx_station_id()
69 default_key = kzalloc(sizeof(*default_key), GFP_KERNEL); in wl1251_acx_default_key()
97 wake_up = kzalloc(sizeof(*wake_up), GFP_KERNEL); in wl1251_acx_wake_up_conditions()
123 auth = kzalloc(sizeof(*auth), GFP_KERNEL); in wl1251_acx_sleep_auth()
142 rev = kzalloc(sizeof(*rev), GFP_KERNEL); in wl1251_acx_fw_version()
177 acx = kzalloc(sizeof(*acx), GFP_KERNEL); in wl1251_acx_tx_power()
201 feature = kzalloc(sizeof(*feature), GFP_KERNEL); in wl1251_acx_feature_cfg()
243 params = kzalloc(sizeof(*params), GFP_KERNEL); in wl1251_acx_data_path_params()
289 acx = kzalloc(sizeof(*acx), GFP_KERNEL); in wl1251_acx_rx_msdu_life_time()
[all …]
/Linux-v4.19/drivers/hwmon/
Diio_hwmon.c82 st = devm_kzalloc(dev, sizeof(*st), GFP_KERNEL); in iio_hwmon_probe()
94 GFP_KERNEL); in iio_hwmon_probe()
99 a = devm_kzalloc(dev, sizeof(*a), GFP_KERNEL); in iio_hwmon_probe()
110 a->dev_attr.attr.name = devm_kasprintf(dev, GFP_KERNEL, in iio_hwmon_probe()
115 a->dev_attr.attr.name = devm_kasprintf(dev, GFP_KERNEL, in iio_hwmon_probe()
120 a->dev_attr.attr.name = devm_kasprintf(dev, GFP_KERNEL, in iio_hwmon_probe()
125 a->dev_attr.attr.name = devm_kasprintf(dev, GFP_KERNEL, in iio_hwmon_probe()
144 sname = devm_kstrdup(dev, name, GFP_KERNEL); in iio_hwmon_probe()
/Linux-v4.19/fs/jffs2/
Dmalloc.c116 ret = kmalloc(sizeof(struct jffs2_full_dirent) + namesize, GFP_KERNEL); in jffs2_alloc_full_dirent()
130 ret = kmem_cache_alloc(full_dnode_slab, GFP_KERNEL); in jffs2_alloc_full_dnode()
144 ret = kmem_cache_alloc(raw_dirent_slab, GFP_KERNEL); in jffs2_alloc_raw_dirent()
158 ret = kmem_cache_alloc(raw_inode_slab, GFP_KERNEL); in jffs2_alloc_raw_inode()
172 ret = kmem_cache_alloc(tmp_dnode_info_slab, GFP_KERNEL); in jffs2_alloc_tmp_dnode_info()
188 ret = kmem_cache_alloc(raw_node_ref_slab, GFP_KERNEL); in jffs2_alloc_refblock()
251 ret = kmem_cache_alloc(node_frag_slab, GFP_KERNEL); in jffs2_alloc_node_frag()
265 ret = kmem_cache_alloc(inode_cache_slab, GFP_KERNEL); in jffs2_alloc_inode_cache()
280 xd = kmem_cache_zalloc(xattr_datum_cache, GFP_KERNEL); in jffs2_alloc_xattr_datum()
300 ref = kmem_cache_zalloc(xattr_ref_cache, GFP_KERNEL); in jffs2_alloc_xattr_ref()
/Linux-v4.19/drivers/net/wireless/ti/wlcore/
Dacx.c45 wake_up = kzalloc(sizeof(*wake_up), GFP_KERNEL); in wl1271_acx_wake_up_conditions()
74 auth = kzalloc(sizeof(*auth), GFP_KERNEL); in wl1271_acx_sleep_auth()
107 acx = kzalloc(sizeof(*acx), GFP_KERNEL); in wl1271_acx_tx_power()
134 feature = kzalloc(sizeof(*feature), GFP_KERNEL); in wl1271_acx_feature_cfg()
179 acx = kzalloc(sizeof(*acx), GFP_KERNEL); in wl1271_acx_rx_msdu_life_time()
206 slot = kzalloc(sizeof(*slot), GFP_KERNEL); in wl1271_acx_slot()
235 acx = kzalloc(sizeof(*acx), GFP_KERNEL); in wl1271_acx_group_address_tbl()
265 rx_timeout = kzalloc(sizeof(*rx_timeout), GFP_KERNEL); in wl1271_acx_service_period_timeout()
305 rts = kzalloc(sizeof(*rts), GFP_KERNEL); in wl1271_acx_rts_threshold()
333 dco = kzalloc(sizeof(*dco), GFP_KERNEL); in wl1271_acx_dco_itrim_params()
[all …]
/Linux-v4.19/drivers/gpu/drm/i915/selftests/
Di915_sw_fence.c50 fence = kmalloc(sizeof(*fence), GFP_KERNEL); in alloc_fence()
109 if (i915_sw_fence_await_sw_fence_gfp(A, A, GFP_KERNEL) != -EINVAL) { in test_dag()
120 i915_sw_fence_await_sw_fence_gfp(A, B, GFP_KERNEL); in test_dag()
121 if (i915_sw_fence_await_sw_fence_gfp(B, A, GFP_KERNEL) != -EINVAL) { in test_dag()
132 if (i915_sw_fence_await_sw_fence_gfp(B, C, GFP_KERNEL) == -EINVAL) { in test_dag()
136 if (i915_sw_fence_await_sw_fence_gfp(C, B, GFP_KERNEL) != -EINVAL) { in test_dag()
140 if (i915_sw_fence_await_sw_fence_gfp(C, A, GFP_KERNEL) != -EINVAL) { in test_dag()
144 if (i915_sw_fence_await_sw_fence_gfp(A, C, GFP_KERNEL) == -EINVAL) { in test_dag()
190 ret = i915_sw_fence_await_sw_fence_gfp(A, B, GFP_KERNEL); in test_AB()
245 ret = i915_sw_fence_await_sw_fence_gfp(A, B, GFP_KERNEL); in test_ABC()
[all …]
/Linux-v4.19/drivers/soc/ux500/
Dux500-soc-id.c128 return kasprintf(GFP_KERNEL, "DB%4x", dbx500_id.partnumber); in ux500_get_machine()
133 return kasprintf(GFP_KERNEL, "ux500"); in ux500_get_family()
141 return kasprintf(GFP_KERNEL, "%s", "ED"); in ux500_get_revision()
143 return kasprintf(GFP_KERNEL, "%d.%d", in ux500_get_revision()
146 return kasprintf(GFP_KERNEL, "%s", "Unknown"); in ux500_get_revision()
172 retstr = kasprintf(GFP_KERNEL, "%08x%08x%08x%08x%08x", in db8500_read_soc_id()
205 soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL); in ux500_soc_device_init()
/Linux-v4.19/drivers/usb/misc/
Duss720.c262 if (get_1284_register(pp, 6, &reg, GFP_KERNEL)) in change_mode()
282 if (get_1284_register(pp, 6, &reg, GFP_KERNEL)) in change_mode()
296 if (set_1284_register(pp, 6, m << 5, GFP_KERNEL)) in change_mode()
298 if (get_1284_register(pp, 6, &reg, GFP_KERNEL)) in change_mode()
310 if (get_1284_register(pp, 1, &stat, GFP_KERNEL)) in clear_epp_timeout()
336 set_1284_register(pp, 0, d, GFP_KERNEL); in parport_uss720_write_data()
343 if (get_1284_register(pp, 0, &ret, GFP_KERNEL)) in parport_uss720_read_data()
353 if (set_1284_register(pp, 2, d, GFP_KERNEL)) in parport_uss720_write_control()
393 if (set_1284_register(pp, 2, d, GFP_KERNEL)) in parport_uss720_disable_irq()
404 if (set_1284_register(pp, 2, d, GFP_KERNEL)) in parport_uss720_enable_irq()
[all …]
/Linux-v4.19/drivers/net/wireless/ti/wl18xx/
Dacx.c40 bitmap_conf = kzalloc(sizeof(*bitmap_conf), GFP_KERNEL); in wl18xx_acx_host_if_cfg_bitmap()
71 acx = kzalloc(sizeof(*acx), GFP_KERNEL); in wl18xx_acx_set_checksum_state()
97 acx = kzalloc(sizeof(*acx), GFP_KERNEL); in wl18xx_acx_clear_statistics()
122 acx = kzalloc(sizeof(*acx), GFP_KERNEL); in wl18xx_acx_peer_ht_operation_mode()
163 acx = kzalloc(sizeof(*acx), GFP_KERNEL); in wl18xx_acx_set_peer_cap()
209 acx = kzalloc(sizeof(*acx), GFP_KERNEL); in wl18xx_acx_interrupt_notify_config()
236 acx = kzalloc(sizeof(*acx), GFP_KERNEL); in wl18xx_acx_rx_ba_filter()
264 acx = kzalloc(sizeof(*acx), GFP_KERNEL); in wl18xx_acx_ap_sleep()
294 acx = kzalloc(sizeof(*acx), GFP_KERNEL); in wl18xx_acx_dynamic_fw_traces()
322 acx = kzalloc(sizeof(*acx), GFP_KERNEL); in wl18xx_acx_time_sync_cfg()
Dcmd.c39 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); in wl18xx_cmd_channel_switch()
95 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); in wl18xx_cmd_smart_config_start()
122 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); in wl18xx_cmd_smart_config_stop()
154 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); in wl18xx_cmd_smart_config_set_group_key()
184 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); in wl18xx_cmd_set_cac()
215 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); in wl18xx_cmd_radar_detection_debug()
241 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); in wl18xx_cmd_dfs_master_restart()
/Linux-v4.19/scripts/coccinelle/locks/
Dcall_kern.cocci1 /// Find functions that refer to GFP_KERNEL but are called with locks held.
2 //# The proposed change of converting the GFP_KERNEL is not necessarily the
34 GFP_KERNEL@p
77 - GFP_KERNEL@p
84 * GFP_KERNEL@p
95 cocci.print_secs("GFP_KERNEL",p)
104 msg = "ERROR: function %s called on line %s inside lock on line %s but uses GFP_KERNEL" % (fn,p2[0]…
/Linux-v4.19/drivers/thermal/
Duser_space.c43 thermal_prop[0] = kasprintf(GFP_KERNEL, "NAME=%s", tz->type); in notify_user_space()
44 thermal_prop[1] = kasprintf(GFP_KERNEL, "TEMP=%d", tz->temperature); in notify_user_space()
45 thermal_prop[2] = kasprintf(GFP_KERNEL, "TRIP=%d", trip); in notify_user_space()
46 thermal_prop[3] = kasprintf(GFP_KERNEL, "EVENT=%d", tz->notify_event); in notify_user_space()
/Linux-v4.19/drivers/infiniband/hw/mlx5/
Dmad.c220 out_cnt = kvzalloc(sz, GFP_KERNEL); in process_pma_cmd()
233 out_cnt = kvzalloc(sz, GFP_KERNEL); in process_pma_cmd()
292 in_mad = kzalloc(sizeof(*in_mad), GFP_KERNEL); in mlx5_query_ext_port_caps()
293 out_mad = kmalloc(sizeof(*out_mad), GFP_KERNEL); in mlx5_query_ext_port_caps()
320 in_mad = kzalloc(sizeof(*in_mad), GFP_KERNEL); in mlx5_query_mad_ifc_smp_attr_node_info()
340 out_mad = kmalloc(sizeof(*out_mad), GFP_KERNEL); in mlx5_query_mad_ifc_system_image_guid()
362 out_mad = kmalloc(sizeof(*out_mad), GFP_KERNEL); in mlx5_query_mad_ifc_max_pkeys()
384 out_mad = kmalloc(sizeof(*out_mad), GFP_KERNEL); in mlx5_query_mad_ifc_vendor_id()
406 in_mad = kzalloc(sizeof(*in_mad), GFP_KERNEL); in mlx5_query_mad_ifc_node_desc()
407 out_mad = kmalloc(sizeof(*out_mad), GFP_KERNEL); in mlx5_query_mad_ifc_node_desc()
[all …]
/Linux-v4.19/sound/soc/
Dsoc-utils.c66 full_name = kasprintf(GFP_KERNEL, "%s %s", component->name_prefix, pin); in snd_soc_component_enable_pin()
88 full_name = kasprintf(GFP_KERNEL, "%s %s", component->name_prefix, pin); in snd_soc_component_enable_pin_unlocked()
110 full_name = kasprintf(GFP_KERNEL, "%s %s", component->name_prefix, pin); in snd_soc_component_disable_pin()
132 full_name = kasprintf(GFP_KERNEL, "%s %s", component->name_prefix, pin); in snd_soc_component_disable_pin_unlocked()
154 full_name = kasprintf(GFP_KERNEL, "%s %s", component->name_prefix, pin); in snd_soc_component_nc_pin()
176 full_name = kasprintf(GFP_KERNEL, "%s %s", component->name_prefix, pin); in snd_soc_component_nc_pin_unlocked()
198 full_name = kasprintf(GFP_KERNEL, "%s %s", component->name_prefix, pin); in snd_soc_component_get_pin_status()
220 full_name = kasprintf(GFP_KERNEL, "%s %s", component->name_prefix, pin); in snd_soc_component_force_enable_pin()
243 full_name = kasprintf(GFP_KERNEL, "%s %s", component->name_prefix, pin); in snd_soc_component_force_enable_pin_unlocked()
/Linux-v4.19/drivers/soundwire/
Dmipi_disco.c67 sizeof(*prop->freq), GFP_KERNEL); in sdw_master_read_prop()
94 sizeof(*prop->clk_gears), GFP_KERNEL); in sdw_master_read_prop()
140 GFP_KERNEL); in sdw_slave_read_dp0()
198 sizeof(*dpn[i].words), GFP_KERNEL); in sdw_slave_read_dpn()
237 sizeof(*dpn[i].ch), GFP_KERNEL); in sdw_slave_read_dpn()
254 GFP_KERNEL); in sdw_slave_read_dpn()
351 sizeof(*prop->dp0_prop), GFP_KERNEL); in sdw_slave_read_prop()
367 sizeof(*prop->src_dpn_prop), GFP_KERNEL); in sdw_slave_read_prop()
377 sizeof(*prop->sink_dpn_prop), GFP_KERNEL); in sdw_slave_read_prop()
391 sizeof(*slave->port_ready), GFP_KERNEL); in sdw_slave_read_prop()
/Linux-v4.19/arch/ia64/include/asm/
Dpgalloc.h28 return quicklist_alloc(0, GFP_KERNEL, NULL); in pgd_alloc()
45 return quicklist_alloc(0, GFP_KERNEL, NULL); in pud_alloc_one()
63 return quicklist_alloc(0, GFP_KERNEL, NULL); in pmd_alloc_one()
91 pg = quicklist_alloc(0, GFP_KERNEL, NULL); in pte_alloc_one()
105 return quicklist_alloc(0, GFP_KERNEL, NULL); in pte_alloc_one_kernel()
/Linux-v4.19/drivers/soc/fsl/
Dguts.c143 guts = devm_kzalloc(dev, sizeof(*guts), GFP_KERNEL); in fsl_guts_probe()
160 soc_dev_attr.machine = devm_kstrdup(dev, machine, GFP_KERNEL); in fsl_guts_probe()
165 soc_dev_attr.family = devm_kasprintf(dev, GFP_KERNEL, in fsl_guts_probe()
168 soc_dev_attr.family = devm_kasprintf(dev, GFP_KERNEL, "QorIQ"); in fsl_guts_probe()
172 soc_dev_attr.soc_id = devm_kasprintf(dev, GFP_KERNEL, in fsl_guts_probe()
176 soc_dev_attr.revision = devm_kasprintf(dev, GFP_KERNEL, "%d.%d", in fsl_guts_probe()
/Linux-v4.19/net/bluetooth/
Decdh_helper.c69 tmp = kmalloc(64, GFP_KERNEL); in compute_ecdh_secret()
73 req = kpp_request_alloc(tfm, GFP_KERNEL); in compute_ecdh_secret()
132 tmp = kmalloc(32, GFP_KERNEL); in set_ecdh_privkey()
141 buf = kmalloc(buf_len, GFP_KERNEL); in set_ecdh_privkey()
176 tmp = kmalloc(64, GFP_KERNEL); in generate_ecdh_public_key()
180 req = kpp_request_alloc(tfm, GFP_KERNEL); in generate_ecdh_public_key()
/Linux-v4.19/drivers/bluetooth/
Dbpa10x.c145 urb = usb_alloc_urb(0, GFP_KERNEL); in bpa10x_submit_intr_urb()
149 buf = kmalloc(size, GFP_KERNEL); in bpa10x_submit_intr_urb()
164 err = usb_submit_urb(urb, GFP_KERNEL); in bpa10x_submit_intr_urb()
185 urb = usb_alloc_urb(0, GFP_KERNEL); in bpa10x_submit_bulk_urb()
189 buf = kmalloc(size, GFP_KERNEL); in bpa10x_submit_bulk_urb()
204 err = usb_submit_urb(urb, GFP_KERNEL); in bpa10x_submit_bulk_urb()
292 urb = usb_alloc_urb(0, GFP_KERNEL); in bpa10x_send_frame()
301 dr = kmalloc(sizeof(*dr), GFP_KERNEL); in bpa10x_send_frame()
346 err = usb_submit_urb(urb, GFP_KERNEL); in bpa10x_send_frame()
388 data = devm_kzalloc(&intf->dev, sizeof(*data), GFP_KERNEL); in bpa10x_probe()
/Linux-v4.19/drivers/net/ethernet/mellanox/mlx5/core/
Dvport.c166 out = kvzalloc(outlen, GFP_KERNEL); in mlx5_query_nic_vport_mac_address()
191 in = kvzalloc(inlen, GFP_KERNEL); in mlx5_modify_nic_vport_mac_address()
223 out = kvzalloc(outlen, GFP_KERNEL); in mlx5_query_nic_vport_mtu()
243 in = kvzalloc(inlen, GFP_KERNEL); in mlx5_modify_nic_vport_mtu()
287 out = kzalloc(out_sz, GFP_KERNEL); in mlx5_query_nic_vport_mac_list()
345 in = kzalloc(in_sz, GFP_KERNEL); in mlx5_modify_nic_vport_mac_list()
401 out = kzalloc(out_sz, GFP_KERNEL); in mlx5_query_nic_vport_vlans()
457 in = kzalloc(in_sz, GFP_KERNEL); in mlx5_modify_nic_vport_vlans()
493 out = kvzalloc(outlen, GFP_KERNEL); in mlx5_query_nic_vport_system_image_guid()
513 out = kvzalloc(outlen, GFP_KERNEL); in mlx5_query_nic_vport_node_guid()
[all …]
/Linux-v4.19/drivers/s390/cio/
Dairq.c43 airq->lsi_ptr = kzalloc(1, GFP_KERNEL); in register_adapter_interrupt()
128 iv = kzalloc(sizeof(*iv), GFP_KERNEL); in airq_iv_create()
133 iv->vector = kzalloc(size, GFP_KERNEL); in airq_iv_create()
137 iv->avail = kmalloc(size, GFP_KERNEL); in airq_iv_create()
145 iv->bitlock = kzalloc(size, GFP_KERNEL); in airq_iv_create()
151 iv->ptr = kzalloc(size, GFP_KERNEL); in airq_iv_create()
157 iv->data = kzalloc(size, GFP_KERNEL); in airq_iv_create()

12345678910>>...225