| /linux-6.15/arch/arm/boot/dts/marvell/ |
| H A D | armada-370-seagate-personal-cloud.dtsi | 82 linux,code = <KEY_POWER>; 88 linux,code = <KEY_RESTART>; 94 linux,code = <KEY_UNKNOWN>;
|
| /linux-6.15/include/linux/ |
| H A D | zstd.h | 43 unsigned int zstd_is_error(size_t code); 56 zstd_error_code zstd_get_error_code(size_t code); 64 const char *zstd_get_error_name(size_t code);
|
| /linux-6.15/net/bridge/netfilter/ |
| H A D | ebt_ip.c | 30 u8 code; member 92 pptr->icmphdr.code < info->icmp_code[0] || in ebt_ip_mt() 93 pptr->icmphdr.code > info->icmp_code[1])) in ebt_ip_mt()
|
| H A D | ebt_ip6.c | 33 u8 code; member 99 pptr->icmphdr.code < info->icmpv6_code[0] || in ebt_ip6_mt() 100 pptr->icmphdr.code > info->icmpv6_code[1])) in ebt_ip6_mt()
|
| /linux-6.15/drivers/block/drbd/ |
| H A D | drbd_vli.h | 330 u64 code; in vli_encode_bits() local 331 int bits = __vli_encode_bits(&code, in); in vli_encode_bits() 336 return bitstream_put_bits(bs, code, bits); in vli_encode_bits()
|
| /linux-6.15/drivers/gpu/drm/nouveau/nvkm/engine/gr/ |
| H A D | gm20b.c | 56 const u64 code = (base + lsfw->app_resident_code_offset) >> 8; in gm20b_gr_acr_bld_write() local 60 .code_dma_base = lower_32_bits(code), in gm20b_gr_acr_bld_write() 66 .code_dma_base1 = upper_32_bits(code), in gm20b_gr_acr_bld_write()
|
| /linux-6.15/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/ |
| H A D | gk110.c | 88 .code.data = gk110_pmu_code, 89 .code.size = sizeof(gk110_pmu_code),
|
| /linux-6.15/arch/arm/boot/dts/broadcom/ |
| H A D | bcm4709-linksys-ea9200.dts | 35 linux,code = <KEY_WPS_BUTTON>; 41 linux,code = <KEY_RESTART>;
|
| /linux-6.15/tools/testing/selftests/net/tcp_ao/ |
| H A D | icmps-accept.c | 179 static void icmp_interfere4(uint8_t type, uint8_t code, uint32_t rcv_nxt, in icmp_interfere4() argument 203 packet.icmph.code = code; in icmp_interfere4() 204 if (code == ICMP_FRAG_NEEDED) { in icmp_interfere4() 293 static void icmp6_interfere(int type, int code, uint32_t rcv_nxt, in icmp6_interfere() argument 319 packet.icmph.icmp6_code = code; in icmp6_interfere()
|
| H A D | icmps-discard.c | 179 static void icmp_interfere4(uint8_t type, uint8_t code, uint32_t rcv_nxt, in icmp_interfere4() argument 203 packet.icmph.code = code; in icmp_interfere4() 204 if (code == ICMP_FRAG_NEEDED) { in icmp_interfere4() 293 static void icmp6_interfere(int type, int code, uint32_t rcv_nxt, in icmp6_interfere() argument 319 packet.icmph.icmp6_code = code; in icmp6_interfere()
|
| /linux-6.15/arch/arm/boot/dts/nxp/imx/ |
| H A D | imx6qdl-gw552x.dtsi | 31 linux,code = <BTN_0>; 36 linux,code = <BTN_1>; 43 linux,code = <BTN_2>; 50 linux,code = <BTN_3>; 57 linux,code = <BTN_4>; 64 linux,code = <BTN_5>;
|
| H A D | imx6qdl-phytec-mira-peb-eval-01.dtsi | 19 linux,code = <KEY_WAKEUP>; 26 linux,code = <KEY_SLEEP>;
|
| /linux-6.15/sound/virtio/ |
| H A D | virtio_kctl.c | 125 hdr->hdr.code = cpu_to_le32(VIRTIO_SND_R_CTL_READ); in virtsnd_kctl_get() 195 hdr->hdr.code = cpu_to_le32(VIRTIO_SND_R_CTL_WRITE); in virtsnd_kctl_put() 267 hdr->hdr.code = cpu_to_le32(VIRTIO_SND_R_CTL_TLV_READ); in virtsnd_kctl_tlv_op() 279 hdr->hdr.code = cpu_to_le32(VIRTIO_SND_R_CTL_TLV_WRITE); in virtsnd_kctl_tlv_op() 281 hdr->hdr.code = in virtsnd_kctl_tlv_op() 343 hdr->hdr.code = cpu_to_le32(VIRTIO_SND_R_CTL_ENUM_ITEMS); in virtsnd_kctl_get_enum_items()
|
| /linux-6.15/Documentation/locking/ |
| H A D | preempt-locking.rst | 17 This document is for all kernel hackers. Developing code in the kernel 25 Two similar problems arise. An example code snippet:: 64 like this, acquire and release the task in the same code path and 84 n-times in a code path, and preemption will not be reenabled until the n-th 97 this only for small, atomic code that you wrote and which calls no complex 121 This code is not preempt-safe, but see how easily we can fix it by simply
|
| /linux-6.15/drivers/net/ethernet/intel/ice/devlink/ |
| H A D | health.c | 14 enum ice_aqc_health_status code; member 108 return ((struct ice_health_status *)a)->code - ((struct ice_health_status *)b)->code; in ice_health_status_lookup_compare() 111 static const struct ice_health_status *ice_get_health_status(u16 code) in ice_get_health_status() argument 113 struct ice_health_status key = { .code = code }; in ice_get_health_status()
|
| /linux-6.15/Documentation/dev-tools/ |
| H A D | testing-overview.rst | 29 for "white box" testing: because test code is part of the kernel, it can access 69 The Linux Kernel supports two different code coverage measurement tools. These 71 of code. This is useful for determining how much of the kernel is being tested, 81 for fuzzing and other situations where information about code executed during, 123 In addition to testing a running kernel, one can also analyze kernel source code 131 examining the code. See the Documentation/dev-tools/sparse.rst documentation 136 error checking, forgetting to set an error code in the return of an error path, 142 to aid refactoring and collateral evolution of source code, but it can also help 143 to avoid certain bugs that occur in common code patterns. The types of tests
|
| /linux-6.15/drivers/media/i2c/ |
| H A D | ov13858.c | 1158 try_fmt->code = MEDIA_BUS_FMT_SGRBG10_1X10; in ov13858_open() 1276 struct v4l2_subdev_mbus_code_enum *code) in ov13858_enum_mbus_code() argument 1279 if (code->index > 0) in ov13858_enum_mbus_code() 1282 code->code = MEDIA_BUS_FMT_SGRBG10_1X10; in ov13858_enum_mbus_code() 1294 if (fse->code != MEDIA_BUS_FMT_SGRBG10_1X10) in ov13858_enum_frame_size() 1310 fmt->format.code = MEDIA_BUS_FMT_SGRBG10_1X10; in ov13858_update_pad_format() 1361 if (fmt->format.code != MEDIA_BUS_FMT_SGRBG10_1X10) in ov13858_set_pad_format() 1362 fmt->format.code = MEDIA_BUS_FMT_SGRBG10_1X10; in ov13858_set_pad_format()
|
| /linux-6.15/samples/ |
| H A D | Kconfig | 3 bool "Sample kernel code" 5 You can build and test sample kernel code here. 156 When enabled, this builds an example code that uses the 177 bool "Build seccomp sample code" 194 tristate "Build VFIO mtty example mediated device sample code" 202 tristate "Build VFIO mdpy example mediated device sample code" 218 tristate "Build VFIO mbochs example mediated device sample code" 289 bool "Build cgroup sample code" 304 tristate "Hung task detector test code"
|
| /linux-6.15/Documentation/core-api/ |
| H A D | packing.rst | 12 declared as bitfields). But writing code this way would make it less portable, 23 were performed byte-by-byte. Also the code can easily get cluttered, and the 27 shortcuts that still prevent the code from being truly portable. 63 bit i corresponds to the number 2^i. This is also referred to in the code 239 The packing() function returns an int-encoded error code, which protects the 245 .. code-block:: c 287 pack_fields() and unpack_fields(), which reduces the code footprint. 299 than only when the offending code is executed. These functions return void and 308 .. code-block:: c
|
| /linux-6.15/arch/arm64/boot/dts/freescale/ |
| H A D | imx8mm-phyboard-polis-peb-eval-01.dtso | 22 linux,code = <KEY_HOME>; 29 linux,code = <KEY_MENU>;
|
| /linux-6.15/drivers/hid/ |
| H A D | hid-gyration.c | 64 input_event(input, usage->type, usage->code, 1); in gyration_event() 66 input_event(input, usage->type, usage->code, 0); in gyration_event()
|
| /linux-6.15/arch/mips/kernel/ |
| H A D | jump_label.c | 45 insn_p = (union mips_instruction *)msk_isa16_mode(e->code); in arch_jump_label_transform() 70 ((e->code + 4) & ~J_RANGE_MASK)); in arch_jump_label_transform()
|
| /linux-6.15/arch/arm64/boot/dts/mediatek/ |
| H A D | mt7981b-cudy-wr3000-v1.dts | 25 linux,code = <KEY_WPS_BUTTON>; 31 linux,code = <KEY_RESTART>;
|
| /linux-6.15/arch/m68k/kernel/ |
| H A D | vmlinux-sun3.lds | 33 /* End of data goes *here* so that freeing init code works properly. */ 37 . = ALIGN(PAGE_SIZE); /* Init code and data */
|
| /linux-6.15/arch/mips/include/asm/ |
| H A D | mips-r2-to-r6-emul.h | 77 u32 code; member 82 extern void do_trap_or_bp(struct pt_regs *regs, unsigned int code, int si_code,
|