| /Linux-v5.15/net/netfilter/ |
| D | nf_conntrack_helper.c | 57 struct nf_conntrack_helper *helper; in __nf_ct_helper_find() local 65 hlist_for_each_entry_rcu(helper, &nf_ct_helper_hash[h], hnode) { in __nf_ct_helper_find() 66 if (nf_ct_tuple_src_mask_cmp(tuple, &helper->tuple, &mask)) in __nf_ct_helper_find() 67 return helper; in __nf_ct_helper_find() 127 void nf_conntrack_helper_put(struct nf_conntrack_helper *helper) in nf_conntrack_helper_put() argument 129 refcount_dec(&helper->refcnt); in nf_conntrack_helper_put() 130 module_put(helper->me); in nf_conntrack_helper_put() 186 void nf_nat_helper_put(struct nf_conntrack_helper *helper) in nf_nat_helper_put() argument 190 nat = nf_conntrack_nat_helper_find(helper->nat_mod_name); in nf_nat_helper_put() 236 struct nf_conntrack_helper *helper = NULL; in __nf_ct_try_assign_helper() local [all …]
|
| D | nfnetlink_cthelper.c | 35 struct nf_conntrack_helper helper; member 45 struct nf_conntrack_helper *helper; in nfnl_userspace_cthelper() local 52 helper = rcu_dereference(help->helper); in nfnl_userspace_cthelper() 53 if (helper == NULL) in nfnl_userspace_cthelper() 57 if ((helper->flags & in nfnl_userspace_cthelper() 63 return NF_QUEUE_NR(helper->queue_num) | NF_VERDICT_FLAG_QUEUE_BYPASS; in nfnl_userspace_cthelper() 103 if (help->helper->data_len == 0) in nfnl_cthelper_from_nlattr() 115 if (help->helper->data_len && in nfnl_cthelper_to_nlattr() 116 nla_put(skb, CTA_HELP_INFO, help->helper->data_len, &help->data)) in nfnl_cthelper_to_nlattr() 168 nfnl_cthelper_parse_expect_policy(struct nf_conntrack_helper *helper, in nfnl_cthelper_parse_expect_policy() argument [all …]
|
| D | xt_CT.c | 76 struct nf_conntrack_helper *helper; in xt_ct_set_helper() local 86 helper = nf_conntrack_helper_try_module_get(helper_name, par->family, in xt_ct_set_helper() 88 if (helper == NULL) { in xt_ct_set_helper() 95 nf_conntrack_helper_put(helper); in xt_ct_set_helper() 99 help->helper = helper; in xt_ct_set_helper() 182 if (info->helper[0]) { in xt_ct_tg_check() 183 if (strnlen(info->helper, sizeof(info->helper)) == sizeof(info->helper)) { in xt_ct_tg_check() 188 ret = xt_ct_set_helper(ct, info->helper, par); in xt_ct_tg_check() 212 nf_conntrack_helper_put(help->helper); in xt_ct_tg_check() 235 memcpy(info_v1.helper, info->helper, sizeof(info->helper)); in xt_ct_tg_check_v0() [all …]
|
| D | xt_helper.c | 29 const struct nf_conntrack_helper *helper; in helper_mt() local 42 helper = rcu_dereference(master_help->helper); in helper_mt() 43 if (!helper) in helper_mt() 49 ret ^= !strncmp(helper->name, info->name, in helper_mt() 50 strlen(helper->name)); in helper_mt()
|
| D | nf_conntrack_expect.c | 328 exp->helper = NULL; in nf_ct_expect_init() 389 struct nf_conntrack_helper *helper; in nf_ct_expect_insert() local 397 helper = rcu_dereference_protected(master_help->helper, in nf_ct_expect_insert() 399 if (helper) { in nf_ct_expect_insert() 401 helper->expect_policy[exp->class].timeout * HZ; in nf_ct_expect_insert() 439 struct nf_conntrack_helper *helper; in __nf_ct_expect_check() local 465 helper = rcu_dereference_protected(master_help->helper, in __nf_ct_expect_check() 467 if (helper) { in __nf_ct_expect_check() 468 p = &helper->expect_policy[expect->class]; in __nf_ct_expect_check() 629 struct nf_conntrack_helper *helper; in exp_seq_show() local [all …]
|
| D | nf_conntrack_netbios_ns.c | 46 static struct nf_conntrack_helper helper __read_mostly = { 61 return nf_conntrack_helper_register(&helper); in nf_conntrack_netbios_ns_init() 66 nf_conntrack_helper_unregister(&helper); in nf_conntrack_netbios_ns_fini()
|
| D | nf_conntrack_snmp.c | 53 static struct nf_conntrack_helper helper __read_mostly = { 66 return nf_conntrack_helper_register(&helper); in nf_conntrack_snmp_init() 71 nf_conntrack_helper_unregister(&helper); in nf_conntrack_snmp_fini()
|
| /Linux-v5.15/drivers/gpu/drm/rockchip/ |
| D | rockchip_drm_fbdev.c | 24 struct drm_fb_helper *helper = info->par; in rockchip_fbdev_mmap() local 25 struct rockchip_drm_private *private = to_drm_private(helper); in rockchip_fbdev_mmap() 39 static int rockchip_drm_fbdev_create(struct drm_fb_helper *helper, in rockchip_drm_fbdev_create() argument 42 struct rockchip_drm_private *private = to_drm_private(helper); in rockchip_drm_fbdev_create() 44 struct drm_device *dev = helper->dev; in rockchip_drm_fbdev_create() 69 fbi = drm_fb_helper_alloc_fbi(helper); in rockchip_drm_fbdev_create() 76 helper->fb = rockchip_drm_framebuffer_init(dev, &mode_cmd, in rockchip_drm_fbdev_create() 78 if (IS_ERR(helper->fb)) { in rockchip_drm_fbdev_create() 81 ret = PTR_ERR(helper->fb); in rockchip_drm_fbdev_create() 87 fb = helper->fb; in rockchip_drm_fbdev_create() [all …]
|
| /Linux-v5.15/drivers/gpu/drm/exynos/ |
| D | exynos_drm_fbdev.c | 39 struct drm_fb_helper *helper = info->par; in exynos_drm_fb_mmap() local 40 struct exynos_drm_fbdev *exynos_fbd = to_exynos_fbdev(helper); in exynos_drm_fb_mmap() 52 ret = dma_mmap_attrs(to_dma_dev(helper->dev), vma, exynos_gem->cookie, in exynos_drm_fb_mmap() 56 DRM_DEV_ERROR(to_dma_dev(helper->dev), "failed to mmap.\n"); in exynos_drm_fb_mmap() 72 static int exynos_drm_fbdev_update(struct drm_fb_helper *helper, in exynos_drm_fbdev_update() argument 77 struct drm_framebuffer *fb = helper->fb; in exynos_drm_fbdev_update() 81 fbi = drm_fb_helper_alloc_fbi(helper); in exynos_drm_fbdev_update() 83 DRM_DEV_ERROR(to_dma_dev(helper->dev), in exynos_drm_fbdev_update() 90 drm_fb_helper_fill_info(fbi, helper, sizes); in exynos_drm_fbdev_update() 102 static int exynos_drm_fbdev_create(struct drm_fb_helper *helper, in exynos_drm_fbdev_create() argument [all …]
|
| /Linux-v5.15/arch/mips/cavium-octeon/executive/ |
| D | Makefile | 14 cvmx-helper-board.o cvmx-helper.o cvmx-helper-xaui.o \ 15 cvmx-helper-rgmii.o cvmx-helper-sgmii.o cvmx-helper-npi.o \ 16 cvmx-helper-loop.o cvmx-helper-spi.o cvmx-helper-util.o \ 19 obj-y += cvmx-helper-errata.o cvmx-helper-jtag.o cvmx-boot-vector.o
|
| /Linux-v5.15/drivers/gpu/drm/msm/ |
| D | msm_fbdev.c | 47 struct drm_fb_helper *helper = (struct drm_fb_helper *)info->par; in msm_fbdev_mmap() local 48 struct msm_fbdev *fbdev = to_msm_fbdev(helper); in msm_fbdev_mmap() 54 static int msm_fbdev_create(struct drm_fb_helper *helper, in msm_fbdev_create() argument 57 struct msm_fbdev *fbdev = to_msm_fbdev(helper); in msm_fbdev_create() 58 struct drm_device *dev = helper->dev; in msm_fbdev_create() 97 fbi = drm_fb_helper_alloc_fbi(helper); in msm_fbdev_create() 107 helper->fb = fb; in msm_fbdev_create() 111 drm_fb_helper_fill_info(fbi, helper, sizes); in msm_fbdev_create() 146 struct drm_fb_helper *helper; in msm_fbdev_init() local 153 helper = &fbdev->base; in msm_fbdev_init() [all …]
|
| /Linux-v5.15/drivers/gpu/drm/omapdrm/ |
| D | omap_fbdev.c | 51 struct drm_fb_helper *helper = get_fb(fbi); in omap_fbdev_pan_display() local 52 struct omap_fbdev *fbdev = to_omap_fbdev(helper); in omap_fbdev_pan_display() 54 if (!helper) in omap_fbdev_pan_display() 63 struct omap_drm_private *priv = helper->dev->dev_private; in omap_fbdev_pan_display() 90 static int omap_fbdev_create(struct drm_fb_helper *helper, in omap_fbdev_create() argument 93 struct omap_fbdev *fbdev = to_omap_fbdev(helper); in omap_fbdev_create() 94 struct drm_device *dev = helper->dev; in omap_fbdev_create() 163 fbi = drm_fb_helper_alloc_fbi(helper); in omap_fbdev_create() 173 helper->fb = fb; in omap_fbdev_create() 177 drm_fb_helper_fill_info(fbi, helper, sizes); in omap_fbdev_create() [all …]
|
| /Linux-v5.15/drivers/net/wireless/marvell/libertas/ |
| D | firmware.c | 16 const struct firmware *helper, const struct firmware *mainfw) in lbs_fw_loaded() argument 23 priv->fw_callback(priv, ret, helper, mainfw); in lbs_fw_loaded() 99 if (!iter->helper) { in load_next_firmware_from_table() 111 do_load_firmware(priv, iter->helper, helper_firmware_cb); in load_next_firmware_from_table() 174 const struct firmware **helper, in lbs_get_firmware() argument 180 BUG_ON(helper == NULL); in lbs_get_firmware() 185 while (iter && iter->helper) { in lbs_get_firmware() 189 if (*helper == NULL) { in lbs_get_firmware() 190 ret = request_firmware(helper, iter->helper, dev); in lbs_get_firmware() 208 release_firmware(*helper); in lbs_get_firmware() [all …]
|
| /Linux-v5.15/drivers/gpu/drm/nouveau/ |
| D | nouveau_fbcon.c | 67 struct nouveau_drm *drm = nouveau_drm(fbcon->helper.dev); in nouveau_fbcon_fillrect() 99 struct nouveau_drm *drm = nouveau_drm(fbcon->helper.dev); in nouveau_fbcon_copyarea() 131 struct nouveau_drm *drm = nouveau_drm(fbcon->helper.dev); in nouveau_fbcon_imageblit() 163 struct nouveau_drm *drm = nouveau_drm(fbcon->helper.dev); in nouveau_fbcon_sync() 190 struct nouveau_drm *drm = nouveau_drm(fbcon->helper.dev); in nouveau_fbcon_open() 203 struct nouveau_drm *drm = nouveau_drm(fbcon->helper.dev); in nouveau_fbcon_release() 233 if (drm->fbcon && drm->fbcon->helper.fbdev) { in nouveau_fbcon_accel_save_disable() 234 drm->fbcon->saved_flags = drm->fbcon->helper.fbdev->flags; in nouveau_fbcon_accel_save_disable() 235 drm->fbcon->helper.fbdev->flags |= FBINFO_HWACCEL_DISABLED; in nouveau_fbcon_accel_save_disable() 243 if (drm->fbcon && drm->fbcon->helper.fbdev) { in nouveau_fbcon_accel_restore() [all …]
|
| /Linux-v5.15/drivers/gpu/drm/i915/display/ |
| D | intel_fbdev.c | 65 container_of(fb_helper, struct intel_fbdev, helper); in intel_fbdev_set_par() 79 container_of(fb_helper, struct intel_fbdev, helper); in intel_fbdev_blank() 94 container_of(fb_helper, struct intel_fbdev, helper); in intel_fbdev_pan_display() 115 static int intelfb_alloc(struct drm_fb_helper *helper, in intelfb_alloc() argument 119 container_of(helper, struct intel_fbdev, helper); in intelfb_alloc() 121 struct drm_device *dev = helper->dev; in intelfb_alloc() 172 static int intelfb_create(struct drm_fb_helper *helper, in intelfb_create() argument 176 container_of(helper, struct intel_fbdev, helper); in intelfb_create() 178 struct drm_device *dev = helper->dev; in intelfb_create() 208 ret = intelfb_alloc(helper, sizes); in intelfb_create() [all …]
|
| /Linux-v5.15/include/drm/ |
| D | drm_fb_helper.h | 91 int (*fb_probe)(struct drm_fb_helper *helper, 213 void drm_fb_helper_prepare(struct drm_device *dev, struct drm_fb_helper *helper, 215 int drm_fb_helper_init(struct drm_device *dev, struct drm_fb_helper *helper); 216 void drm_fb_helper_fini(struct drm_fb_helper *helper); 275 struct drm_fb_helper *helper, in drm_fb_helper_prepare() argument 281 struct drm_fb_helper *helper) in drm_fb_helper_init() argument 284 helper->dev = dev; in drm_fb_helper_init() 285 dev->fb_helper = helper; in drm_fb_helper_init() 290 static inline void drm_fb_helper_fini(struct drm_fb_helper *helper) in drm_fb_helper_fini() argument 292 if (helper && helper->dev) in drm_fb_helper_fini() [all …]
|
| /Linux-v5.15/drivers/gpu/drm/radeon/ |
| D | radeon_fb.c | 46 struct drm_fb_helper helper; /* must be first */ member 212 static int radeonfb_create(struct drm_fb_helper *helper, in radeonfb_create() argument 216 container_of(helper, struct radeon_fbdev, helper); in radeonfb_create() 245 info = drm_fb_helper_alloc_fbi(helper); in radeonfb_create() 263 rfbdev->helper.fb = fb; in radeonfb_create() 275 drm_fb_helper_fill_info(info, &rfbdev->helper, sizes); in radeonfb_create() 311 drm_fb_helper_unregister_fbi(&rfbdev->helper); in radeon_fbdev_destroy() 319 drm_fb_helper_fini(&rfbdev->helper); in radeon_fbdev_destroy() 352 drm_fb_helper_prepare(rdev->ddev, &rfbdev->helper, in radeon_fbdev_init() 355 ret = drm_fb_helper_init(rdev->ddev, &rfbdev->helper); in radeon_fbdev_init() [all …]
|
| /Linux-v5.15/tools/testing/selftests/arm64/pauth/ |
| D | Makefile | 15 TEST_GEN_FILES := pac_corruptor.o helper.o 27 $(OUTPUT)/helper.o: helper.c 34 $(OUTPUT)/exec_target: exec_target.c $(OUTPUT)/helper.o 37 $(OUTPUT)/pac: pac.c $(OUTPUT)/pac_corruptor.o $(OUTPUT)/helper.o
|
| /Linux-v5.15/scripts/ |
| D | bpf_doc.py | 201 helper = self.parse_helper() 202 self.helpers.append(helper) 229 def print_one(self, helper): argument 440 def print_proto(self, helper): argument 445 proto = helper.proto_break_down() 466 def print_one(self, helper): argument 467 self.print_proto(helper) 468 self.print_elem(helper) 648 def print_one(self, helper): argument 649 proto = helper.proto_break_down() [all …]
|
| /Linux-v5.15/drivers/gpu/drm/tegra/ |
| D | fb.c | 20 static inline struct tegra_fbdev *to_tegra_fbdev(struct drm_fb_helper *helper) in to_tegra_fbdev() argument 22 return container_of(helper, struct tegra_fbdev, base); in to_tegra_fbdev() 192 struct drm_fb_helper *helper = info->par; in tegra_fb_mmap() local 196 bo = tegra_fb_get_plane(helper->fb, 0); in tegra_fb_mmap() 214 static int tegra_fbdev_probe(struct drm_fb_helper *helper, in tegra_fbdev_probe() argument 217 struct tegra_fbdev *fbdev = to_tegra_fbdev(helper); in tegra_fbdev_probe() 218 struct tegra_drm *tegra = helper->dev->dev_private; in tegra_fbdev_probe() 219 struct drm_device *drm = helper->dev; in tegra_fbdev_probe() 245 info = drm_fb_helper_alloc_fbi(helper); in tegra_fbdev_probe() 262 helper->fb = fb; in tegra_fbdev_probe() [all …]
|
| /Linux-v5.15/drivers/gpu/drm/amd/amdgpu/ |
| D | amdgpu_fb.c | 197 static int amdgpufb_create(struct drm_fb_helper *helper, in amdgpufb_create() argument 200 struct amdgpu_fbdev *rfbdev = (struct amdgpu_fbdev *)helper; in amdgpufb_create() 228 info = drm_fb_helper_alloc_fbi(helper); in amdgpufb_create() 244 rfbdev->helper.fb = fb; in amdgpufb_create() 253 drm_fb_helper_fill_info(info, &rfbdev->helper, sizes); in amdgpufb_create() 290 drm_fb_helper_unregister_fbi(&rfbdev->helper); in amdgpu_fbdev_destroy() 300 drm_fb_helper_fini(&rfbdev->helper); in amdgpu_fbdev_destroy() 334 drm_fb_helper_prepare(adev_to_drm(adev), &rfbdev->helper, in amdgpu_fbdev_init() 337 ret = drm_fb_helper_init(adev_to_drm(adev), &rfbdev->helper); in amdgpu_fbdev_init() 347 drm_fb_helper_initial_config(&rfbdev->helper, bpp_sel); in amdgpu_fbdev_init() [all …]
|
| /Linux-v5.15/tools/lib/traceevent/Documentation/ |
| D | libtraceevent-reg_print_func.txt | 7 Registers / Unregisters a helper function. 32 Some events may have helper functions in the print format arguments. 36 The _tep_register_print_function()_ registers such helper function. The _tep_ 38 to the helper function. The _ret_type_ argument is the return type of the 39 helper function, value from the _tep_func_arg_type_ enum. The _name_ is the name 40 of the helper function, as seen in the print format arguments. The _..._ is a 44 The _tep_unregister_print_function()_ unregisters a helper function, previously 47 when the helper function was registered. 49 The _tep_func_handler_ is the type of the helper function. The _s_ argument is 51 The _args_ is a list of arguments, defined when the helper function was [all …]
|
| /Linux-v5.15/drivers/gpu/drm/ |
| D | drm_fb_helper.c | 156 struct drm_fb_helper *helper = info->par; in drm_fb_helper_debug_enter() local 160 list_for_each_entry(helper, &kernel_fb_helper_list, kernel_fb_list) { in drm_fb_helper_debug_enter() 161 mutex_lock(&helper->client.modeset_mutex); in drm_fb_helper_debug_enter() 162 drm_client_for_each_modeset(mode_set, &helper->client) { in drm_fb_helper_debug_enter() 179 mutex_unlock(&helper->client.modeset_mutex); in drm_fb_helper_debug_enter() 192 struct drm_fb_helper *helper = info->par; in drm_fb_helper_debug_leave() local 193 struct drm_client_dev *client = &helper->client; in drm_fb_helper_debug_leave() 194 struct drm_device *dev = helper->dev; in drm_fb_helper_debug_leave() 287 struct drm_fb_helper *helper; in drm_fb_helper_restore_work_fn() local 290 list_for_each_entry(helper, &kernel_fb_helper_list, kernel_fb_list) { in drm_fb_helper_restore_work_fn() [all …]
|
| /Linux-v5.15/tools/testing/selftests/bpf/ |
| D | test_bpftool.py | 152 for helper in helpers: 153 full_set.add(helper) 156 for helper in helpers: 157 not_full_set.add(helper)
|
| /Linux-v5.15/include/net/netfilter/ |
| D | nf_conntrack_helper.h | 72 struct nf_conntrack_helper __rcu *helper; member 92 void nf_conntrack_helper_put(struct nf_conntrack_helper *helper); 94 void nf_ct_helper_init(struct nf_conntrack_helper *helper, 179 void nf_nat_helper_put(struct nf_conntrack_helper *helper);
|