Home
last modified time | relevance | path

Searched refs:headers (Results 1 – 25 of 219) sorted by relevance

123456789

/Linux-v4.19/Documentation/kbuild/
Dheaders_install.txt1 Exporting kernel headers for use by userspace
12 from the "linux" subdirectory. The system's libc headers are usually
13 installed at the default location /usr/include and the kernel headers in
17 Kernel headers are backwards compatible, but not forwards compatible. This
18 means that a program built against a C library using older kernel headers
20 features), but a program built against newer kernel headers may not work on an
29 ARCH indicates which architecture to produce headers for, and defaults to the
30 current architecture. The linux/asm directory of the exported kernel headers
36 INSTALL_HDR_PATH indicates where to install the headers. It defaults to
40 headers are installed in 'INSTALL_HDR_PATH/include'.
[all …]
/Linux-v4.19/drivers/scsi/aacraid/
Dcomminit.c282 q->headers.producer = (__le32 *)mem; in aac_queue_init()
283 q->headers.consumer = (__le32 *)(mem+1); in aac_queue_init()
284 *(q->headers.producer) = cpu_to_le32(qsize); in aac_queue_init()
285 *(q->headers.consumer) = cpu_to_le32(qsize); in aac_queue_init()
387 u32 *headers; in aac_comm_init() local
406 if (!aac_alloc_comm(dev, (void * *)&headers, size, QUEUE_ALIGNMENT)) in aac_comm_init()
409 queues = (struct aac_entry *)(((ulong)headers) + hdrsize); in aac_comm_init()
413 aac_queue_init(dev, &comm->queue[HostNormCmdQueue], headers, HOST_NORM_CMD_ENTRIES); in aac_comm_init()
415 headers += 2; in aac_comm_init()
419 aac_queue_init(dev, &comm->queue[HostHighCmdQueue], headers, HOST_HIGH_CMD_ENTRIES); in aac_comm_init()
[all …]
/Linux-v4.19/tools/perf/scripts/python/
Dsched-migration.py335 def sched_switch(self, headers, prev_comm, prev_pid, prev_prio, prev_state, argument
340 on_cpu_task = self.current_tsk[headers.cpu]
344 headers.ts_format(), headers.cpu, prev_comm, prev_pid, next_comm, next_pid)
348 self.current_tsk[headers.cpu] = next_pid
350 ts = self.timeslices.get_time_slice(headers.ts())
351 ts.sched_switch(self.timeslices, prev_pid, prev_state, next_pid, headers.cpu)
353 def migrate(self, headers, pid, prio, orig_cpu, dest_cpu): argument
354 ts = self.timeslices.get_time_slice(headers.ts())
357 def wake_up(self, headers, comm, pid, success, target_cpu, fork): argument
360 ts = self.timeslices.get_time_slice(headers.ts())
[all …]
/Linux-v4.19/drivers/pci/controller/
Dpcie-altera.c186 static void tlp_write_packet(struct altera_pcie *pcie, u32 *headers, in tlp_write_packet() argument
191 tlp_rp_regdata.reg0 = headers[0]; in tlp_write_packet()
192 tlp_rp_regdata.reg1 = headers[1]; in tlp_write_packet()
197 tlp_rp_regdata.reg0 = headers[2]; in tlp_write_packet()
205 tlp_rp_regdata.reg0 = headers[2]; in tlp_write_packet()
216 u32 headers[TLP_HDR_SIZE]; in tlp_cfg_dword_read() local
218 headers[0] = TLP_CFGRD_DW0(pcie, bus); in tlp_cfg_dword_read()
219 headers[1] = TLP_CFG_DW1(pcie, TLP_READ_TAG, byte_en); in tlp_cfg_dword_read()
220 headers[2] = TLP_CFG_DW2(bus, devfn, where); in tlp_cfg_dword_read()
222 tlp_write_packet(pcie, headers, 0, false); in tlp_cfg_dword_read()
[all …]
/Linux-v4.19/Documentation/media/uapi/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.
/Linux-v4.19/include/uapi/linux/
DKbuild4 no-export-headers += a.out.h
8 no-export-headers += kvm.h
12 no-export-headers += kvm_para.h
/Linux-v4.19/scripts/package/
Dmkspec57 %package headers
60 Obsoletes: kernel-headers
61 Provides: kernel-headers = %{version}
62 %description headers
63 Kernel-headers includes the C header files that specify the interface
74 $S$M This package provides kernel headers and makefiles sufficient to build modules
137 %files headers
/Linux-v4.19/Documentation/networking/
Dsegmentation-offloads.txt61 contain additional headers such as an outer tunnel. In order to account
65 cases where there are more than just 1 set of headers. For example in the
66 case of IPIP and SIT we should have the network and transport headers moved
67 from the standard list of headers to "inner" header offsets.
69 Currently only two levels of headers are supported. The convention is to
70 refer to the tunnel headers as the outer headers, while the encapsulated
71 data is normally referred to as the inner headers. Below is the list of
72 calls to access the given headers:
93 headers will be left with a partial checksum and only the outer header
125 so that instead of having to rewrite the packet headers for each segment
[all …]
Dmac80211-injection.txt13 ./Documentation/networking/radiotap-headers.txt.
17 radiotap headers and used to control injection:
62 facilitating replay of captured radiotap headers directly.
/Linux-v4.19/scripts/
Dheaderdep.pl31 my @headers = grep { strip($_) } @ARGV;
33 parse_all(@headers);
38 detect_cycles(@headers);
DMakefile.asm-generic24 old-headers := $(wildcard $(obj)/*.h)
25 unwanted := $(filter-out $(all-files),$(old-headers))
DMakefile.headersinst48 header-files := $(filter-out $(no-export-headers), $(header-files))
63 $(error Some mandatory headers ($(missing)) are missing in $(obj))
/Linux-v4.19/drivers/scsi/isci/
Dunsolicited_frame_control.c84 uf_control->headers.physical_address = dma + SCI_UFI_BUF_SIZE; in sci_unsolicited_frame_control_construct()
85 uf_control->headers.array = virt + SCI_UFI_BUF_SIZE; in sci_unsolicited_frame_control_construct()
115 uf->header = &uf_control->headers.array[i]; in sci_unsolicited_frame_control_construct()
/Linux-v4.19/samples/bpf/
Dxdp_sample_pkts_user.c21 static struct perf_event_mmap_page *headers[MAX_CPUS]; variable
162 if (perf_event_mmap_header(pmu_fds[i], &headers[i]) < 0) in main()
165 ret = perf_event_poller_multi(pmu_fds, headers, numcpus, in main()
DREADME.rst17 Kernel headers
21 To avoid installing devel kernel headers system wide, as a normal
/Linux-v4.19/Documentation/
Dgcc-plugins.txt48 It should be always included instead of individual gcc headers.
52 This script checks the availability of the included headers in
61 These headers automatically generate the registration structures for
70 You must install the gcc plugin headers for your gcc version,
/Linux-v4.19/scripts/dtc/
Ddtc-parser.y79 %type <flags> headers
110 headers memreserves devicetree
128 headers:
130 | header headers
/Linux-v4.19/Documentation/sh/
Dnew-machine.txt17 in arch/sh/kernel/ directly, with board-specific headers ending up in
38 | `-- board-specific headers
40 | `-- board-specific headers
54 board-specific headers. Thus, include/asm-sh/hd64461 is home to all of the
55 hd64461-specific headers.
76 | `-- SH-2 specific headers
78 | `-- SH-3 specific headers
80 `-- SH-4 specific headers
100 should also add a directory in include/asm-sh for headers localized to this
/Linux-v4.19/arch/alpha/
DKconfig.debug19 ELF headers to determine where to transfer control. Unfortunately,
21 address rather than examining the ELF headers, and the result is a
/Linux-v4.19/Documentation/doc-guide/
Dindex.rst12 parse-headers.rst
/Linux-v4.19/tools/testing/selftests/bpf/
Dtrace_helpers.h23 int perf_event_poller_multi(int *fds, struct perf_event_mmap_page **headers,
Dtrace_helpers.c172 int perf_event_poller_multi(int *fds, struct perf_event_mmap_page **headers, in perf_event_poller_multi() argument
196 ret = bpf_perf_event_read_simple(headers[i], in perf_event_poller_multi()
/Linux-v4.19/Documentation/translations/it_IT/doc-guide/
Dindex.rst17 parse-headers.rst
/Linux-v4.19/drivers/gpu/drm/vmwgfx/
Dvmwgfx_cmdbuf.c123 struct dma_pool *headers; member
267 dma_pool_free(man->headers, header->cb_header, in __vmw_cmdbuf_header_free()
876 header->cb_header = dma_pool_zalloc(man->headers, GFP_KERNEL, in vmw_cmdbuf_space_pool()
1311 man->headers = dma_pool_create("vmwgfx cmdbuf", in vmw_cmdbuf_man_create()
1315 if (!man->headers) { in vmw_cmdbuf_man_create()
1355 dma_pool_destroy(man->headers); in vmw_cmdbuf_man_create()
1409 dma_pool_destroy(man->headers); in vmw_cmdbuf_man_destroy()
/Linux-v4.19/Documentation/media/uapi/dvb/
Dheaders.rst5 Digital TV uAPI headers

123456789