Home
last modified time | relevance | path

Searched full:headers (Results 1 – 25 of 4526) sorted by relevance

12345678910>>...182

/kernel/linux/linux-5.10/scripts/
DMakefile.headersinst3 # Installing headers
5 # All headers under include/uapi, include/generated/uapi,
29 src-headers := $(if $(src-subdirs), $(shell cd $(src) && find $(src-subdirs) -name '*.h'))
30 src-headers := $(filter-out $(no-export-headers), $(src-headers))
31 gen-headers := $(if $(gen-subdirs), $(shell cd $(gen) && find $(gen-subdirs) -name '*.h'))
32 gen-headers := $(filter-out $(no-export-headers), $(gen-headers))
36 duplicated := $(filter $(gen-headers), $(src-headers))
39 gen-headers := $(filter-out $(duplicated), $(gen-headers))
43 src-headers := $(addprefix $(dst)/, $(src-headers))
44 gen-headers := $(addprefix $(dst)/, $(gen-headers))
[all …]
/kernel/linux/linux-6.6/scripts/
DMakefile.headersinst3 # Installing headers
5 # All headers under include/uapi, include/generated/uapi,
29 src-headers := $(if $(src-subdirs), $(shell cd $(src) && find $(src-subdirs) -name '*.h'))
30 src-headers := $(filter-out $(no-export-headers), $(src-headers))
31 gen-headers := $(if $(gen-subdirs), $(shell cd $(gen) && find $(gen-subdirs) -name '*.h'))
32 gen-headers := $(filter-out $(no-export-headers), $(gen-headers))
36 duplicated := $(filter $(gen-headers), $(src-headers))
39 gen-headers := $(filter-out $(duplicated), $(gen-headers))
43 src-headers := $(addprefix $(dst)/, $(src-headers))
44 gen-headers := $(addprefix $(dst)/, $(gen-headers))
[all …]
/kernel/linux/linux-5.10/Documentation/kbuild/
Dheaders_install.rst2 Exporting kernel headers for use by userspace
13 from the "linux" subdirectory. The system's libc headers are usually
14 installed at the default location /usr/include and the kernel headers in
18 Kernel headers are backwards compatible, but not forwards compatible. This
19 means that a program built against a C library using older kernel headers
21 features), but a program built against newer kernel headers may not work on an
30 ARCH indicates which architecture to produce headers for, and defaults to the
31 current architecture. The linux/asm directory of the exported kernel headers
37 INSTALL_HDR_PATH indicates where to install the headers. It defaults to
41 headers are installed in 'INSTALL_HDR_PATH/include'.
/kernel/linux/linux-6.6/Documentation/kbuild/
Dheaders_install.rst2 Exporting kernel headers for use by userspace
13 from the "linux" subdirectory. The system's libc headers are usually
14 installed at the default location /usr/include and the kernel headers in
18 Kernel headers are backwards compatible, but not forwards compatible. This
19 means that a program built against a C library using older kernel headers
21 features), but a program built against newer kernel headers may not work on an
30 ARCH indicates which architecture to produce headers for, and defaults to the
31 current architecture. The linux/asm directory of the exported kernel headers
37 INSTALL_HDR_PATH indicates where to install the headers. It defaults to
41 headers are installed in 'INSTALL_HDR_PATH/include'.
/kernel/linux/linux-6.6/drivers/net/ethernet/intel/ice/
Dice_tc_lib.c15 * @headers: Pointer to TC flower filter header structure
21 ice_tc_count_lkups(u32 flags, struct ice_tc_flower_lyr_2_4_hdrs *headers, in ice_tc_count_lkups() argument
348 * TC flower headers. This list should be used to add
358 struct ice_tc_flower_lyr_2_4_hdrs *headers = &tc_fltr->outer_headers; in ice_tc_fill_rules() local
377 headers = &tc_fltr->inner_headers; in ice_tc_fill_rules()
383 list[i].h_u.ethertype.ethtype_id = headers->l2_key.n_proto; in ice_tc_fill_rules()
384 list[i].m_u.ethertype.ethtype_id = headers->l2_mask.n_proto; in ice_tc_fill_rules()
392 l2_key = &headers->l2_key; in ice_tc_fill_rules()
393 l2_mask = &headers->l2_mask; in ice_tc_fill_rules()
419 list[i].h_u.vlan_hdr.vlan = headers->vlan_hdr.vlan_id; in ice_tc_fill_rules()
[all …]
/kernel/linux/linux-6.6/tools/include/nolibc/
DMakefile47 # install all headers needed to support a bare-metal compiler
48 all: headers
54 @echo " all call \"headers\""
56 @echo " headers prepare a sysroot in tools/include/nolibc/sysroot"
57 @echo " headers_standalone like \"headers\", and also install kernel headers"
68 headers: target
86 headers_standalone: headers
87 $(Q)$(MAKE) -C $(srctree) headers
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/progs/
Dtest_assign_reuse.c22 } headers; variable
39 if (ctx->data + sizeof(headers.tcp) > ctx->data_end) in reuse_accept()
42 if (__builtin_memcmp(&headers.tcp, ctx->data, sizeof(headers.tcp)) != 0) in reuse_accept()
45 if (ctx->data + sizeof(headers.udp) > ctx->data_end) in reuse_accept()
48 if (__builtin_memcmp(&headers.udp, ctx->data, sizeof(headers.udp)) != 0) in reuse_accept()
89 __builtin_memcpy(&headers.tcp, th, sizeof(headers.tcp)); in maybe_assign_tcp()
102 __builtin_memcpy(&headers.udp, uh, sizeof(headers.udp)); in maybe_assign_udp()
/kernel/linux/linux-5.10/tools/perf/scripts/python/
Dsched-migration.py333 def sched_switch(self, headers, prev_comm, prev_pid, prev_prio, prev_state, argument
338 on_cpu_task = self.current_tsk[headers.cpu]
342 headers.ts_format(), headers.cpu, prev_comm, prev_pid, next_comm, next_pid)
346 self.current_tsk[headers.cpu] = next_pid
348 ts = self.timeslices.get_time_slice(headers.ts())
349 ts.sched_switch(self.timeslices, prev_pid, prev_state, next_pid, headers.cpu)
351 def migrate(self, headers, pid, prio, orig_cpu, dest_cpu): argument
352 ts = self.timeslices.get_time_slice(headers.ts())
355 def wake_up(self, headers, comm, pid, success, target_cpu, fork): argument
358 ts = self.timeslices.get_time_slice(headers.ts())
[all …]
/kernel/linux/linux-6.6/tools/perf/scripts/python/
Dsched-migration.py333 def sched_switch(self, headers, prev_comm, prev_pid, prev_prio, prev_state, argument
338 on_cpu_task = self.current_tsk[headers.cpu]
342 headers.ts_format(), headers.cpu, prev_comm, prev_pid, next_comm, next_pid)
346 self.current_tsk[headers.cpu] = next_pid
348 ts = self.timeslices.get_time_slice(headers.ts())
349 ts.sched_switch(self.timeslices, prev_pid, prev_state, next_pid, headers.cpu)
351 def migrate(self, headers, pid, prio, orig_cpu, dest_cpu): argument
352 ts = self.timeslices.get_time_slice(headers.ts())
355 def wake_up(self, headers, comm, pid, success, target_cpu, fork): argument
358 ts = self.timeslices.get_time_slice(headers.ts())
[all …]
/kernel/linux/linux-5.10/Documentation/userspace-api/media/v4l/
Dpixfmt-meta-uvc.rst15 This format describes standard UVC metadata, extracted from UVC packet headers
19 in those headers. See section "2.4.3.3 Video and Still Image Payload Headers" of
23 contain multiple headers, if multiple such headers have been transmitted by the
24 camera for the respective frame. However, the driver may drop headers when the
27 perform rate limiting when the device sends a large number of headers.
/kernel/linux/linux-6.6/Documentation/userspace-api/media/v4l/
Dmetafmt-uvc.rst15 This format describes standard UVC metadata, extracted from UVC packet headers
19 in those headers. See section "2.4.3.3 Video and Still Image Payload Headers" of
23 contain multiple headers, if multiple such headers have been transmitted by the
24 camera for the respective frame. However, the driver may drop headers when the
27 perform rate limiting when the device sends a large number of headers.
/kernel/linux/linux-5.10/drivers/scsi/aacraid/
Dcomminit.c231 * Align the beginning of Headers to commalign in aac_alloc_comm()
237 * Fill in addresses of the Comm Area Headers and Queues in aac_alloc_comm()
268 q->headers.producer = (__le32 *)mem; in aac_queue_init()
269 q->headers.consumer = (__le32 *)(mem+1); in aac_queue_init()
270 *(q->headers.producer) = cpu_to_le32(qsize); in aac_queue_init()
271 *(q->headers.consumer) = cpu_to_le32(qsize); in aac_queue_init()
372 u32 *headers; in aac_comm_init() local
386 * queue headers. in aac_comm_init()
391 if (!aac_alloc_comm(dev, (void * *)&headers, size, QUEUE_ALIGNMENT)) in aac_comm_init()
394 queues = (struct aac_entry *)(((ulong)headers) + hdrsize); in aac_comm_init()
[all …]
/kernel/linux/linux-6.6/drivers/scsi/aacraid/
Dcomminit.c231 * Align the beginning of Headers to commalign in aac_alloc_comm()
237 * Fill in addresses of the Comm Area Headers and Queues in aac_alloc_comm()
268 q->headers.producer = (__le32 *)mem; in aac_queue_init()
269 q->headers.consumer = (__le32 *)(mem+1); in aac_queue_init()
270 *(q->headers.producer) = cpu_to_le32(qsize); in aac_queue_init()
271 *(q->headers.consumer) = cpu_to_le32(qsize); in aac_queue_init()
372 u32 *headers; in aac_comm_init() local
386 * queue headers. in aac_comm_init()
391 if (!aac_alloc_comm(dev, (void * *)&headers, size, QUEUE_ALIGNMENT)) in aac_comm_init()
394 queues = (struct aac_entry *)(((ulong)headers) + hdrsize); in aac_comm_init()
[all …]
/kernel/linux/linux-5.10/Documentation/networking/
Dsegmentation-offloads.rst69 contain additional headers such as an outer tunnel. In order to account
73 cases where there are more than just 1 set of headers. For example in the
74 case of IPIP and SIT we should have the network and transport headers moved
75 from the standard list of headers to "inner" header offsets.
77 Currently only two levels of headers are supported. The convention is to
78 refer to the tunnel headers as the outer headers, while the encapsulated
79 data is normally referred to as the inner headers. Below is the list of
80 calls to access the given headers:
103 headers will be left with a partial checksum and only the outer header
138 so that instead of having to rewrite the packet headers for each segment
[all …]
/kernel/linux/linux-6.6/Documentation/networking/
Dsegmentation-offloads.rst69 contain additional headers such as an outer tunnel. In order to account
73 cases where there are more than just 1 set of headers. For example in the
74 case of IPIP and SIT we should have the network and transport headers moved
75 from the standard list of headers to "inner" header offsets.
77 Currently only two levels of headers are supported. The convention is to
78 refer to the tunnel headers as the outer headers, while the encapsulated
79 data is normally referred to as the inner headers. Below is the list of
80 calls to access the given headers:
103 headers will be left with a partial checksum and only the outer header
138 so that instead of having to rewrite the packet headers for each segment
[all …]
/kernel/linux/linux-6.6/include/uapi/linux/
Dlibc-compat.h13 * * Synchronize the UAPI header and the libc headers so either one can be
37 * This fixes the situation where the linux headers are included *after* the
38 * libc headers. To fix the problem with the inclusion in the other order the
39 * userspace libc headers must be fixed like this:
52 /* We have included glibc headers... */
58 /* GLIBC headers included first so don't define anything
74 /* Linux headers included first, and we must define everything
92 /* GLIBC headers included first so don't define anything
120 /* Linux headers included first, and we must define everything
169 /* If we did not see any headers from any supported C libraries,
/kernel/linux/linux-5.10/include/uapi/linux/
Dlibc-compat.h13 * * Synchronize the UAPI header and the libc headers so either one can be
37 * This fixes the situation where the linux headers are included *after* the
38 * libc headers. To fix the problem with the inclusion in the other order the
39 * userspace libc headers must be fixed like this:
52 /* We have included glibc headers... */
58 /* GLIBC headers included first so don't define anything
74 /* Linux headers included first, and we must define everything
92 /* GLIBC headers included first so don't define anything
120 /* Linux headers included first, and we must define everything
169 /* If we did not see any headers from any supported C libraries,
/kernel/linux/linux-6.6/drivers/pci/controller/
Dpcie-altera.c99 void (*tlp_write_pkt)(struct altera_pcie *pcie, u32 *headers,
207 * Minimum 2 loops to read TLP headers and 1 loop to read data in tlp_read_packet()
284 static void tlp_write_packet(struct altera_pcie *pcie, u32 *headers, in tlp_write_packet() argument
289 tlp_rp_regdata.reg0 = headers[0]; in tlp_write_packet()
290 tlp_rp_regdata.reg1 = headers[1]; in tlp_write_packet()
295 tlp_rp_regdata.reg0 = headers[2]; in tlp_write_packet()
303 tlp_rp_regdata.reg0 = headers[2]; in tlp_write_packet()
311 static void s10_tlp_write_packet(struct altera_pcie *pcie, u32 *headers, in s10_tlp_write_packet() argument
314 s10_tlp_write_tx(pcie, headers[0], RP_TX_SOP); in s10_tlp_write_packet()
315 s10_tlp_write_tx(pcie, headers[1], 0); in s10_tlp_write_packet()
[all …]
/kernel/linux/linux-5.10/drivers/pci/controller/
Dpcie-altera.c100 void (*tlp_write_pkt)(struct altera_pcie *pcie, u32 *headers,
208 * Minimum 2 loops to read TLP headers and 1 loop to read data in tlp_read_packet()
285 static void tlp_write_packet(struct altera_pcie *pcie, u32 *headers, in tlp_write_packet() argument
290 tlp_rp_regdata.reg0 = headers[0]; in tlp_write_packet()
291 tlp_rp_regdata.reg1 = headers[1]; in tlp_write_packet()
296 tlp_rp_regdata.reg0 = headers[2]; in tlp_write_packet()
304 tlp_rp_regdata.reg0 = headers[2]; in tlp_write_packet()
312 static void s10_tlp_write_packet(struct altera_pcie *pcie, u32 *headers, in s10_tlp_write_packet() argument
315 s10_tlp_write_tx(pcie, headers[0], RP_TX_SOP); in s10_tlp_write_packet()
316 s10_tlp_write_tx(pcie, headers[1], 0); in s10_tlp_write_packet()
[all …]
/kernel/linux/linux-5.10/net/dsa/
DKconfig44 tristate "Tag driver for Broadcom switches using in-frame headers"
52 tristate "Tag driver for Broadcom switches using prepended headers"
66 tristate "Tag driver for Marvell switches using DSA headers"
69 Marvell switches which use DSA headers.
72 tristate "Tag driver for Marvell switches using EtherType DSA headers"
75 Marvell switches which use EtherType DSA headers.
/kernel/linux/linux-5.10/fs/proc/
Dvmcore.c38 /* Stores the pointer to the buffer containing kernel elf core headers. */
754 * headers and sum of real size of their ELF note segment headers and
758 * @nr_ptnote: buffer for the number of PT_NOTE program headers
761 * This function is used to merge multiple PT_NOTE program headers
765 * It is assumed that program headers with PT_NOTE type pointed to by
767 * and each of PT_NOTE program headers has actual ELF note segment
798 * real ELF note segment headers and data.
800 * It is assumed that program headers with PT_NOTE type pointed to by
802 * and each of PT_NOTE program headers has actual ELF note segment
827 /* Merges all the PT_NOTE headers into one. */
[all …]
/kernel/linux/linux-6.6/fs/proc/
Dvmcore.c38 /* Stores the pointer to the buffer containing kernel elf core headers. */
775 * headers and sum of real size of their ELF note segment headers and
779 * @nr_ptnote: buffer for the number of PT_NOTE program headers
782 * This function is used to merge multiple PT_NOTE program headers
786 * It is assumed that program headers with PT_NOTE type pointed to by
788 * and each of PT_NOTE program headers has actual ELF note segment
819 * real ELF note segment headers and data.
821 * It is assumed that program headers with PT_NOTE type pointed to by
823 * and each of PT_NOTE program headers has actual ELF note segment
848 /* Merges all the PT_NOTE headers into one. */
[all …]
/kernel/linux/linux-6.6/scripts/package/
Dkernel.spec27 %package headers
30 Obsoletes: kernel-headers
31 Provides: kernel-headers = %{version}
32 %description headers
33 Kernel-headers includes the C header files that specify the interface
45 This package provides kernel headers and makefiles sufficient to build modules
105 %files headers
/kernel/linux/linux-6.6/net/dsa/
DKconfig38 tristate "Tag driver for Broadcom switches using in-frame headers"
45 tristate "Tag driver for Broadcom legacy switches using in-frame headers"
53 tristate "Tag driver for Broadcom switches using prepended headers"
76 tristate "Tag driver for Marvell switches using DSA headers"
80 Marvell switches which use DSA headers.
83 tristate "Tag driver for Marvell switches using EtherType DSA headers"
87 Marvell switches which use EtherType DSA headers.
/kernel/linux/linux-6.6/Documentation/trace/
Dhisi-ptt.rst13 and trace the TLP headers (trace). The two functions are independent,
113 PTT trace is designed for dumping the TLP headers to the memory, which
115 Link. You can choose to filter the traced headers by either Requester ID,
117 device. It's also supported to trace the headers of certain type and of
130 This will trace the TLP headers downstream root port 0000:00:10.1 (event
137 The TLP headers to trace can be filtered by the Root Ports or the Requester ID
169 You can trace the TLP headers of certain types by specifying the `type`
177 You can specify multiple types when tracing inbound TLP headers, but can only
178 specify one when tracing outbound TLP headers.
183 You can trace the TLP headers from certain direction, which is relative
[all …]

12345678910>>...182