Home
last modified time | relevance | path

Searched +full:pre +full:- +full:programs (Results 1 – 25 of 160) sorted by relevance

1234567

/linux/Documentation/gpu/amdgpu/display/
H A Ddisplay-manager.rst8 .. kernel-doc:: drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
11 .. kernel-doc:: drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h
17 .. kernel-doc:: drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
20 .. kernel-doc:: drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
26 .. kernel-doc:: drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_irq.c
29 .. kernel-doc:: drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_irq.c
32 .. kernel-doc:: drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
38 .. kernel-doc:: drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
41 .. kernel-doc:: drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
47 .. kernel-doc:: drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_color.c
[all …]
/linux/kernel/
H A DKconfig.preempt1 # SPDX-License-Identifier: GPL-2.0-only
52 bool "Preemptible Kernel (Low-Latency Desktop)"
71 bool "Fully Preemptible Kernel (Real-Time)"
75 This option turns the kernel into a real-time kernel by replacing
77 preemptible priority-inheritance aware variants, enforcing
79 non-preemptible sections. This makes the kernel, except for very
85 require real-time guarantees.
108 provide a pre-built kernel binary to reduce the number of kernel
115 Interesting if you want the same pre-built kernel should be used for
123 selection across SMT siblings. When enabled -- see
[all …]
/linux/tools/bpf/bpftool/Documentation/
H A Dbpftool-gen.rst1 .. SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
4 bpftool-gen
6 -------------------------------------------------------------------------------
7 tool for BPF code-generation
8 -------------------------------------------------------------------------------
19 *OPTIONS* := { |COMMON_OPTIONS| | { **-L** | **--use-loader** } }
38 The rules of BPF static linking are mostly the same as for user-space
56 shorten and simplify code to load and work with BPF programs from userspace
64 In addition to simple and reliable access to maps and programs, skeleton
66 within BPF object. When requested, supported BPF programs will be
[all …]
/linux/Documentation/bpf/libbpf/
H A Dlibbpf_overview.rst1 .. SPDX-License-Identifier: GPL-2.0
7 libbpf is a C-based library containing a BPF loader that takes compiled BPF
9 heavy lifting of loading, verifying, and attaching BPF programs to various
13 The following are the high-level features supported by libbpf:
15 * Provides high-level and low-level APIs for user space programs to interact
16 with BPF programs. The low-level APIs wrap all the bpf system call
17 functionality, which is useful when users need more fine-grained control
18 over the interactions between user space and BPF programs.
20 The skeleton file simplifies the process for the user space programs to access
21 global variables and work with BPF programs.
[all …]
/linux/fs/smb/server/
H A DKconfig33 You also need to install user space programs which can be found
34 in ksmbd-tools, available from
35 https://github.com/cifsd-team/ksmbd-tools.
38 (https://github.com/cifsd-team/ksmbd-tools/blob/master/README).
40 ksmbd kernel server includes support for auto-negotiation,
41 Secure negotiate, Pre-authentication integrity, oplock/lease,
42 compound requests, multi-credit, packet signing, RDMA(smbdirect),
43 smb3 encryption, copy-offload, secure per-user session
/linux/Documentation/kbuild/
H A Dmakefiles.rst29 architecture-specific information to the top Makefile.
34 any built-in or modular targets.
80 ----------------
90 obj-y += foo.o
95 If foo.o shall be built as a module, the variable obj-m is used.
100 obj-$(CONFIG_FOO) += foo.o
102 $(CONFIG_FOO) evaluates to either y (for built-in) or m (for module).
106 Built-in object goals - obj-y
107 -----------------------------
110 in the $(obj-y) lists. These lists depend on the kernel
[all …]
H A Dkbuild.rst10 -------------
16 ---------------
21 -----------------------
26 ----------------------
35 ---------
41 -------
42 Additional options to the assembler (for built-in and modules).
45 -------------
49 -------------
50 Additional assembler options for built-in.
[all …]
H A Dreproducible-builds.rst17 ----------
42 ----------
50 ------------------
52 When the kernel is built out-of-tree, debug information may include
54 including the ``-fdebug-prefix-map`` option in the `KCFLAGS`_ variable.
57 to an absolute filename in an out-of-tree build. Kbuild automatically
58 uses the ``-fmacro-prefix-map`` option to prevent this, if it is
62 `prefix-map options`_.
65 ----------------------------------
67 The build processes for some programs under the ``tools/``
[all …]
/linux/Documentation/bpf/
H A Dprog_flow_dissector.rst1 .. SPDX-License-Identifier: GPL-2.0
13 BPF flow dissector is an attempt to reimplement C-based flow dissector logic
20 BPF flow dissector programs operate on an ``__sk_buff``. However, only the
26 * ``nhoff`` - initial offset of the networking header
27 * ``thoff`` - initial offset of the transport header, initialized to nhoff
28 * ``n_proto`` - L3 protocol type, parsed out of L2 header
29 * ``flags`` - optional flags
38 __sk_buff->data
41 In the VLAN-less case, this is what the initial state of the BPF flow
44 +------+------+------------+-----------+
[all …]
H A Dmap_cgrp_storage.rst1 .. SPDX-License-Identifier: GPL-2.0-only
8 The ``BPF_MAP_TYPE_CGRP_STORAGE`` map type represents a local fix-sized
10 The programs are made available by the same Kconfig. The
56 ptr = bpf_cgrp_storage_get(&cgrp_storage, task->cgroups->dfl_cgrp, 0,
96 ``bpf_get_local_storage()`` always returns non-NULL local storage.
100 ``bpf_map_update_elem()`` to pre-allocate local storage before a BPF program
H A Dmap_array.rst1 .. SPDX-License-Identifier: GPL-2.0-only
9 - ``BPF_MAP_TYPE_ARRAY`` was introduced in kernel version 3.19
10 - ``BPF_MAP_TYPE_PERCPU_ARRAY`` was introduced in version 4.6
13 storage. The key type is an unsigned 32-bit integer (4 bytes) and the map is
15 creation time. All array elements are pre-allocated and zero initialized when
22 setting the flag ``BPF_F_MMAPABLE``. The map definition is page-aligned and
23 starts on the first page. Sufficient page-sized and page-aligned blocks of
25 which in some cases will result in over-allocation of memory. The benefit of
26 using this is increased performance and ease of use since userspace programs
33 ----------
[all …]
H A Dmap_hash.rst1 .. SPDX-License-Identifier: GPL-2.0-only
3 .. Copyright (C) 2022-2023 Isovalent, Inc.
10 - ``BPF_MAP_TYPE_HASH`` was introduced in kernel version 3.19
11 - ``BPF_MAP_TYPE_PERCPU_HASH`` was introduced in version 4.6
12 - Both ``BPF_MAP_TYPE_LRU_HASH`` and ``BPF_MAP_TYPE_LRU_PERCPU_HASH``
20 to the max_entries limit that you specify. Hash maps use pre-allocation
22 used to disable pre-allocation when it is too memory expensive.
25 CPU. The per-cpu values are stored internally in an array.
40 **BPF_F_NO_COMMON_LRU** Per-CPU LRU, global map Per-CPU LRU, per-cpu map
41 **!BPF_F_NO_COMMON_LRU** Global LRU, global map Global LRU, per-cpu map
[all …]
/linux/drivers/accessibility/speakup/
H A DKconfig1 # SPDX-License-Identifier: GPL-2.0
12 point your browser at <http://www.linux-speakup.org/>.
37 requires software to be pre-loaded on to the card before
123 the dec_pc.tgz file from linux-speakup.org. It is in
125 contains the software which must be pre-loaded on to the
129 PC software has been pre-loaded on to the board.
171 register a device /dev/softsynth which midware programs
175 it built-in to the kernel or loaded as a module.
/linux/tools/perf/Documentation/
H A Dperf-stat.txt1 perf-stat(1)
5 ----
6 perf-stat - Run a command and gather performance counter statistics
9 --------
11 'perf stat' [-e <EVENT> | --event=EVENT] [-a] <command>
12 'perf stat' [-e <EVENT> | --event=EVENT] [-a] \-- <command> [<options>]
13 'perf stat' [-e <EVENT> | --event=EVENT] [-a] record [-o file] \-- <command> [<options>]
14 'perf stat' report [-i file]
17 -----------
23 -------
[all …]
/linux/Documentation/arch/arm64/
H A Dkdump.rst9 reserved memory is needed to pre-load the kdump kernel and boot such
13 accommodate the kdump kernel and the user space programs needed for the
24 - crashkernel=size@offset
25 - crashkernel=size
26 - crashkernel=size,high crashkernel=size,low
32 limit, usually decided by the accessible address bits of the DMA-capable
44 --------------------------
46 The crashkernel memory must be reserved at the user-specified region or
51 -------------------
70 ---------------------------------------------
[all …]
/linux/Documentation/process/
H A Dstable-api-nonsense.rst8 Greg Kroah-Hartman <greg@kroah.com>
18 The kernel to userspace interface is the one that application programs use,
20 will not break. I have old programs that were built on a pre 0.9something
27 -----------------
38 -----
41 to worry about the in-kernel interfaces changing. For the majority of
59 -----------------------
64 - Depending on the version of the C compiler you use, different kernel
71 - Depending on what kernel build options you select, a wide range of
74 - different structures can contain different fields
[all …]
/linux/drivers/gpu/drm/i915/gt/
H A Dintel_wopcm.c1 // SPDX-License-Identifier: MIT
3 * Copyright © 2017-2019 Intel Corporation
26 * | Size +--------------------+
28 * | | +--------------------+
30 * | | +------------------- +
34 * | +------------------- + <== HuC Firmware Top
73 * intel_wopcm_init_early() - Early initialization of the WOPCM.
81 struct drm_i915_private *i915 = gt->i915; in intel_wopcm_init_early()
87 wopcm->size = GEN11_WOPCM_SIZE; in intel_wopcm_init_early()
89 wopcm->size = GEN9_WOPCM_SIZE; in intel_wopcm_init_early()
[all …]
/linux/sound/usb/line6/
H A Ddriver.h1 /* SPDX-License-Identifier: GPL-2.0-only */
5 * Copyright (C) 2004-2010 Markus Grabner (line6@grabner-graz.at)
77 * This can be used to address the device in ALSA programs as
109 /* device provides low-level information */
163 /* Circular buffer for non-MIDI control messages */
176 /* If MIDI is supported, buffer_message contains the pre-processed data;
/linux/arch/x86/kernel/
H A Dsignal.c1 // SPDX-License-Identifier: GPL-2.0
6 * 1997-11-28 Modified for POSIX.1b signals by Richard Henderson
7 * 2000-06-20 Pentium III FXSR, SSE support by Gareth Hughes
8 * 2000-2002 x86-64 support by Andi Kleen
25 #include <linux/user-return-notifier.h>
28 #include <linux/entry-common.h>
49 ksig->ka.sa.sa_flags & SA_IA32_ABI; in is_ia32_compat_frame()
60 ksig->ka.sa.sa_flags & SA_X32_ABI; in is_x32_frame()
85 /* x86 ABI requires 16-byte alignment */
88 #define MAX_FRAME_PADDING (FRAME_ALIGNMENT - 1)
[all …]
/linux/Documentation/admin-guide/aoe/
H A Daoe.rst11 http://support.coraid.com/support/linux/EtherDrive-2.6-HOWTO.html
16 http://support.coraid.com/support/linux/EtherDrive-2.6-HOWTO-5.html#ss5.19
18 The aoetools are userland programs that are designed to work with this
23 The scripts in this Documentation/admin-guide/aoe directory are intended to
35 There is a udev-install.sh script that shows how to install these
86 a convenient way. Users with aoetools should use the aoe-stat
89 root@makki root# sh Documentation/admin-guide/aoe/status.sh
114 whitespace-separated list. Unlike the old character device, the
118 interfaces. The aoetools package provides an aoe-discover script
125 There is a boot option for the built-in aoe driver and a
[all …]
/linux/arch/arm/mm/
H A DKconfig1 # SPDX-License-Identifier: GPL-2.0
17 A 32-bit RISC microprocessor based on the ARM7 processor core
36 A 32-bit RISC processor with 8kByte Cache, Write Buffer and
53 A 32-bit RISC processor with 8KB cache or 4KB variants,
69 A 32-bit RISC microprocessor based on the ARM9 processor core
182 ARM940T is a member of the ARM9TDMI family of general-
184 instruction and 4KB data cases, each with a 4-word line
190 # ARM946E-S
201 ARM946E-S is a member of the ARM9E-S family of high-
202 performance, 32-bit system-on-chip processor solutions.
[all …]
/linux/drivers/message/fusion/
H A Dmptlan.h7 * Copyright (c) 2000-2008 LSI Corporation
8 * (mailto:DL-MPTFusionLinux@lsi.com)
11 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
25 LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
31 programs or equipment, and unavailability or interruption of operations.
44 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
46 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
76 /* Override mptbase.h by pre-defining these! */
125 #define NETDEV_PTR_TO_IOC_NAME_s(d) (NETDEV_TO_LANPRIV_PTR(d)->mpt_dev->name)
126 #define IOC_AND_NETDEV_NAMES_s_s(d) NETDEV_PTR_TO_IOC_NAME_s(d), (d)->name
/linux/Documentation/devicetree/bindings/media/i2c/
H A Dmaxim,max9286.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
4 ---
6 $schema: http://devicetree.org/meta-schemas/core.yaml#
11 - Jacopo Mondi <jacopo+renesas@jmondi.org>
12 - Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
13 - Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
14 - Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
18 Serial Links (GMSL) and outputs them on a CSI-2 D-PHY port using up to 4 data
28 '#address-cells':
31 '#size-cells':
[all …]
/linux/tools/testing/selftests/hid/tests/
H A Dbase.py2 # SPDX-License-Identifier: GPL-2.0
3 # -*- coding: utf-8 -*-
159 # for example ("playstation", "hid-playstation")
162 # List of in kernel HID-BPF object files to load
164 # Any existing pre-loaded HID-BPF module will be removed
167 # for example '("xppen-ArtistPro16Gen2.bpf.o", True)'
225 sysfs_path = Path("/sys/module") / kernel_module.replace("-", "_")
244 udev_hid_bpf = shutil.which("udev-hid-bpf")
246 pytest.skip("udev-hid-bpf not found in $PATH, skipping")
254 # We need to start `udev-hid-bpf` in the background
[all …]
/linux/Documentation/admin-guide/
H A Dbinfmt-misc.rst6 This includes for example compiled Java(TM), Python or Emacs programs.
9 with which binary. Binfmt_misc recognises the binary-type by matching some bytes
16 mount binfmt_misc -t binfmt_misc /proc/sys/fs/binfmt_misc
24 - ``name``
28 - ``type``
30 - ``offset``
34 - ``magic``
36 may contain hex-encoded characters like ``\x0a`` or ``\xA4``. Note that you
43 - ``mask``
49 - ``interpreter``
[all …]

1234567