Searched refs:helper (Results 1 - 25 of 115) sorted by relevance

12345

/linux-master/arch/mips/cavium-octeon/executive/
H A DMakefile14 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
[all...]
H A Dcvmx-helper-errata.c31 * contains functions called by cvmx-helper to workaround known
40 #include <asm/octeon/cvmx-helper-jtag.h>
/linux-master/tools/testing/selftests/bpf/benchs/
H A Drun_bench_strncmp.sh9 for b in no-helper helper; do
/linux-master/arch/mips/include/asm/octeon/
H A Dcvmx-helper.h64 #include <asm/octeon/cvmx-helper-errata.h>
65 #include <asm/octeon/cvmx-helper-loop.h>
66 #include <asm/octeon/cvmx-helper-npi.h>
67 #include <asm/octeon/cvmx-helper-rgmii.h>
68 #include <asm/octeon/cvmx-helper-sgmii.h>
69 #include <asm/octeon/cvmx-helper-spi.h>
70 #include <asm/octeon/cvmx-helper-util.h>
71 #include <asm/octeon/cvmx-helper-xaui.h>
H A Dcvmx-helper-board.h31 * network ports from the rest of the cvmx-helper files.
37 #include <asm/octeon/cvmx-helper.h>
/linux-master/drivers/pmdomain/actions/
H A DMakefile2 obj-$(CONFIG_OWL_PM_DOMAINS_HELPER) += owl-sps-helper.o
/linux-master/net/netfilter/
H A Dnfnetlink_cthelper.c35 struct nf_conntrack_helper helper; member in struct:nfnl_cthelper
45 struct nf_conntrack_helper *helper; local
52 helper = rcu_dereference(help->helper);
53 if (helper == NULL)
56 /* This is a user-space helper not yet configured, skip. */
57 if ((helper->flags &
62 /* If the user-space helper is not available, don't block traffic. */
63 return NF_QUEUE_NR(helper->queue_num) | NF_VERDICT_FLAG_QUEUE_BYPASS;
99 const struct nf_conntrack_helper *helper; local
116 const struct nf_conntrack_helper *helper; local
172 nfnl_cthelper_parse_expect_policy(struct nf_conntrack_helper *helper, const struct nlattr *attr) argument
223 struct nf_conntrack_helper *helper; local
319 nfnl_cthelper_update_policy_all(struct nlattr *tb[], struct nf_conntrack_helper *helper) argument
360 nfnl_cthelper_update_policy(struct nf_conntrack_helper *helper, const struct nlattr *attr) argument
384 nfnl_cthelper_update(const struct nlattr * const tb[], struct nf_conntrack_helper *helper) argument
423 struct nf_conntrack_helper *cur, *helper = NULL; local
466 nfnl_cthelper_dump_tuple(struct sk_buff *skb, struct nf_conntrack_helper *helper) argument
490 nfnl_cthelper_dump_policy(struct sk_buff *skb, struct nf_conntrack_helper *helper) argument
531 nfnl_cthelper_fill_info(struct sk_buff *skb, u32 portid, u32 seq, u32 type, int event, struct nf_conntrack_helper *helper) argument
[all...]
H A Dnf_conntrack_helper.c85 if (request_module("nfct-helper-%s", name) == 0) {
106 void nf_conntrack_helper_put(struct nf_conntrack_helper *helper) argument
108 refcount_dec(&helper->refcnt);
109 module_put(helper->me);
165 void nf_nat_helper_put(struct nf_conntrack_helper *helper) argument
169 nat = nf_conntrack_nat_helper_find(helper->nat_mod_name);
186 pr_debug("failed to add helper extension area");
194 struct nf_conntrack_helper *helper = NULL; local
197 /* We already got a helper explicitly attached (e.g. nft_ct) */
206 helper
257 struct nf_conntrack_helper *helper; local
325 const struct nf_conntrack_helper *helper; local
427 nf_ct_helper_init(struct nf_conntrack_helper *helper, u16 l3num, u16 protonum, const char *name, u16 default_port, u16 spec_port, u32 id, const struct nf_conntrack_expect_policy *exp_pol, u32 expect_class_max, int (*help)(struct sk_buff *skb, unsigned int protoff, struct nf_conn *ct, enum ip_conntrack_info ctinfo), int (*from_nlattr)(struct nlattr *attr, struct nf_conn *ct), struct module *module) argument
457 nf_conntrack_helpers_register(struct nf_conntrack_helper *helper, unsigned int n) argument
477 nf_conntrack_helpers_unregister(struct nf_conntrack_helper *helper, unsigned int n) argument
[all...]
H A Dnf_conntrack_ovs.c15 const struct nf_conntrack_helper *helper; local
27 helper = rcu_dereference(help->helper);
28 if (!helper)
31 if (helper->tuple.src.l3num != NFPROTO_UNSPEC &&
32 helper->tuple.src.l3num != proto)
56 WARN_ONCE(1, "helper invoked on non-IP family!");
60 if (helper->tuple.dst.protonum != proto)
63 err = helper->help(skb, protoff, ct, ctinfo);
67 /* Adjust seqs after helper
81 struct nf_conntrack_helper *helper; local
[all...]
H A Dxt_helper.c29 const struct nf_conntrack_helper *helper; local
42 helper = rcu_dereference(master_help->helper);
43 if (!helper)
49 ret ^= !strncmp(helper->name, info->name,
50 strlen(helper->name));
75 .name = "helper",
H A Dxt_CT.c76 struct nf_conntrack_helper *helper; local
86 helper = nf_conntrack_helper_try_module_get(helper_name, par->family,
88 if (helper == NULL) {
89 pr_info_ratelimited("No such helper \"%s\"\n", helper_name);
95 nf_conntrack_helper_put(helper);
99 rcu_assign_pointer(help->helper, helper);
141 struct nf_conntrack_helper *helper; local
149 helper = rcu_dereference_raw(help->helper);
[all...]
H A Dnf_conntrack_broadcast.c3 * broadcast connection tracking helper
23 const struct nf_conntrack_helper *helper; local
63 helper = rcu_dereference(help->helper);
64 if (helper)
65 exp->tuple.src.u.udp.port = helper->tuple.src.u.udp.port;
73 exp->helper = NULL;
85 MODULE_DESCRIPTION("Broadcast connection tracking helper");
H A Dnf_conntrack_snmp.c3 * SNMP service broadcast connection tracking helper
20 MODULE_DESCRIPTION("SNMP service broadcast connection tracking helper");
53 static struct nf_conntrack_helper helper __read_mostly = {
66 return nf_conntrack_helper_register(&helper);
71 nf_conntrack_helper_unregister(&helper);
/linux-master/drivers/gpu/drm/msm/
H A Dmsm_fbdev.c34 struct drm_fb_helper *helper = (struct drm_fb_helper *)info->par; local
35 struct drm_gem_object *bo = msm_framebuffer_bo(helper->fb, 0);
42 struct drm_fb_helper *helper = (struct drm_fb_helper *)info->par; local
43 struct drm_framebuffer *fb = helper->fb;
48 drm_fb_helper_fini(helper);
54 drm_client_release(&helper->client);
55 drm_fb_helper_unprepare(helper);
56 kfree(helper);
68 static int msm_fbdev_create(struct drm_fb_helper *helper, argument
71 struct drm_device *dev = helper
142 msm_fbdev_fb_dirty(struct drm_fb_helper *helper, struct drm_clip_rect *clip) argument
229 struct drm_fb_helper *helper; local
[all...]
/linux-master/drivers/gpu/drm/omapdrm/
H A Domap_fbdev.c44 struct drm_fb_helper *helper = &fbdev->base; local
45 struct fb_info *fbi = helper->info;
46 struct drm_gem_object *bo = drm_gem_fb_get_obj(helper->fb, 0);
61 struct drm_fb_helper *helper = get_fb(fbi); local
62 struct omap_fbdev *fbdev = to_omap_fbdev(helper);
64 if (!helper)
73 struct omap_drm_private *priv = helper->dev->dev_private;
92 struct drm_fb_helper *helper = info->par; local
93 struct drm_framebuffer *fb = helper->fb;
95 struct omap_fbdev *fbdev = to_omap_fbdev(helper);
128 omap_fbdev_create(struct drm_fb_helper *helper, struct drm_fb_helper_surface_size *sizes) argument
257 omap_fbdev_dirty(struct drm_fb_helper *helper, struct drm_clip_rect *clip) argument
342 struct drm_fb_helper *helper; local
[all...]
/linux-master/drivers/gpu/drm/tegra/
H A Dfbdev.c27 struct drm_fb_helper *helper = info->par; local
31 bo = tegra_fb_get_plane(helper->fb, 0);
42 struct drm_fb_helper *helper = info->par; local
43 struct drm_framebuffer *fb = helper->fb;
46 drm_fb_helper_fini(helper);
55 drm_client_release(&helper->client);
56 drm_fb_helper_unprepare(helper);
57 kfree(helper);
69 static int tegra_fbdev_probe(struct drm_fb_helper *helper, argument
72 struct tegra_drm *tegra = helper
214 struct drm_fb_helper *helper; local
[all...]
/linux-master/drivers/net/wireless/marvell/libertas/
H A Dfirmware.c16 const struct firmware *helper, const struct firmware *mainfw)
22 /* User must free helper/mainfw */
23 priv->fw_callback(priv, ret, helper, mainfw);
79 /* No main firmware needed for this helper --> success! */
99 if (!iter->helper) {
111 do_load_firmware(priv, iter->helper, helper_firmware_cb);
121 * either a helper firmware and a main firmware (2-stage), or just the helper.
128 * terminated by an entry with a NULL helper name
164 * terminated by an entry with a NULL helper nam
15 lbs_fw_loaded(struct lbs_private *priv, int ret, const struct firmware *helper, const struct firmware *mainfw) argument
172 lbs_get_firmware(struct device *dev, u32 card_model, const struct lbs_fw_table *fw_table, const struct firmware **helper, const struct firmware **mainfw) argument
[all...]
/linux-master/include/drm/
H A Ddrm_fb_helper.h6 * DRM framebuffer helper functions
69 * Driver callbacks used by the fbdev emulation helper library.
86 int (*fb_probe)(struct drm_fb_helper *helper,
101 int (*fb_dirty)(struct drm_fb_helper *helper, struct drm_clip_rect *clip);
108 * @funcs: driver callbacks for fb helper
150 * Top-level FBDEV helper lock. This protects all internal data
154 * protect all helper internal state with this lock as well as reduce
178 * If no outputs are connected (disconnected or unknown) the FB helper
191 * FB helper initialization. This needs to be tracked so that deferred
192 * FB helper setu
278 drm_fb_helper_prepare(struct drm_device *dev, struct drm_fb_helper *helper, unsigned int preferred_bpp, const struct drm_fb_helper_funcs *funcs) argument
289 drm_fb_helper_init(struct drm_device *dev, struct drm_fb_helper *helper) argument
299 drm_fb_helper_fini(struct drm_fb_helper *helper) argument
[all...]
/linux-master/tools/testing/selftests/arm64/pauth/
H A DMakefile15 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-master/include/uapi/linux/netfilter/
H A Dxt_CT.h24 char helper[16]; member in struct:xt_ct_target_info
35 char helper[16]; member in struct:xt_ct_target_info_v1
/linux-master/samples/seccomp/
H A DMakefile4 bpf-fancy-objs := bpf-fancy.o bpf-helper.o
/linux-master/drivers/gpu/drm/xe/display/
H A Dintel_fbdev_fb.h16 struct drm_framebuffer *intel_fbdev_fb_alloc(struct drm_fb_helper *helper,
/linux-master/drivers/gpu/drm/i915/display/
H A Dintel_fbdev_fb.h16 struct drm_framebuffer *intel_fbdev_fb_alloc(struct drm_fb_helper *helper,
/linux-master/drivers/gpu/drm/exynos/
H A Dexynos_drm_fbdev.c30 struct drm_fb_helper *helper = info->par; local
31 struct drm_gem_object *obj = drm_gem_fb_get_obj(helper->fb, 0);
59 static int exynos_drm_fbdev_update(struct drm_fb_helper *helper, argument
64 struct drm_framebuffer *fb = helper->fb;
68 fbi = drm_fb_helper_alloc_info(helper);
70 DRM_DEV_ERROR(to_dma_dev(helper->dev),
77 drm_fb_helper_fill_info(fbi, helper, sizes);
90 static int exynos_drm_fbdev_create(struct drm_fb_helper *helper, argument
94 struct drm_device *dev = helper->dev;
116 helper
[all...]
/linux-master/drivers/media/platform/chips-media/wave5/
H A DMakefile10 wave5-helper.o

Completed in 343 milliseconds

12345