/linux-4.1.27/arch/mn10300/include/asm/ |
D | rwlock.h | 32 #define __build_read_lock_ptr(rw, helper) \ argument 43 "3: call "helper"[],0 \n" \ 51 #define __build_read_lock_const(rw, helper) \ argument 62 "3: call "helper"[],0 \n" \ 70 #define __build_read_lock(rw, helper) \ argument 73 __build_read_lock_const(rw, helper); \ 75 __build_read_lock_ptr(rw, helper); \ 78 #define __build_write_lock_ptr(rw, helper) \ argument 89 "3: call "helper"[],0 \n" \ 97 #define __build_write_lock_const(rw, helper) \ argument [all …]
|
/linux-4.1.27/net/netfilter/ |
D | nfnetlink_cthelper.c | 40 struct nf_conntrack_helper *helper; in nfnl_userspace_cthelper() local 47 helper = rcu_dereference(help->helper); in nfnl_userspace_cthelper() 48 if (helper == NULL) in nfnl_userspace_cthelper() 52 if ((helper->flags & in nfnl_userspace_cthelper() 58 return NF_QUEUE_NR(helper->queue_num) | NF_VERDICT_FLAG_QUEUE_BYPASS; in nfnl_userspace_cthelper() 97 if (help->helper->data_len == 0) in nfnl_cthelper_from_nlattr() 100 memcpy(help->data, nla_data(attr), help->helper->data_len); in nfnl_cthelper_from_nlattr() 109 if (help->helper->data_len && in nfnl_cthelper_to_nlattr() 110 nla_put(skb, CTA_HELP_INFO, help->helper->data_len, &help->data)) in nfnl_cthelper_to_nlattr() 158 nfnl_cthelper_parse_expect_policy(struct nf_conntrack_helper *helper, in nfnl_cthelper_parse_expect_policy() argument [all …]
|
D | nf_conntrack_helper.c | 118 struct nf_conntrack_helper *helper; in __nf_ct_helper_find() local 126 hlist_for_each_entry_rcu(helper, &nf_ct_helper_hash[h], hnode) { in __nf_ct_helper_find() 127 if (nf_ct_tuple_src_mask_cmp(tuple, &helper->tuple, &mask)) in __nf_ct_helper_find() 128 return helper; in __nf_ct_helper_find() 172 struct nf_conntrack_helper *helper, gfp_t gfp) in nf_ct_helper_ext_add() argument 177 helper->data_len, gfp); in nf_ct_helper_ext_add() 189 struct nf_conntrack_helper *helper = NULL; in __nf_ct_try_assign_helper() local 206 helper = help->helper; in __nf_ct_try_assign_helper() 212 if (net->ct.sysctl_auto_assign_helper && helper == NULL) { in __nf_ct_try_assign_helper() 213 helper = __nf_ct_helper_find(&ct->tuplehash[IP_CT_DIR_REPLY].tuple); in __nf_ct_try_assign_helper() [all …]
|
D | xt_CT.c | 79 struct nf_conntrack_helper *helper; in xt_ct_set_helper() local 90 helper = nf_conntrack_helper_try_module_get(helper_name, par->family, in xt_ct_set_helper() 92 if (helper == NULL) { in xt_ct_set_helper() 97 help = nf_ct_helper_ext_add(ct, helper, GFP_KERNEL); in xt_ct_set_helper() 99 module_put(helper->me); in xt_ct_set_helper() 103 help->helper = helper; in xt_ct_set_helper() 219 if (info->helper[0]) { in xt_ct_tg_check() 220 ret = xt_ct_set_helper(ct, info->helper, par); in xt_ct_tg_check() 258 memcpy(info_v1.helper, info->helper, sizeof(info->helper)); in xt_ct_tg_check_v0() 316 module_put(help->helper->me); in xt_ct_tg_destroy() [all …]
|
D | xt_helper.c | 32 const struct nf_conntrack_helper *helper; in helper_mt() local 45 helper = rcu_dereference(master_help->helper); in helper_mt() 46 if (!helper) in helper_mt() 52 ret ^= !strncmp(helper->name, info->name, in helper_mt() 53 strlen(helper->name)); in helper_mt()
|
D | nf_conntrack_expect.c | 280 exp->helper = NULL; in nf_ct_expect_init() 340 struct nf_conntrack_helper *helper; in nf_ct_expect_insert() local 355 helper = rcu_dereference_protected(master_help->helper, in nf_ct_expect_insert() 357 if (helper) { in nf_ct_expect_insert() 359 helper->expect_policy[exp->class].timeout * HZ; in nf_ct_expect_insert() 391 struct nf_conntrack_helper *helper; in __nf_ct_expect_check() local 415 helper = rcu_dereference_protected(master_help->helper, in __nf_ct_expect_check() 417 if (helper) { in __nf_ct_expect_check() 418 p = &helper->expect_policy[expect->class]; in __nf_ct_expect_check() 527 struct nf_conntrack_helper *helper; in exp_seq_show() local [all …]
|
D | nf_conntrack_netbios_ns.c | 49 static struct nf_conntrack_helper helper __read_mostly = { 62 return nf_conntrack_helper_register(&helper); in nf_conntrack_netbios_ns_init() 67 nf_conntrack_helper_unregister(&helper); in nf_conntrack_netbios_ns_fini()
|
D | nf_conntrack_snmp.c | 56 static struct nf_conntrack_helper helper __read_mostly = { 69 return nf_conntrack_helper_register(&helper); in nf_conntrack_snmp_init() 74 nf_conntrack_helper_unregister(&helper); in nf_conntrack_snmp_fini()
|
D | nf_conntrack_netlink.c | 187 struct nf_conntrack_helper *helper; in ctnetlink_dump_helpinfo() local 192 helper = rcu_dereference(help->helper); in ctnetlink_dump_helpinfo() 193 if (!helper) in ctnetlink_dump_helpinfo() 199 if (nla_put_string(skb, CTA_HELP_NAME, helper->name)) in ctnetlink_dump_helpinfo() 202 if (helper->to_nlattr) in ctnetlink_dump_helpinfo() 203 helper->to_nlattr(skb, ct); in ctnetlink_dump_helpinfo() 1401 struct nf_conntrack_helper *helper; in ctnetlink_change_helper() local 1416 if (help && help->helper) { in ctnetlink_change_helper() 1419 RCU_INIT_POINTER(help->helper, NULL); in ctnetlink_change_helper() 1425 helper = __nf_conntrack_helper_find(helpname, nf_ct_l3num(ct), in ctnetlink_change_helper() [all …]
|
D | nf_conntrack_broadcast.c | 63 exp->tuple.src.u.udp.port = help->helper->tuple.src.u.udp.port; in nf_conntrack_broadcast_help() 71 exp->helper = NULL; in nf_conntrack_broadcast_help()
|
D | nft_ct.c | 43 const struct nf_conntrack_helper *helper; in nft_ct_get_eval() local 95 helper = rcu_dereference(help->helper); in nft_ct_get_eval() 96 if (helper == NULL) in nft_ct_get_eval() 98 strncpy((char *)dest, helper->name, NF_CT_HELPER_NAME_LEN); in nft_ct_get_eval()
|
D | nf_conntrack_h323_main.c | 705 exp->helper = &nf_conntrack_helper_h245; in expect_h245() 833 exp->helper = nf_conntrack_helper_q931; in expect_callforwarding() 1322 exp->helper = nf_conntrack_helper_q931; in expect_q931() 1396 exp->helper = nf_conntrack_helper_ras; in process_gcf() 1612 exp->helper = nf_conntrack_helper_q931; in process_acf() 1668 exp->helper = nf_conntrack_helper_q931; in process_lcf()
|
D | nf_conntrack_core.c | 665 if (help && help->helper) in __nf_conntrack_confirm() 958 if (exp->helper) { in init_conntrack() 959 help = nf_ct_helper_ext_add(ct, exp->helper, in init_conntrack() 962 rcu_assign_pointer(help->helper, exp->helper); in init_conntrack()
|
D | nf_conntrack_sip.c | 894 nfct_help(exp->master)->helper != nfct_help(ct)->helper || in set_expected_rtp_rtcp() 1253 exp->helper = nfct_help(ct)->helper; in process_register_request()
|
D | Kconfig | 244 tracking doesn't deal with broadcasts. This helper tracks locally 264 tracking doesn't deal with broadcasts. This helper tracks locally 319 TFTP connection tracking helper, this is required depending 676 the helper to be used. 1131 tristate '"helper" match support' 1136 tracked by a conntrack-helper, ie. ip_conntrack_ftp
|
/linux-4.1.27/drivers/gpu/drm/rockchip/ |
D | rockchip_drm_fbdev.c | 31 struct drm_fb_helper *helper = info->par; in rockchip_fbdev_mmap() local 32 struct rockchip_drm_private *private = to_drm_private(helper); in rockchip_fbdev_mmap() 50 static int rockchip_drm_fbdev_create(struct drm_fb_helper *helper, in rockchip_drm_fbdev_create() argument 53 struct rockchip_drm_private *private = to_drm_private(helper); in rockchip_drm_fbdev_create() 55 struct drm_device *dev = helper->dev; in rockchip_drm_fbdev_create() 87 helper->fb = rockchip_drm_framebuffer_init(dev, &mode_cmd, in rockchip_drm_fbdev_create() 89 if (IS_ERR(helper->fb)) { in rockchip_drm_fbdev_create() 91 ret = PTR_ERR(helper->fb); in rockchip_drm_fbdev_create() 95 helper->fbdev = fbi; in rockchip_drm_fbdev_create() 97 fbi->par = helper; in rockchip_drm_fbdev_create() [all …]
|
/linux-4.1.27/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
|
/linux-4.1.27/drivers/gpu/drm/exynos/ |
D | exynos_drm_fbdev.c | 41 struct drm_fb_helper *helper = info->par; in exynos_drm_fb_mmap() local 42 struct exynos_drm_fbdev *exynos_fbd = to_exynos_fbdev(helper); in exynos_drm_fb_mmap() 55 ret = dma_mmap_attrs(helper->dev->dev, vma, buffer->pages, in exynos_drm_fb_mmap() 78 static int exynos_drm_fbdev_update(struct drm_fb_helper *helper, in exynos_drm_fbdev_update() argument 82 struct fb_info *fbi = helper->fbdev; in exynos_drm_fbdev_update() 89 drm_fb_helper_fill_var(fbi, helper, sizes->fb_width, sizes->fb_height); in exynos_drm_fbdev_update() 121 static int exynos_drm_fbdev_create(struct drm_fb_helper *helper, in exynos_drm_fbdev_create() argument 124 struct exynos_drm_fbdev *exynos_fbdev = to_exynos_fbdev(helper); in exynos_drm_fbdev_create() 126 struct drm_device *dev = helper->dev; in exynos_drm_fbdev_create() 173 helper->fb = exynos_drm_framebuffer_init(dev, &mode_cmd, in exynos_drm_fbdev_create() [all …]
|
/linux-4.1.27/drivers/gpu/drm/msm/ |
D | msm_fbdev.c | 62 struct drm_fb_helper *helper = (struct drm_fb_helper *)info->par; in msm_fbdev_mmap() local 63 struct msm_fbdev *fbdev = to_msm_fbdev(helper); in msm_fbdev_mmap() 65 struct drm_device *dev = helper->dev; in msm_fbdev_mmap() 85 static int msm_fbdev_create(struct drm_fb_helper *helper, in msm_fbdev_create() argument 88 struct msm_fbdev *fbdev = to_msm_fbdev(helper); in msm_fbdev_create() 89 struct drm_device *dev = helper->dev; in msm_fbdev_create() 157 helper->fb = fb; in msm_fbdev_create() 158 helper->fbdev = fbi; in msm_fbdev_create() 160 fbi->par = helper; in msm_fbdev_create() 173 drm_fb_helper_fill_var(fbi, helper, sizes->fb_width, sizes->fb_height); in msm_fbdev_create() [all …]
|
/linux-4.1.27/drivers/gpu/drm/omapdrm/ |
D | omap_fbdev.c | 61 struct drm_fb_helper *helper = get_fb(fbi); in omap_fbdev_pan_display() local 62 struct omap_fbdev *fbdev = to_omap_fbdev(helper); in omap_fbdev_pan_display() 64 if (!helper) in omap_fbdev_pan_display() 73 struct omap_drm_private *priv = helper->dev->dev_private; in omap_fbdev_pan_display() 102 static int omap_fbdev_create(struct drm_fb_helper *helper, in omap_fbdev_create() argument 105 struct omap_fbdev *fbdev = to_omap_fbdev(helper); in omap_fbdev_create() 106 struct drm_device *dev = helper->dev; in omap_fbdev_create() 192 helper->fb = fb; in omap_fbdev_create() 193 helper->fbdev = fbi; in omap_fbdev_create() 195 fbi->par = helper; in omap_fbdev_create() [all …]
|
/linux-4.1.27/drivers/net/wireless/libertas/ |
D | firmware.c | 15 const struct firmware *helper, const struct firmware *mainfw) in lbs_fw_loaded() argument 22 priv->fw_callback(priv, ret, helper, mainfw); in lbs_fw_loaded() 98 if (!iter->helper) { in load_next_firmware_from_table() 110 do_load_firmware(priv, iter->helper, helper_firmware_cb); in load_next_firmware_from_table() 173 const struct firmware **helper, in lbs_get_firmware() argument 179 BUG_ON(helper == NULL); in lbs_get_firmware() 184 while (iter && iter->helper) { in lbs_get_firmware() 188 if (*helper == NULL) { in lbs_get_firmware() 189 ret = request_firmware(helper, iter->helper, dev); in lbs_get_firmware() 207 release_firmware(*helper); in lbs_get_firmware() [all …]
|
D | decl.h | 17 const char *helper; member 23 const struct firmware *helper, const struct firmware *mainfw); 75 const struct firmware **helper,
|
D | if_cs.c | 742 const struct firmware *helper, in if_cs_prog_firmware() argument 753 ret = if_cs_prog_helper(card, helper); in if_cs_prog_firmware()
|
D | if_spi.c | 1035 const struct firmware *helper = NULL; in if_spi_init_card() local 1067 &fw_table[0], &helper, &mainfw); in if_spi_init_card() 1082 err = if_spi_prog_helper_firmware(card, helper); in if_spi_init_card()
|
D | if_sdio.c | 699 const struct firmware *helper, in if_sdio_do_prog_firmware() argument 709 ret = if_sdio_prog_helper(card, helper); in if_sdio_do_prog_firmware()
|
/linux-4.1.27/drivers/gpu/drm/bochs/ |
D | bochs_fbdev.c | 17 container_of(fb_helper, struct bochs_device, fb.helper); in bochsfb_mmap() 54 static int bochsfb_create(struct drm_fb_helper *helper, in bochsfb_create() argument 58 container_of(helper, struct bochs_device, fb.helper); in bochsfb_create() 113 info->par = &bochs->fb.helper; in bochsfb_create() 123 bochs->fb.helper.fb = fb; in bochsfb_create() 124 bochs->fb.helper.fbdev = info; in bochsfb_create() 132 drm_fb_helper_fill_var(info, &bochs->fb.helper, sizes->fb_width, in bochsfb_create() 158 if (bochs->fb.helper.fbdev) { in bochs_fbdev_destroy() 159 info = bochs->fb.helper.fbdev; in bochs_fbdev_destroy() 172 drm_fb_helper_fini(&bochs->fb.helper); in bochs_fbdev_destroy() [all …]
|
D | bochs_drv.c | 112 fb_set_suspend(bochs->fb.helper.fbdev, 1); in bochs_pm_suspend() 129 fb_set_suspend(bochs->fb.helper.fbdev, 0); in bochs_pm_resume()
|
D | bochs.h | 91 struct drm_fb_helper helper; member
|
/linux-4.1.27/drivers/gpu/drm/radeon/ |
D | radeon_fb.c | 45 struct drm_fb_helper helper; member 219 static int radeonfb_create(struct drm_fb_helper *helper, in radeonfb_create() argument 223 container_of(helper, struct radeon_fbdev, helper); in radeonfb_create() 270 rfbdev->helper.fb = fb; in radeonfb_create() 271 rfbdev->helper.fbdev = info; in radeonfb_create() 288 drm_fb_helper_fill_var(info, &rfbdev->helper, sizes->fb_width, sizes->fb_height); in radeonfb_create() 337 drm_fb_helper_hotplug_event(&rdev->mode_info.rfbdev->helper); in radeon_fb_output_poll_changed() 345 if (rfbdev->helper.fbdev) { in radeon_fbdev_destroy() 346 info = rfbdev->helper.fbdev; in radeon_fbdev_destroy() 358 drm_fb_helper_fini(&rfbdev->helper); in radeon_fbdev_destroy() [all …]
|
/linux-4.1.27/drivers/gpu/drm/mgag200/ |
D | mgag200_fb.c | 144 struct drm_device *dev = afbdev->helper.dev; in mgag200fb_create_object() 158 static int mgag200fb_create(struct drm_fb_helper *helper, in mgag200fb_create() argument 162 container_of(helper, struct mga_fbdev, helper); in mgag200fb_create() 163 struct drm_device *dev = mfbdev->helper.dev; in mgag200fb_create() 210 mfbdev->helper.fb = fb; in mgag200fb_create() 211 mfbdev->helper.fbdev = info; in mgag200fb_create() 235 drm_fb_helper_fill_var(info, &mfbdev->helper, sizes->fb_width, in mgag200fb_create() 255 if (mfbdev->helper.fbdev) { in mga_fbdev_destroy() 256 info = mfbdev->helper.fbdev; in mga_fbdev_destroy() 268 drm_fb_helper_fini(&mfbdev->helper); in mga_fbdev_destroy() [all …]
|
D | mgag200_drv.h | 115 struct drm_fb_helper helper; member
|
/linux-4.1.27/drivers/gpu/drm/i915/ |
D | intel_fbdev.c | 52 container_of(fb_helper, struct intel_fbdev, helper); in intel_fbdev_set_par() 78 container_of(fb_helper, struct intel_fbdev, helper); in intel_fbdev_blank() 113 static int intelfb_alloc(struct drm_fb_helper *helper, in intelfb_alloc() argument 117 container_of(helper, struct intel_fbdev, helper); in intelfb_alloc() 119 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() 200 ret = intelfb_alloc(helper, sizes); in intelfb_create() 220 info->par = helper; in intelfb_create() [all …]
|
D | intel_dp_mst.c | 397 drm_fb_helper_add_one_connector(&dev_priv->fbdev->helper, &connector->base); in intel_connector_add_to_fbdev() 405 drm_fb_helper_remove_one_connector(&dev_priv->fbdev->helper, &connector->base); in intel_connector_remove_from_fbdev()
|
D | intel_drv.h | 124 struct drm_fb_helper helper; member
|
D | i915_debugfs.c | 1798 fb = to_intel_framebuffer(ifbdev->helper.fb); in i915_gem_framebuffer_info() 1813 if (ifbdev && &fb->base == ifbdev->helper.fb) in i915_gem_framebuffer_info()
|
/linux-4.1.27/drivers/gpu/drm/cirrus/ |
D | cirrus_fbdev.c | 141 struct drm_device *dev = afbdev->helper.dev; in cirrusfb_create_object() 163 static int cirrusfb_create(struct drm_fb_helper *helper, in cirrusfb_create() argument 167 container_of(helper, struct cirrus_fbdev, helper); in cirrusfb_create() 168 struct drm_device *dev = gfbdev->helper.dev; in cirrusfb_create() 169 struct cirrus_device *cdev = gfbdev->helper.dev->dev_private; in cirrusfb_create() 218 gfbdev->helper.fb = fb; in cirrusfb_create() 219 gfbdev->helper.fbdev = info; in cirrusfb_create() 228 drm_fb_helper_fill_var(info, &gfbdev->helper, sizes->fb_width, in cirrusfb_create() 273 if (gfbdev->helper.fbdev) { in cirrus_fbdev_destroy() 274 info = gfbdev->helper.fbdev; in cirrus_fbdev_destroy() [all …]
|
D | cirrus_drv.c | 95 fb_set_suspend(cdev->mode_info.gfbdev->helper.fbdev, 1); in cirrus_pm_suspend() 112 fb_set_suspend(cdev->mode_info.gfbdev->helper.fbdev, 0); in cirrus_pm_resume()
|
D | cirrus_drv.h | 154 struct drm_fb_helper helper; member
|
/linux-4.1.27/drivers/gpu/drm/ast/ |
D | ast_fb.c | 169 struct drm_device *dev = afbdev->helper.dev; in astfb_create_object() 186 static int astfb_create(struct drm_fb_helper *helper, in astfb_create() argument 190 container_of(helper, struct ast_fbdev, helper); in astfb_create() 191 struct drm_device *dev = afbdev->helper.dev; in astfb_create() 235 afbdev->helper.fb = fb; in astfb_create() 236 afbdev->helper.fbdev = info; in astfb_create() 258 drm_fb_helper_fill_var(info, &afbdev->helper, sizes->fb_width, sizes->fb_height); in astfb_create() 302 if (afbdev->helper.fbdev) { in ast_fbdev_destroy() 303 info = afbdev->helper.fbdev; in ast_fbdev_destroy() 314 drm_fb_helper_fini(&afbdev->helper); in ast_fbdev_destroy() [all …]
|
D | ast_drv.h | 257 struct drm_fb_helper helper; member
|
/linux-4.1.27/drivers/gpu/drm/ |
D | drm_fb_cma_helper.c | 38 static inline struct drm_fbdev_cma *to_fbdev_cma(struct drm_fb_helper *helper) in to_fbdev_cma() argument 40 return container_of(helper, struct drm_fbdev_cma, fb_helper); in to_fbdev_cma() 247 static int drm_fbdev_cma_create(struct drm_fb_helper *helper, in drm_fbdev_cma_create() argument 250 struct drm_fbdev_cma *fbdev_cma = to_fbdev_cma(helper); in drm_fbdev_cma_create() 252 struct drm_device *dev = helper->dev; in drm_fbdev_cma_create() 293 helper->fb = fb; in drm_fbdev_cma_create() 294 helper->fbdev = fbi; in drm_fbdev_cma_create() 296 fbi->par = helper; in drm_fbdev_cma_create() 307 drm_fb_helper_fill_var(fbi, helper, sizes->fb_width, sizes->fb_height); in drm_fbdev_cma_create() 348 struct drm_fb_helper *helper; in drm_fbdev_cma_init() local [all …]
|
D | drm_fb_helper.c | 204 static void drm_fb_helper_save_lut_atomic(struct drm_crtc *crtc, struct drm_fb_helper *helper) in drm_fb_helper_save_lut_atomic() argument 209 if (helper->funcs->gamma_get == NULL) in drm_fb_helper_save_lut_atomic() 217 helper->funcs->gamma_get(crtc, &r_base[i], &g_base[i], &b_base[i], i); in drm_fb_helper_save_lut_atomic() 240 struct drm_fb_helper *helper = info->par; in drm_fb_helper_debug_enter() local 244 list_for_each_entry(helper, &kernel_fb_helper_list, kernel_fb_list) { in drm_fb_helper_debug_enter() 245 for (i = 0; i < helper->crtc_count; i++) { in drm_fb_helper_debug_enter() 247 &helper->crtc_info[i].mode_set; in drm_fb_helper_debug_enter() 253 drm_fb_helper_save_lut_atomic(mode_set->crtc, helper); in drm_fb_helper_debug_enter() 286 struct drm_fb_helper *helper = info->par; in drm_fb_helper_debug_leave() local 292 for (i = 0; i < helper->crtc_count; i++) { in drm_fb_helper_debug_leave() [all …]
|
D | Kconfig | 67 Choose this if you need the GEM CMA helper functions 78 Choose this if you need the KMS CMA helper functions
|
/linux-4.1.27/drivers/gpu/drm/nouveau/ |
D | nouveau_fbcon.c | 239 drm->fbcon->saved_flags = drm->fbcon->helper.fbdev->flags; in nouveau_fbcon_accel_save_disable() 240 drm->fbcon->helper.fbdev->flags |= FBINFO_HWACCEL_DISABLED; in nouveau_fbcon_accel_save_disable() 249 drm->fbcon->helper.fbdev->flags = drm->fbcon->saved_flags; in nouveau_fbcon_accel_restore() 260 fbcon->helper.fbdev->flags |= FBINFO_HWACCEL_DISABLED; in nouveau_fbcon_accel_fini() 278 struct fb_info *info = fbcon->helper.fbdev; in nouveau_fbcon_accel_init() 316 struct fb_info *info = fbcon->helper.fbdev; in nouveau_fbcon_zfill() 332 nouveau_fbcon_create(struct drm_fb_helper *helper, in nouveau_fbcon_create() argument 336 container_of(helper, struct nouveau_fbdev, helper); in nouveau_fbcon_create() 414 fbcon->helper.fb = fb; in nouveau_fbcon_create() 415 fbcon->helper.fbdev = info; in nouveau_fbcon_create() [all …]
|
D | nouveau_fbcon.h | 35 struct drm_fb_helper helper; member
|
D | nouveau_connector.c | 312 const struct drm_encoder_helper_funcs *helper = in nouveau_connector_detect() local 315 if (helper->detect(encoder, connector) == in nouveau_connector_detect() 595 const struct drm_connector_helper_funcs *helper = connector->helper_private; in nouveau_connector_native_mode() local 604 if (helper->mode_valid(connector, mode) != MODE_OK || in nouveau_connector_native_mode()
|
/linux-4.1.27/drivers/gpu/drm/qxl/ |
D | qxl_fb.c | 56 struct drm_fb_helper helper; member 379 qxl_fb_fillrect_internal(qfbdev->helper.fbdev, &entry->op.fr); in qxl_fb_work() 382 qxl_fb_copyarea_internal(qfbdev->helper.fbdev, &entry->op.ca); in qxl_fb_work() 385 qxl_fb_imageblit_internal(qfbdev->helper.fbdev, &entry->op.ib); in qxl_fb_work() 552 qfbdev->helper.fb = fb; in qxlfb_create() 553 qfbdev->helper.fbdev = info; in qxlfb_create() 571 drm_fb_helper_fill_var(info, &qfbdev->helper, sizes->fb_width, in qxlfb_create() 625 struct drm_fb_helper *helper, in qxl_fb_find_or_create_single() argument 629 container_of(helper, struct qxl_fbdev, helper); in qxl_fb_find_or_create_single() 633 if (!helper->fb) { in qxl_fb_find_or_create_single() [all …]
|
/linux-4.1.27/drivers/gpu/drm/udl/ |
D | udl_fb.c | 34 struct drm_fb_helper helper; member 472 static int udlfb_create(struct drm_fb_helper *helper, in udlfb_create() argument 476 container_of(helper, struct udl_fbdev, helper); in udlfb_create() 477 struct drm_device *dev = ufbdev->helper.dev; in udlfb_create() 522 ufbdev->helper.fb = fb; in udlfb_create() 523 ufbdev->helper.fbdev = info; in udlfb_create() 534 drm_fb_helper_fill_var(info, &ufbdev->helper, sizes->fb_width, sizes->fb_height); in udlfb_create() 562 if (ufbdev->helper.fbdev) { in udl_fbdev_destroy() 563 info = ufbdev->helper.fbdev; in udl_fbdev_destroy() 569 drm_fb_helper_fini(&ufbdev->helper); in udl_fbdev_destroy() [all …]
|
/linux-4.1.27/samples/seccomp/ |
D | Makefile | 8 HOSTCFLAGS_bpf-helper.o += -I$(objtree)/usr/include 9 HOSTCFLAGS_bpf-helper.o += -idirafter $(objtree)/include 10 bpf-fancy-objs := bpf-fancy.o bpf-helper.o 33 HOSTCFLAGS_bpf-helper.o += $(MFLAG)
|
/linux-4.1.27/drivers/gpu/drm/tegra/ |
D | fb.c | 22 static inline struct tegra_fbdev *to_tegra_fbdev(struct drm_fb_helper *helper) in to_tegra_fbdev() argument 24 return container_of(helper, struct tegra_fbdev, base); in to_tegra_fbdev() 197 static int tegra_fbdev_probe(struct drm_fb_helper *helper, in tegra_fbdev_probe() argument 200 struct tegra_fbdev *fbdev = to_tegra_fbdev(helper); in tegra_fbdev_probe() 201 struct tegra_drm *tegra = helper->dev->dev_private; in tegra_fbdev_probe() 202 struct drm_device *drm = helper->dev; in tegra_fbdev_probe() 244 helper->fb = fb; in tegra_fbdev_probe() 245 helper->fbdev = info; in tegra_fbdev_probe() 247 info->par = helper; in tegra_fbdev_probe() 258 drm_fb_helper_fill_var(info, helper, fb->width, fb->height); in tegra_fbdev_probe()
|
/linux-4.1.27/include/drm/ |
D | drm_fb_helper.h | 94 int (*fb_probe)(struct drm_fb_helper *helper, 125 void drm_fb_helper_prepare(struct drm_device *dev, struct drm_fb_helper *helper, 128 struct drm_fb_helper *helper, int crtc_count, 130 void drm_fb_helper_fini(struct drm_fb_helper *helper);
|
/linux-4.1.27/include/uapi/linux/netfilter/ |
D | xt_CT.h | 17 char helper[16]; member 28 char helper[16]; member
|
/linux-4.1.27/drivers/staging/media/lirc/ |
D | lirc_parallel.c | 292 __u64 helper; in lirc_lirc_irq_handler() local 294 helper = ((__u64) signal)*1000000; in lirc_lirc_irq_handler() 295 do_div(helper, timer); in lirc_lirc_irq_handler() 296 signal = (long) helper; in lirc_lirc_irq_handler() 399 __u64 helper; in lirc_write() local 401 helper = ((__u64) wbuf[i])*timer; in lirc_write() 402 do_div(helper, 1000000); in lirc_write() 403 wbuf[i] = (int) helper; in lirc_write()
|
/linux-4.1.27/drivers/gpu/drm/nouveau/dispnv04/ |
D | dac.c | 361 const struct drm_encoder_helper_funcs *helper = encoder->helper_private; in nv04_dac_prepare() local 365 helper->dpms(encoder, DRM_MODE_DPMS_OFF); in nv04_dac_prepare() 412 const struct drm_encoder_helper_funcs *helper = encoder->helper_private; in nv04_dac_commit() local 414 helper->dpms(encoder, DRM_MODE_DPMS_ON); in nv04_dac_commit() 529 const struct drm_encoder_helper_funcs *helper; in nv04_dac_create() local 544 helper = &nv17_dac_helper_funcs; in nv04_dac_create() 546 helper = &nv04_dac_helper_funcs; in nv04_dac_create() 549 drm_encoder_helper_add(encoder, helper); in nv04_dac_create()
|
D | tvnv04.c | 125 const struct drm_encoder_helper_funcs *helper = encoder->helper_private; in nv04_tv_prepare() local 127 helper->dpms(encoder, DRM_MODE_DPMS_OFF); in nv04_tv_prepare() 167 const struct drm_encoder_helper_funcs *helper = encoder->helper_private; in nv04_tv_commit() local 169 helper->dpms(encoder, DRM_MODE_DPMS_ON); in nv04_tv_commit()
|
D | dfp.c | 247 const struct drm_encoder_helper_funcs *helper = encoder->helper_private; in nv04_dfp_prepare() local 254 helper->dpms(encoder, DRM_MODE_DPMS_OFF); in nv04_dfp_prepare() 448 const struct drm_encoder_helper_funcs *helper = encoder->helper_private; in nv04_dfp_commit() local 477 helper->dpms(encoder, DRM_MODE_DPMS_ON); in nv04_dfp_commit() 683 const struct drm_encoder_helper_funcs *helper; in nv04_dfp_create() local 691 helper = &nv04_tmds_helper_funcs; in nv04_dfp_create() 695 helper = &nv04_lvds_helper_funcs; in nv04_dfp_create() 711 drm_encoder_helper_add(encoder, helper); in nv04_dfp_create()
|
D | tvnv17.c | 408 const struct drm_encoder_helper_funcs *helper = encoder->helper_private; in nv17_tv_prepare() local 417 helper->dpms(encoder, DRM_MODE_DPMS_OFF); in nv17_tv_prepare() 586 const struct drm_encoder_helper_funcs *helper = encoder->helper_private; in nv17_tv_commit() local 607 helper->dpms(encoder, DRM_MODE_DPMS_ON); in nv17_tv_commit()
|
/linux-4.1.27/arch/um/os-Linux/ |
D | Makefile | 6 obj-y = aio.o execvp.o file.o helper.o irq.o main.o mem.o process.o \ 12 USER_OBJS := $(user-objs-y) aio.o elf_aux.o execvp.o file.o helper.o irq.o \
|
/linux-4.1.27/drivers/bluetooth/ |
D | btmrvl_sdio.h | 92 const char *helper; member 103 const char *helper; member
|
D | btmrvl_sdio.c | 150 .helper = "mrvl/sd8688_helper.bin", 159 .helper = NULL, 168 .helper = NULL, 177 .helper = NULL, 186 .helper = NULL, 348 const u8 *helper = NULL; in btmrvl_sdio_download_helper() local 355 ret = request_firmware(&fw_helper, card->helper, in btmrvl_sdio_download_helper() 364 helper = fw_helper->data; in btmrvl_sdio_download_helper() 409 memcpy(&helperbuf[SDIO_HEADER_LEN], &helper[hlprblknow], in btmrvl_sdio_download_helper() 1058 if (card->helper) { in btmrvl_sdio_download_fw() [all …]
|
/linux-4.1.27/include/net/netfilter/ |
D | nf_conntrack.h | 60 struct nf_conntrack_helper __rcu *helper; member 299 #define MODULE_ALIAS_NFCT_HELPER(helper) \ argument 300 MODULE_ALIAS("nfct-helper-" helper)
|
D | nf_conntrack_expect.h | 28 struct nf_conntrack_helper *helper; member
|
D | nf_conntrack_helper.h | 66 struct nf_conntrack_helper *helper,
|
/linux-4.1.27/net/ipv6/netfilter/ |
D | nf_conntrack_l3proto_ipv6.c | 104 const struct nf_conntrack_helper *helper; in ipv6_helper() local 119 helper = rcu_dereference(help->helper); in ipv6_helper() 120 if (!helper) in ipv6_helper() 131 return helper->help(skb, protoff, ct, ctinfo); in ipv6_helper()
|
/linux-4.1.27/drivers/iio/imu/ |
D | Kconfig | 46 A set of IO helper functions for the Analog Devices ADIS* device family. 52 A set of buffer helper functions for the Analog Devices ADIS* device
|
/linux-4.1.27/net/ipv4/netfilter/ |
D | nf_conntrack_l3proto_ipv4.c | 102 const struct nf_conntrack_helper *helper; in ipv4_helper() local 114 helper = rcu_dereference(help->helper); in ipv4_helper() 115 if (!helper) in ipv4_helper() 118 return helper->help(skb, skb_network_offset(skb) + ip_hdrlen(skb), in ipv4_helper()
|
/linux-4.1.27/arch/nios2/kernel/ |
D | head.S | 87 helper: label 88 stw r3, r3save - helper(et)
|
/linux-4.1.27/Documentation/power/ |
D | runtime_pm.txt | 26 * A set of helper functions defined in drivers/base/power/runtime.c that can be 32 fields of 'struct dev_pm_info' and the core helper functions provided for 72 enabled. However, the pm_runtime_irq_safe() helper function can be used to tell 76 not block or sleep, but it also means that the synchronous helper functions 102 the helper functions described in Section 4 for the device until its status 104 special helper functions for this purpose). 129 fatal error and will refuse to run the helper functions described in Section 131 'suspended' (by means of special helper functions provided by the PM core 139 * If any of these counters is decreased using a helper function provided by 157 The helper functions provided by the PM core, described in Section 4, guarantee [all …]
|
D | opp.txt | 42 OPP library provides a set of helper functions to organize and query the OPP 262 Example: Lets say the SoC framework uses a couple of helper functions
|
D | suspend-and-interrupts.txt | 73 The IRQ subsystem provides two helper functions to be used by device drivers for
|
D | pci.txt | 490 then assumed to have used the helper functions provided by the PCI subsystem for 983 pci_pm_init() that runs the pm_runtime_forbid() helper function. If a PCI 986 feature by executing the pm_runtime_enable() helper function. However, the 987 driver should not call the pm_runtime_allow() helper function unblocking 1006 helper functions provided by the PM core, discussed in 1011 drivers that use helper functions provided by the PM core for this purpose.
|
/linux-4.1.27/drivers/usb/gadget/function/ |
D | f_fs.c | 1883 struct ffs_desc_helper *helper = priv; in __ffs_data_do_entity() local 1898 if (*valuep >= helper->interfaces_count) in __ffs_data_do_entity() 1899 helper->interfaces_count = *valuep + 1; in __ffs_data_do_entity() 1907 if (*valuep > helper->ffs->strings_count) in __ffs_data_do_entity() 1908 helper->ffs->strings_count = *valuep; in __ffs_data_do_entity() 1913 helper->eps_count++; in __ffs_data_do_entity() 1914 if (helper->eps_count >= 15) in __ffs_data_do_entity() 1917 if (!helper->ffs->eps_count && !helper->ffs->interfaces_count) in __ffs_data_do_entity() 1918 helper->ffs->eps_addrmap[helper->eps_count] = in __ffs_data_do_entity() 1920 else if (helper->ffs->eps_addrmap[helper->eps_count] != in __ffs_data_do_entity() [all …]
|
/linux-4.1.27/drivers/gpu/drm/imx/ |
D | imx-drm-core.c | 109 struct imx_drm_crtc_helper_funcs *helper; in imx_drm_set_bus_format_pins() local 116 helper = &imx_crtc->imx_drm_helper_funcs; in imx_drm_set_bus_format_pins() 117 if (helper->set_interface_pix_fmt) in imx_drm_set_bus_format_pins() 118 return helper->set_interface_pix_fmt(encoder->crtc, in imx_drm_set_bus_format_pins()
|
/linux-4.1.27/drivers/media/common/ |
D | Kconfig | 16 tristate "Cypress firmware helper routines"
|
/linux-4.1.27/Documentation/dvb/ |
D | udev.txt | 18 1. Unfortunately, you'll need a helper script to transform the kernel 45 the helper script /etc/udev/scripts/dvb.sh is invoked, which will then
|
D | faq.txt | 153 - videobuf-dma-sg: capture helper module for the saa7146_vv driver. This
|
/linux-4.1.27/drivers/base/ |
D | Kconfig | 4 bool "Support for uevent helper" 7 The uevent helper program is forked by the kernel for 19 string "path to uevent helper" 23 To disable user space helper program execution at by default 155 bool "Fallback user-helper invocation for firmware loading" 159 This option enables / disables the invocation of user-helper 161 direct file loading in kernel fails. The user-mode helper is
|
/linux-4.1.27/sound/usb/ |
D | Makefile | 9 helper.o \
|
/linux-4.1.27/drivers/pci/pcie/aer/ |
D | Kconfig.debug | 16 help of a user space helper tool aer-inject, which can be
|
/linux-4.1.27/drivers/firmware/efi/libstub/ |
D | Makefile | 24 lib-y := efi-stub-helper.o
|
/linux-4.1.27/fs/btrfs/ |
D | async-thread.h | 72 void btrfs_init_work(struct btrfs_work *work, btrfs_work_func_t helper,
|
/linux-4.1.27/Documentation/devicetree/bindings/power/ |
D | power-controller.txt | 9 property is found programmatically, use the helper function
|
/linux-4.1.27/arch/powerpc/lib/ |
D | Makefile | 22 obj64-$(CONFIG_ALTIVEC) += vmx-helper.o
|
/linux-4.1.27/Documentation/filesystems/nfs/ |
D | nfs.txt | 78 (2) If no valid entry exists, the helper script '/sbin/nfs_cache_getent' 84 (3) After looking up the corresponding ip address, the helper script 93 <hostname> is identical to the second argument of the helper
|
D | rpc-cache.txt | 159 Thus a user-space helper is likely to: 168 instance of the helper.
|
/linux-4.1.27/net/mpls/ |
D | Kconfig | 21 This is helper module to allow segmentation of non-MPLS GSO packets
|
/linux-4.1.27/drivers/gpu/drm/i2c/ |
D | Kconfig | 1 menu "I2C encoder or helper chips"
|
/linux-4.1.27/net/dns_resolver/ |
D | Kconfig | 19 helper "/sbin/dns.resolver" via /etc/request-key.conf.
|
/linux-4.1.27/Documentation/devicetree/bindings/mips/ |
D | cpu_irq.txt | 3 On MIPS the mips_cpu_irq_of_init() helper can be used to initialize the 8 CPU
|
/linux-4.1.27/Documentation/filesystems/cifs/ |
D | README | 63 similar files reside (usually /sbin). Although the helper software is not 70 domain to the proper network user. The mount.cifs mount helper can be 112 umount.cifs is placed in /sbin, umount can invoke the cifs umount helper 115 helper). As with mount.cifs, to enable user unmounts umount.cifs must be marked 198 mount helper display the mount steps more verbosely. 207 ip addresses) is available if the mount helper (mount.cifs) is installed. If 220 When using the mount helper mount.cifs, passwords may be specified via alternate 257 password The user password. If the mount helper is 353 mount helper utility (not typically needed) 362 when the cifs mount helper cifs.mount (version 1.1 or later) [all …]
|
D | TODO | 76 u) mount helper GUI (to simplify the various configuration options on mount)
|
D | CHANGES | 163 mount helper is missing convert make sure that UNC name 1001 Introduced optional mount helper utility mount.cifs and made coreq changes to cifs vfs to enable
|
/linux-4.1.27/drivers/media/v4l2-core/ |
D | v4l2-ctrls.c | 2778 helpers[i].mref->helper = NULL; in prepare_ext_ctrls() 2784 if (mref->helper) { in prepare_ext_ctrls() 2788 mref->helper->next = i; in prepare_ext_ctrls() 2794 mref->helper = h; in prepare_ext_ctrls() 2815 struct v4l2_ctrl_helper helper[4]; in v4l2_g_ext_ctrls() local 2816 struct v4l2_ctrl_helper *helpers = helper; in v4l2_g_ext_ctrls() 2829 if (cs->count > ARRAY_SIZE(helper)) { in v4l2_g_ext_ctrls() 2830 helpers = kmalloc_array(cs->count, sizeof(helper[0]), in v4l2_g_ext_ctrls() 2879 if (cs->count > ARRAY_SIZE(helper)) in v4l2_g_ext_ctrls() 3074 struct v4l2_ctrl_helper helper[4]; in try_set_ext_ctrls() local [all …]
|
/linux-4.1.27/Documentation/pcmcia/ |
D | driver-changes.txt | 63 a new helper "pcmcia_get_mac_from_cis()" was added. 65 * New configuration loop helper (as of 2.6.28) 71 * New release helper (as of 2.6.17)
|
/linux-4.1.27/Documentation/ |
D | unshare.txt | 209 helper function to allocate and duplicate a new context 223 c) unshare helper functions for each different process context 245 helper routine with flags passed into the system call and a 247 * If any new structures are created by unshare_* helper 254 7.3) unshare_* helper functions
|
D | gdb-kernel-debugging.txt | 7 kernel provides a collection of helper scripts that can simplify typical 117 o Dig into hrtimers using the container_of helper:
|
D | efi-stub.txt | 13 between architectures is in drivers/firmware/efi/efi-stub-helper.c.
|
D | futex-requeue-pi.txt | 96 The solution involves two new rt_mutex helper routines,
|
D | md-cluster.txt | 147 A helper function, should_suspend() can be used to check if a particular
|
D | padata.txt | 27 cpumasks this helper function can be used:
|
D | CodingStyle | 362 maximum limits all the more closely. Use helper functions with 497 user helper that "GNU emacs" automatically formats the C sources for 860 Consider writing simple helper functions that wrap common bits of inline 894 out part or all of the expression into a separate helper function and apply the
|
D | media-framework.txt | 371 helper functions to provide easy access for commonly needed information, and
|
D | kobject.txt | 153 There is a helper function to both initialize and add the kobject to the
|
D | pinctrl.txt | 1021 Since the above construct is pretty common there is a helper macro to make
|
D | kernel-parameters.txt | 2898 ports= [IP_VS_FTP] IPVS ftp helper module
|
/linux-4.1.27/Documentation/leds/ |
D | leds-lp3944.txt | 16 The LP3944 is a helper chip that can drive up to 8 leds, with two programmable
|
/linux-4.1.27/drivers/i2c/ |
D | Kconfig | 74 bool "Autoselect pertinent helper modules" 82 Unselect this only if you need to enable additional helper
|
/linux-4.1.27/Documentation/i2c/ |
D | old-module-parameters | 4 Up to kernel 2.6.32, many i2c drivers used helper macros provided by
|
/linux-4.1.27/tools/perf/config/ |
D | utilities.mak | 154 is-executable = $(call _is-executable-helper,$(shell-sq)) 155 _is-executable-helper = $(shell sh -c $(_is-executable-sh))
|
/linux-4.1.27/Documentation/devicetree/bindings/ |
D | common-properties.txt | 25 helper functions do assume that little-endian is the default, because
|
/linux-4.1.27/Documentation/arm/ |
D | firmware.txt | 22 To call a firmware operation, a helper macro is provided
|
D | kernel_user_helpers.txt | 36 safe to call any particular helper. This check should ideally be 54 of a particular helper.
|
/linux-4.1.27/Documentation/cpu-freq/ |
D | cpu-drivers.txt | 138 values, a frequency table helper and/or the 186 Here again the frequency table helper might assist you - see section 2 252 is the corresponding frequency table helper for the ->target
|
/linux-4.1.27/drivers/iio/ |
D | Kconfig | 41 Provides helper functions for setting up triggered buffers.
|
/linux-4.1.27/Documentation/block/ |
D | biovecs.txt | 22 There are a bunch of new helper macros for hiding the gory details - in 97 probably passing it to one of the helper macros.
|
D | writeback_cache_control.txt | 30 the blkdev_issue_flush() helper for a pure cache flush.
|
D | biodoc.txt | 62 3.2 Generic bio helper routines 319 expect bios, a helper function could be provided for setting up a bio 481 way). There is a helper routine (blk_rq_map_sg) which drivers can use to build 497 use of block layer helper routine elv_next_request to pull the next request 580 a driver needs to be careful about interoperation with the block layer helper 640 3.2 Generic bio helper Routines 660 The blk_rq_map_sg() helper routine would be used for setting up scatter 665 The helper routine provides a level of abstraction which makes it easier 690 The existing generic block layer helper routines end_request, 759 all the outstanding requests. There's a third helper to do that:
|
/linux-4.1.27/arch/arm/mach-s3c64xx/ |
D | Kconfig | 45 Note, currently since i2c0 is always compiled, this setup helper 61 Common setup code for S3C64XX with an 24bpp RGB display helper.
|
/linux-4.1.27/Documentation/filesystems/ |
D | fiemap.txt | 179 defining its set of supported fiemap flags, and calling a helper function on 204 fiemap_check_flags() helper: 217 the helper function, fiemap_fill_next_extent():
|
D | debugfs.txt | 55 actually necessary; the debugfs code provides a number of helper functions 151 There are a couple of other directory-oriented helper functions:
|
D | nilfs2.txt | 154 This will also invoke the cleaner through the mount helper program 176 helper program (umount.nilfs2).
|
D | relay.txt | 53 provide a set of examples and a separate helper though, described 183 helper functions: 400 by calling the subbuf_start_reserve() helper function from within the 429 callback by calling the relay_buf_full() helper function.
|
D | porting | 146 a standard helper function for decode_fh, and provide file-system specific 147 support for this helper, particularly get_parent.
|
D | sysfs.txt | 99 It also defines this helper for defining device attributes:
|
D | fuse.txt | 221 Since the mount() system call is a privileged operation, a helper
|
D | vfs.txt | 1017 dynamic_dname() helper function is provided to take care of this. 1140 Options used only internally between a mount helper and the kernel 1151 generic_show_options() helper functions. Please note, that using
|
D | ramfs-rootfs-initramfs.txt | 126 commands before you can run them), the klibc package introduced a helper
|
/linux-4.1.27/Documentation/timers/ |
D | timekeeping.txt | 62 You will find a number of helper functions in the clock source code intended 101 arithmetic, and you find the same family of helper functions again for 147 architecture, special helper functions have been created to provide a
|
/linux-4.1.27/Documentation/usb/ |
D | hotplug.txt | 22 (triggering some monitoring daemon to invoke a helper program) or 23 actively (calling such a user mode helper program directly).
|
/linux-4.1.27/Documentation/video4linux/ |
D | v4l2-framework.txt | 294 module owner. This is done for you if you use the i2c helper functions. 501 Since these drivers are so common, special helper functions are available to 524 You should also add a helper inline function to go from a v4l2_subdev pointer 551 The bridge driver also has some helper functions it can use: 575 There are two more helper functions: 658 This queue pointer is also used by the vb2 helper functions to check for 741 pointer, then you can use the helper functions vb2_ops_wait_prepare/finish. 869 video_device helper functions 872 There are a few useful helper functions: 909 video buffer helper functions [all …]
|
D | soc-camera.txt | 97 auxiliary soc-camera helper functions like soc_camera_power_on() and
|
D | videobuf | 240 calls. The relevant helper functions are:
|
D | v4l2-controls.txt | 369 Outside of the control ops you have to go through to helper functions to get
|
/linux-4.1.27/net/netfilter/ipvs/ |
D | Kconfig | 258 comment 'IPVS application helper' 261 tristate "FTP protocol helper" 269 clients in ftp connections directly, so FTP protocol helper is
|
/linux-4.1.27/drivers/staging/lustre/lustre/ldlm/ |
D | ldlm_request.c | 2015 struct iter_helper_data *helper = closure; in ldlm_iter_helper() local 2017 return helper->iter(lock, helper->closure); in ldlm_iter_helper() 2034 struct iter_helper_data helper = { in ldlm_namespace_foreach() local 2040 ldlm_res_iter_helper, &helper); in ldlm_namespace_foreach()
|
/linux-4.1.27/Documentation/fb/ |
D | uvesafb.txt | 11 Unlike other drivers, uvesafb makes use of a userspace helper called 23 Note that the v86d userspace helper has to be available at all times in
|
/linux-4.1.27/Documentation/driver-model/ |
D | driver.txt | 122 the driver. The LDM core provides a helper function to operate on all 123 the devices a driver controls. This helper locks the driver on each
|
D | bus.txt | 69 The LDM core provides helper functions for iterating over each list.
|
/linux-4.1.27/drivers/regulator/ |
D | Makefile | 6 obj-$(CONFIG_REGULATOR) += core.o dummy.o fixed-helper.o helpers.o devres.o
|
/linux-4.1.27/Documentation/scsi/ |
D | megaraid.txt | 40 then perhaps you need a single small helper module (lsiioctl or some
|
D | libsas.txt | 299 which is just a helper, from their tasklet.
|
D | ChangeLog.megaraid | 572 then perhaps you need a single small helper module (lsiioctl or some
|
/linux-4.1.27/fs/cifs/ |
D | Kconfig | 91 Enables an upcall mechanism for CIFS which accesses userspace helper 159 an upcall mechanism for CIFS which contacts userspace helper
|
/linux-4.1.27/drivers/gpu/drm/gma500/ |
D | framebuffer.c | 540 static int psbfb_probe(struct drm_fb_helper *helper, in psbfb_probe() argument 544 container_of(helper, struct psb_fbdev, psb_fb_helper); in psbfb_probe()
|
/linux-4.1.27/drivers/devfreq/ |
D | Kconfig | 26 used with the devfreq device, you may use OPP helper
|
/linux-4.1.27/Documentation/networking/ |
D | nf_conntrack-sysctl.txt | 85 Enable automatic conntrack helper assignment.
|
D | README.ipw2100 | 184 See the Sysfs helper file 'rf_kill' for determining the state of the RF switch
|
D | phy.txt | 146 register a helper function when connecting to the PHY, which will be called
|
D | filter.txt | 172 Under tools/net/ there's a small helper tool called bpf_asm which can
|
D | can.txt | 1166 only performed inside the CAN drivers, preferably with the helper
|
/linux-4.1.27/include/media/ |
D | v4l2-ctrls.h | 227 struct v4l2_ctrl_helper *helper; member
|
/linux-4.1.27/block/ |
D | Kconfig | 69 bool "Block layer SG support v4 helper lib"
|
/linux-4.1.27/Documentation/vm/ |
D | page_owner.txt | 66 1) Build user-space helper
|
D | split_page_table_lock | 94 Please, never access page->ptl directly -- use appropriate helper.
|
/linux-4.1.27/include/linux/ |
D | drbd_genl.h | 218 __str_field(13, DRBD_GENLA_F_MANDATORY, helper, 32)
|
/linux-4.1.27/lib/ |
D | Makefile | 109 obj-$(CONFIG_IOMMU_HELPER) += iommu-helper.o iommu-common.o
|
D | Kconfig.debug | 174 This creates the required links to GDB helper scripts in the 175 build directory. If you load vmlinux into gdb, the helper 253 for user-space helper.
|
/linux-4.1.27/Documentation/virtual/uml/ |
D | UserModeLinux-HOWTO.txt | 47 6.6 TUN/TAP with the uml_net helper 391 Many features of the UML kernel require a user-space helper program, 395 o port-helper - Used by consoles which connect to xterms or ports 417 dealing with consoles or command-line switches to the helper programs 854 There is a new helper, uml_net, which does the host setup that 902 helper, which is a security advantage. 922 considered obsolete in 2.4. Also, the root helper only needs to 926 exploit the helper's root privileges. 1000 You will likely need the setuid helper, or the switch daemon, or both. 1006 install them. The helper is uml_net, in CVS /tools/uml_net, and the [all …]
|
/linux-4.1.27/Documentation/watchdog/ |
D | watchdog-kernel-api.txt | 194 * use the following helper function: 202 To get or set driver specific data the following two helper functions should be
|
/linux-4.1.27/Documentation/PCI/ |
D | pcieaer-howto.txt | 205 3.3 helper functions 247 A: It could call the helper functions to enable AER in devices and
|
/linux-4.1.27/Documentation/video4linux/bttv/ |
D | Insmod-options | 29 autoload=0/1 autoload helper modules (tuner, audio).
|
D | Sound-FAQ | 28 example. If your board has one, you might have to load a helper
|
/linux-4.1.27/Documentation/serial/ |
D | driver | 27 The serial core provides a few helper functions. This includes identifing 31 There is also a helper function (uart_write_console) which performs a
|
/linux-4.1.27/Documentation/fault-injection/ |
D | fault-injection.txt | 143 provide boot option to configure it. There is a helper function for it:
|
/linux-4.1.27/drivers/usb/phy/ |
D | Kconfig | 77 Enable this to support Samsung USB phy helper driver for Samsung SoCs.
|
/linux-4.1.27/drivers/mmc/host/ |
D | Kconfig | 110 tristate "SDHCI platform and OF driver helper" 113 This selects the common helper functions support for Secure Digital 624 This selects the common helper functions support for Host Controller
|
/linux-4.1.27/Documentation/fmc/ |
D | identifiers.txt | 38 generate the FRU binary blob, based on an helper libipmi by Manohar
|
D | carrier.txt | 186 Clients should call rhe new helper, fmc_reprogram, which both
|
/linux-4.1.27/drivers/media/i2c/ |
D | Kconfig | 24 menu "Encoders, decoders, sensors and other helper chips" 691 comment "Miscellaneous helper chips"
|
/linux-4.1.27/drivers/input/serio/ |
D | Kconfig | 231 provided keymap helper utility.
|
/linux-4.1.27/Documentation/scheduler/ |
D | completion.txt | 38 or complete_all(). Further there are some helper functions for checking the
|
/linux-4.1.27/Documentation/gpio/ |
D | driver.txt | 83 gpiochip_set_chained_irqchip() helper function, and the GPIO irqchip
|
/linux-4.1.27/Documentation/devicetree/ |
D | usage-model.txt | 202 several times with different helper callbacks to parse device tree 205 during early boot. Typically the early_init_dt_scan_chosen() helper
|
/linux-4.1.27/Documentation/sound/alsa/ |
D | hda_codec.txt | 320 The input MUX helper callbacks for such a control are provided, too:
|
/linux-4.1.27/arch/arm/mach-s3c24xx/ |
D | Kconfig | 368 Internal helper functions for S3C2416 based SDHCI systems
|
/linux-4.1.27/Documentation/ioctl/ |
D | botching-up-ioctls.txt | 105 how you handle ioctl restarting - e.g. drm has a tiny drmIoctl helper in its
|
/linux-4.1.27/Documentation/locking/ |
D | ww-mutex-design.txt | 110 Furthermore the lock helper can use propagate the -EALREADY return code back to
|
/linux-4.1.27/arch/xtensa/configs/ |
D | iss_defconfig | 656 # Crypto core or helper
|
/linux-4.1.27/Documentation/trace/ |
D | ftrace-design.txt | 273 You will also need the helper function ftrace_call_adjust(). Most people
|
/linux-4.1.27/fs/befs/ |
D | ChangeLog | 308 And helper functions.
|
/linux-4.1.27/drivers/net/irda/ |
D | Kconfig | 377 This driver relies on platform specific helper routines so
|
/linux-4.1.27/tools/perf/ |
D | design.txt | 456 - support for atomic64 types (and associated helper functions)
|
/linux-4.1.27/drivers/net/wireless/ |
D | mwl8k.c | 744 const struct firmware *helper = priv->fw_helper; in mwl8k_load_firmware() local 746 if (helper == NULL) { in mwl8k_load_firmware() 752 rc = mwl8k_load_fw_image(priv, helper->data, helper->size); in mwl8k_load_firmware()
|
/linux-4.1.27/arch/arm64/ |
D | Kconfig | 746 the user helper functions, VFP support and the ptrace interface are
|
/linux-4.1.27/tools/perf/Documentation/ |
D | perf-script-python.txt | 274 entirety below (syscall_name() helper is not yet available, you can
|
/linux-4.1.27/net/ipv4/ |
D | Kconfig | 184 This is helper module to demultiplex GRE packets on GRE version field criteria.
|
/linux-4.1.27/arch/arm/mm/ |
D | Kconfig | 807 helper code to userspace in read only form at a fixed location
|
/linux-4.1.27/Documentation/sysctl/ |
D | kernel.txt | 219 core files to a user space helper (when the first character of
|
/linux-4.1.27/crypto/ |
D | Kconfig | 22 comment "Crypto core or helper"
|
/linux-4.1.27/ |
D | CREDITS | 1758 D: netfilter: helper target 3807 D: netfilter: new nat helper infrastructure
|
/linux-4.1.27/Documentation/laptops/ |
D | thinkpad-acpi.txt | 359 used as a helper to remap keys, only. They are particularly useful when
|
/linux-4.1.27/drivers/video/fbdev/ |
D | Kconfig | 740 requires a userspace helper application called 'v86d'. See
|