| /linux-6.15/Documentation/RCU/Design/Memory-Ordering/ |
| H A D | Tree-RCU-Memory-Ordering.rst | 19 for non-idle non-offline code. 20 Any code that happens after the end of a given RCU grace period is guaranteed 23 Similarly, any code that happens before the beginning of a given RCU grace 28 of code for which preemption is disabled. 30 an extremely small region of preemption-disabled code, one can think of 128 | poll_state_synchronize_rcu(). Consider this code:: | 175 ``wait_for_completion()`` in the ``synchronize_rcu()`` code path. 291 likely from an ``RCU_SOFTIRQ`` handler. Another code path in the middle 294 final code path on the right is taken only in kernels built with 301 There are a few other code paths within grace-period processing that [all …]
|
| /linux-6.15/Documentation/process/ |
| H A D | 2.Process.rst | 31 changesets with changes to several hundred thousand lines of code. 5.x is 37 cycle, the "merge window" is said to be open. At that time, code which is 64 touch no in-tree code, they cannot cause regressions and should be safe to 197 to forget about code after merging it, that sort of behavior tends to 198 leave a poor impression in the development community. Merging code 201 continue to take responsibility for the code if it is to remain useful 220 The kernel code base is logically broken down into a set of subsystems: 223 who has overall responsibility for the code within that subsystem. These 332 code in staging which is not seeing regular progress will eventually be 348 By far the dominant source code management system used by the kernel [all …]
|
| /linux-6.15/drivers/gpu/drm/tegra/ |
| H A D | falcon.h | 96 struct falcon_firmware_section code; member
|
| /linux-6.15/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/ |
| H A D | priv.h | 16 } code; member
|
| /linux-6.15/tools/virtio/linux/ |
| H A D | dma-mapping.h | 6 # error Virtio userspace code does not support CONFIG_HAS_DMA
|
| /linux-6.15/arch/arm/boot/dts/nxp/mxs/ |
| H A D | imx28-duckbill-2-enocean.dts | 39 linux,code = <KEY_NEW>;
|
| /linux-6.15/arch/arm64/boot/dts/apm/ |
| H A D | apm-merlin.dts | 27 linux,code = <116>;
|
| /linux-6.15/include/net/ |
| H A D | protocol.h | 59 u8 type, u8 code, int offset,
|
| /linux-6.15/include/uapi/linux/ |
| H A D | uinput.h | 103 __u16 code; /* axis code */ member
|
| H A D | if_pppox.h | 150 __u8 code; member
|
| H A D | icmp.h | 91 __u8 code; member
|
| /linux-6.15/Documentation/translations/zh_TW/ |
| H A D | index.rst | 30 行爲準則 <process/code-of-conduct>
|
| /linux-6.15/Documentation/admin-guide/sysctl/ |
| H A D | sunrpc.rst | 25 source code in net/sunrpc/ for more information.
|
| /linux-6.15/Documentation/driver-api/gpio/ |
| H A D | driver.rst | 58 driver code: 420 call into the core gpiolib code: 422 .. code-block:: c 436 * and then call into the core code to synchronise the 452 * after having called into the core code to synchronise 496 .. code-block:: c 510 * and then call into the core code to synchronise the 526 * after having called into the core code to synchronise 572 .. code-block:: c 587 * and then call into the core code to synchronise the [all …]
|
| /linux-6.15/Documentation/kernel-hacking/ |
| H A D | hacking.rst | 14 requirements for kernel code: its goal is to serve as a primer for Linux 16 details: that's what the code is for, and I ignore whole tracts of 149 Let's keep it that way. Your code should be 64-bit clean, and 184 ``-ERESTARTSYS`` error. The system call entry code will switch back to 217 scheduling code will enable them for you, but that's probably not 484 symbols: see below). Before calling into module code, you should call 511 code. 700 Be wary when using long long in the kernel, the code gcc generates for 718 pre-processor statements throughout the source code. 755 it implies a more-than-passing commitment to some part of the code. [all …]
|
| /linux-6.15/Documentation/driver-api/usb/ |
| H A D | gadget.rst | 67 additional layers in user space code. The ``gadget`` API is used by the 115 Such drivers may be modules of proprietary code, although that 124 - user mode code, using generic (gadgetfs) or application specific 148 be an option. Such user mode code will not necessarily be subject to 166 potential example of particular interest is code implementing standard 169 be remotely debugged. Most such USB protocol code doesn't need to be 193 example source code (such as that for "Gadget Zero"), to fully 239 know many details of the hardware, but driver setup/configuration code 299 code. They involve reporting requirements during the ``SET_CONFIGURATION`` 405 model as one of two mandatory options. Gadgets using this code look to a [all …]
|
| /linux-6.15/Documentation/gpu/ |
| H A D | drm-vm-bind-locking.rst | 153 Note that in all the code examples given below we use simplified 154 pseudo-code. In particular, the dma_resv deadlock avoidance algorithm 164 .. code-block:: C 202 .. code-block:: C 230 code holding the object's dma_resv while revalidating will ensure a 270 .. code-block:: C 303 .. code-block:: C 337 .. code block:: C 426 .. code-block:: C 470 The code between ``mmu_interval_read_begin()`` and the [all …]
|
| /linux-6.15/drivers/net/ipa/ |
| H A D | gsi.c | 107 u8 code; member 1176 gsi_isr_glob_chan_err(struct gsi *gsi, u32 err_ee, u32 channel_id, u32 code) in gsi_isr_glob_chan_err() argument 1178 if (code == GSI_OUT_OF_RESOURCES) { in gsi_isr_glob_chan_err() 1186 channel_id, err_ee, code); in gsi_isr_glob_chan_err() 1191 gsi_isr_glob_evt_err(struct gsi *gsi, u32 err_ee, u32 evt_ring_id, u32 code) in gsi_isr_glob_evt_err() argument 1193 if (code == GSI_OUT_OF_RESOURCES) { in gsi_isr_glob_evt_err() 1205 evt_ring_id, err_ee, code); in gsi_isr_glob_evt_err() 1214 enum gsi_err_code code; in gsi_isr_glob_err() local 1233 code = reg_decode(log_reg, ERR_CODE, val); in gsi_isr_glob_err() 1236 gsi_isr_glob_chan_err(gsi, ee, which, code); in gsi_isr_glob_err() [all …]
|
| /linux-6.15/arch/arm64/boot/dts/qcom/ |
| H A D | sdm632-fairphone-fp3.dts | 34 linux,code = <KEY_VOLUMEUP>; 89 linux,code = <KEY_VOLUMEDOWN>;
|
| H A D | sdm632-motorola-ocean.dts | 62 linux,code = <KEY_VOLUMEUP>; 141 linux,code = <KEY_VOLUMEDOWN>;
|
| H A D | msm8916-acer-a1-724.dts | 47 linux,code = <KEY_VOLUMEUP>; 151 linux,code = <KEY_VOLUMEDOWN>;
|
| /linux-6.15/arch/arm/boot/dts/broadcom/ |
| H A D | bcm47094-dlink-dir-890l.dts | 95 linux,code = <KEY_WPS_BUTTON>; 102 linux,code = <KEY_RESTART>;
|
| /linux-6.15/arch/arm/boot/dts/ti/omap/ |
| H A D | dra7-evm-common.dtsi | 95 linux,code = <BTN_0>; 101 linux,code = <BTN_1>;
|
| /linux-6.15/net/ipv6/netfilter/ |
| H A D | nft_fib_ipv6.c | 137 regs->verdict.code = NFT_BREAK; in nft_fib6_eval_type() 185 regs->verdict.code = NFT_BREAK; in nft_fib6_eval()
|
| /linux-6.15/net/netfilter/ |
| H A D | nft_quota.c | 38 regs->verdict.code = NFT_BREAK; in nft_quota_do_eval() 58 regs->verdict.code = NFT_BREAK; in nft_quota_obj_eval()
|