/Linux-v4.19/tools/bpf/ |
D | Makefile.helpers | 25 HELPERS_RST = bpf-helpers.rst 31 helpers: man7 45 helpers-clean: 49 helpers-install: helpers 54 helpers-uninstall: 59 .PHONY: helpers helpers-clean helpers-install helpers-uninstall
|
/Linux-v4.19/tools/bpf/bpftool/Documentation/ |
D | Makefile | 19 include ../../Makefile.helpers 26 man: man8 helpers 37 clean: helpers-clean 41 install: man helpers-install 46 uninstall: helpers-uninstall
|
/Linux-v4.19/Documentation/gpu/ |
D | drm-kms-helpers.rst | 12 This distinction between core code and helpers is especially strong in the 17 There are a few areas these helpers can grouped into: 20 helpers. Old drivers still often use the legacy CRTC helpers. They both share 23 also the simple display pipe helpers. 25 * There's a big pile of helpers for handling outputs. First the generic bridge 26 helpers for handling encoder and transcoder IP blocks. Second the panel helpers 28 helpers for the various sink standards (DisplayPort, HDMI, MIPI DSI). Finally 29 there's also generic helpers for handling output probing, and for dealing with 32 * The last group of helpers concerns itself with the frontend side of a display 93 :doc: fbdev helpers [all …]
|
D | tinydrm.rst | 23 Additional helpers 26 .. kernel-doc:: include/drm/tinydrm/tinydrm-helpers.h 29 .. kernel-doc:: drivers/gpu/drm/tinydrm/core/tinydrm-helpers.c
|
D | todo.rst | 51 3.19 has the atomic modeset interfaces and helpers, so drivers can now be 71 helpers (and drivers then moved over to clipped coordinates). Probably the 72 helper should also be moved from drm_plane_helper.c to the atomic helpers, to 73 avoid confusion - the other helpers in that file are all deprecated legacy 74 helpers. 78 Convert early atomic drivers to async commit helpers 81 For the first year the atomic modeset helpers didn't support asynchronous / 86 One issue with the helpers is that they require that drivers handle completion 220 Would be great to refactor this all into a set of small common helpers. 228 allow us to implement generic helpers for waiting for a bo, allowing for quite a [all …]
|
D | index.rst | 11 drm-kms-helpers
|
/Linux-v4.19/scripts/ |
D | bpf_helpers_doc.py | 74 self.helpers = [] 156 self.helpers.append(helper) 161 print('Parsed description of %d helper function(s)' % len(self.helpers), 172 def __init__(self, helpers): argument 173 self.helpers = helpers 186 for helper in self.helpers: 420 printer = PrinterRST(headerParser.helpers)
|
/Linux-v4.19/scripts/coccinelle/api/ |
D | drm-get-put.cocci | 3 /// Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and 4 /// drm_*_unreference() helpers. 77 msg="WARNING: use get/put helpers to reference and dereference %s" % (object)
|
/Linux-v4.19/drivers/media/v4l2-core/ |
D | v4l2-ctrls.c | 2868 struct v4l2_ctrl_helper *helpers, in prepare_ext_ctrls() argument 2875 for (i = 0, h = helpers; i < cs->count; i++, h++) { in prepare_ext_ctrls() 2937 helpers[i].mref->helper = NULL; in prepare_ext_ctrls() 2938 for (i = 0, h = helpers; i < cs->count; i++, h++) { in prepare_ext_ctrls() 2975 struct v4l2_ctrl_helper *helpers = helper; in v4l2_g_ext_ctrls() local 2992 helpers = kvmalloc_array(cs->count, sizeof(helper[0]), in v4l2_g_ext_ctrls() 2994 if (helpers == NULL) in v4l2_g_ext_ctrls() 2998 ret = prepare_ext_ctrls(hdl, cs, helpers, true); in v4l2_g_ext_ctrls() 3002 if (helpers[i].ctrl->flags & V4L2_CTRL_FLAG_WRITE_ONLY) in v4l2_g_ext_ctrls() 3012 if (helpers[i].mref == NULL) in v4l2_g_ext_ctrls() [all …]
|
/Linux-v4.19/Documentation/arm/ |
D | kernel_user_helpers.txt | 23 User space is expected to bypass those helpers and implement those things 30 of not using these kernel helpers if your compiled code is not going to 33 New helpers may be added over time, so an older kernel may be missing some 34 helpers present in a newer kernel. For this reason, programs must check 38 if the required helpers are not provided by the kernel version that 52 This field contains the number of helpers being implemented by the
|
/Linux-v4.19/tools/bpf/bpftool/ |
D | .gitignore | 4 bpf-helpers.*
|
/Linux-v4.19/drivers/gpu/drm/tinydrm/core/ |
D | Makefile | 1 tinydrm-y := tinydrm-core.o tinydrm-pipe.o tinydrm-helpers.o
|
/Linux-v4.19/drivers/net/ethernet/netronome/nfp/bpf/ |
D | main.c | 286 bpf->helpers.map_lookup = readl(&cap->func_addr); in nfp_bpf_parse_cap_func() 289 bpf->helpers.map_update = readl(&cap->func_addr); in nfp_bpf_parse_cap_func() 292 bpf->helpers.map_delete = readl(&cap->func_addr); in nfp_bpf_parse_cap_func() 295 bpf->helpers.perf_event_output = readl(&cap->func_addr); in nfp_bpf_parse_cap_func()
|
D | verifier.c | 190 bpf->helpers.map_lookup, reg1) || in nfp_bpf_check_call() 198 bpf->helpers.map_update, reg1) || in nfp_bpf_check_call() 207 bpf->helpers.map_delete, reg1) || in nfp_bpf_check_call() 225 if (!bpf->helpers.perf_event_output) { in nfp_bpf_check_call()
|
/Linux-v4.19/drivers/media/platform/qcom/venus/ |
D | Makefile | 4 venus-core-objs += core.o helpers.o firmware.o \
|
/Linux-v4.19/Documentation/driver-api/gpio/ |
D | index.rst | 44 sysfs helpers
|
/Linux-v4.19/kernel/bpf/ |
D | Makefile | 4 obj-$(CONFIG_BPF_SYSCALL) += syscall.o verifier.o inode.o helpers.o tnum.o
|
/Linux-v4.19/drivers/gpu/drm/amd/display/ |
D | TODO | 77 14. core/dc_debug.c, consider switching to the atomic state debug helpers and 85 16. Move to core SCDC helpers (I think those are new since initial DC review). 95 subsystem if we try to move as much of that into helpers/core as possible, and
|
/Linux-v4.19/Documentation/bpf/ |
D | bpf_design_QA.rst | 69 BPF programs and programs call kernel helpers with zero overhead. 191 and bpf_probe_read_str() helpers. Networking programs cannot read 192 arbitrary memory, since they don't have access to these helpers. 219 helpers, etc be added out of kernel module code?
|
/Linux-v4.19/drivers/gpu/drm/gma500/ |
D | cdv_intel_hdmi.c | 198 const struct drm_encoder_helper_funcs *helpers in cdv_hdmi_set_property() local 200 helpers->mode_set(encoder, &crtc->saved_mode, in cdv_hdmi_set_property()
|
/Linux-v4.19/Documentation/vm/ |
D | split_page_table_lock.rst | 16 There are helpers to lock/unlock a table and other accessor functions: 46 Hugetlb-specific helpers:
|
D | hmm.rst | 7 Provide infrastructure and helpers to integrate non-conventional memory (device 12 HMM also provides optional helpers for SVM (Share Virtual Memory), i.e., 114 To achieve this, HMM offers a set of helpers to populate the device page table 120 why HMM provides helpers to factor out everything that can be while leaving the 129 anisms. Here again, HMM only provides helpers, first to hotplug new ZONE_DEVICE 274 HMM provides a set of helpers to register and hotplug device memory as a new 342 It is important to stress that these migration helpers allow for holes in the
|
/Linux-v4.19/Documentation/pcmcia/ |
D | devicetable.txt | 10 You should use the helpers in include/pcmcia/device_id.h for generating the
|
/Linux-v4.19/drivers/scsi/libsas/ |
D | Kconfig | 31 This provides transport specific helpers for SAS drivers which
|
/Linux-v4.19/Documentation/devicetree/bindings/dma/ |
D | arm-pl330.txt | 40 as required by the generic dma device tree binding helpers. The dma
|