Home
last modified time | relevance | path

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

1234567

/linux-6.14.4/Documentation/gpu/amdgpu/display/
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-6.14.4/kernel/
DKconfig.preempt1 # SPDX-License-Identifier: GPL-2.0-only
57 bool "Preemptible Kernel (Low-Latency Desktop)"
90 bool "Fully Preemptible Kernel (Real-Time)"
94 This option turns the kernel into a real-time kernel by replacing
96 preemptible priority-inheritance aware variants, enforcing
98 non-preemptible sections. This makes the kernel, except for very
104 require real-time guarantees.
125 provide a pre-built kernel binary to reduce the number of kernel
132 Interesting if you want the same pre-built kernel should be used for
140 selection across SMT siblings. When enabled -- see
[all …]
/linux-6.14.4/tools/bpf/bpftool/Documentation/
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-6.14.4/Documentation/bpf/libbpf/
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-6.14.4/include/uapi/linux/
Dfanotify.h1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
7 /* the following events that user-space can register for */
30 #define FAN_PRE_ACCESS 0x00100000 /* Pre-content access hook */
51 /* Deprecated - do not use this in programs and do not add new flags here! */
60 #define FAN_REPORT_PIDFD 0x00000080 /* Report pidfd for event->pid */
61 #define FAN_REPORT_TID 0x00000100 /* event->pid is thread id */
66 #define FAN_REPORT_FD_ERROR 0x00002000 /* event->fd can report error */
68 /* Convenience macro - FAN_REPORT_NAME requires FAN_REPORT_DIR_FID */
70 /* Convenience macro - FAN_REPORT_TARGET_FID requires all other FID flags */
74 /* Deprecated - do not use this in programs and do not add new flags here! */
[all …]
/linux-6.14.4/include/linux/
Dfanotify.h1 /* SPDX-License-Identifier: GPL-2.0 */
9 ((group)->fanotify_data.flags & (flag))
15 * they are uapi exposed constants. If there are programs out there using
16 * these constant, the programs may break if re-compiled with new uapi headers
86 * Directory entry modification events - reported only to directory
95 /* Pre-content events can be used to fill file content */
102 /* Events that can be reported with event->fd */
/linux-6.14.4/fs/smb/server/
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-6.14.4/Documentation/kbuild/
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 …]
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 …]
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-6.14.4/Documentation/bpf/
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 …]
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
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 …]
/linux-6.14.4/drivers/accessibility/speakup/
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-6.14.4/drivers/net/ethernet/freescale/enetc/
DKconfig1 # SPDX-License-Identifier: GPL-2.0
8 If compiled as module (M), the module name is fsl-enetc-core.
16 If compiled as module (M), the module name is nxp-enetc-pf-common.
34 If compiled as module (M), the module name is fsl-enetc.
48 based on PCIe Single Root IO Virtualization (SR-IOV) and a full range
51 If compiled as module (M), the module name is nxp-enetc4.
64 If compiled as module (M), the module name is fsl-enetc-vf.
72 If compiled as module (M), the module name is fsl-enetc-ierb.
81 If compiled as module (M), the module name is fsl-enetc-mdio.
90 programs are getting hardware time stamps on the PTP Ethernet
[all …]
/linux-6.14.4/tools/perf/Documentation/
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-6.14.4/Documentation/arch/arm64/
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-6.14.4/Documentation/process/
Dstable-api-nonsense.rst8 Greg Kroah-Hartman <[email protected]>
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-6.14.4/drivers/gpu/drm/i915/gt/
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-6.14.4/sound/usb/line6/
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-6.14.4/arch/x86/kernel/
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-6.14.4/Documentation/admin-guide/aoe/
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-6.14.4/arch/arm/mm/
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-6.14.4/drivers/message/fusion/
Dmptlan.h7 * Copyright (c) 2000-2008 LSI Corporation
8 * (mailto:DL-[email protected])
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 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
73 /* Override mptbase.h by pre-defining these! */
122 #define NETDEV_PTR_TO_IOC_NAME_s(d) (NETDEV_TO_LANPRIV_PTR(d)->mpt_dev->name)
123 #define IOC_AND_NETDEV_NAMES_s_s(d) NETDEV_PTR_TO_IOC_NAME_s(d), (d)->name
/linux-6.14.4/Documentation/devicetree/bindings/media/i2c/
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 <[email protected]>
12 - Kieran Bingham <[email protected]>
13 - Laurent Pinchart <[email protected]>
14 - Niklas Söderlund <[email protected]>
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 …]

1234567