Home
last modified time | relevance | path

Searched refs:program (Results 1 – 25 of 658) sorted by relevance

12345678910>>...27

/Linux-v5.4/drivers/pwm/
Dpwm-stmpe.c104 u16 program[3] = { in stmpe_24xx_pwm_config() local
157 program[0] = SMAX; /* off all the time */ in stmpe_24xx_pwm_config()
160 program[0] = LOAD | 0xff; /* LOAD 0xff */ in stmpe_24xx_pwm_config()
165 program[0] = SMIN; /* on all the time */ in stmpe_24xx_pwm_config()
168 program[0] = LOAD | 0x00; /* LOAD 0x00 */ in stmpe_24xx_pwm_config()
198 program[0] = LOAD | value; in stmpe_24xx_pwm_config()
199 program[1] = 0x0000; in stmpe_24xx_pwm_config()
212 program[0] = PRESCALE_512 | STEPTIME_1 | incdec; in stmpe_24xx_pwm_config()
215 program[1] = BRANCH; in stmpe_24xx_pwm_config()
220 pwm->hwpwm, value, last, program[0], program[1], in stmpe_24xx_pwm_config()
[all …]
/Linux-v5.4/tools/bpf/bpftool/Documentation/
Dbpftool-cgroup.rst41 Output will start with program ID followed by attach type,
42 attach flags and program name.
55 program ID, attach type, attach flags and program name.
62 Attach program *PROG* to the cgroup *CGROUP* with attach type
66 some bpf program, the program in this cgroup yields to sub-cgroup
67 program; **multi** if a sub-cgroup installs some bpf program,
68 that cgroup program gets run in addition to the program in this
71 Only one program is allowed to be attached to a cgroup with
73 program will release old program and attach the new one.
Dbpftool-prog.rst56 specified show information only about given program, otherwise
59 Output will start with program ID followed by program type and
63 programs (such as the total time spent running the program,
67 program run. Activation or deactivation of the feature is
71 Dump eBPF instructions of the program from the kernel. By
89 Dump jited image (host machine code) of the program.
101 Pin program *PROG* as *FILE*.
108 Load bpf program(s) from binary *OBJ* and pin as *PATH*.
109 **bpftool prog load** pins only the first program from the
112 **type** is optional, if not specified program type will be
[all …]
Dbpftool-net.rst34 List bpf program attachments in the kernel networking subsystem.
38 program types **BPF_PROG_TYPE_SCHED_CLS**,
47 The current output will start with all xdp program attachments, followed by
48 all tc class/qdisc bpf program attachments. Both xdp programs and
56 Attach bpf program *PROG* to network interface *NAME* with
57 type specified by *ATTACH_TYPE*. Previously attached bpf program
68 Detach bpf program attached to network interface *NAME* with
69 type specified by *ATTACH_TYPE*. To detach bpf program, same
/Linux-v5.4/security/tomoyo/
Ddomain.c228 && p1->program == p2->program; in tomoyo_same_transition_control()
244 char *program = param->data; in tomoyo_write_transition_control() local
245 char *domainname = strstr(program, " from "); in tomoyo_write_transition_control()
252 domainname = program; in tomoyo_write_transition_control()
253 program = NULL; in tomoyo_write_transition_control()
255 if (program && strcmp(program, "any")) { in tomoyo_write_transition_control()
256 if (!tomoyo_correct_path(program)) in tomoyo_write_transition_control()
258 e.program = tomoyo_get_name(program); in tomoyo_write_transition_control()
259 if (!e.program) in tomoyo_write_transition_control()
277 tomoyo_put_name(e.program); in tomoyo_write_transition_control()
[all …]
/Linux-v5.4/Documentation/bpf/
Dprog_cgroup_sockopt.rst7 ``BPF_PROG_TYPE_CGROUP_SOCKOPT`` program type can be attached to two
26 If BPF program sets ``optlen`` to -1, the control will be returned
38 * ``1`` - success, continue with next BPF program in the cgroup chain.
62 the BPF program from the parent cgroup).
76 the programs are executed from the bottom up: B, A. First program
79 control will be passed to the second (A) program which will see the
82 Same for ``BPF_CGROUP_SETSOCKOPT``: if the program is attached to
85 then the next program in the chain (A) will see those changes,
93 of BPF program that handles socket options.
Dprog_cgroup_sysctl.rst7 This document describes ``BPF_PROG_TYPE_CGROUP_SYSCTL`` program type that
17 ``BPF_PROG_TYPE_CGROUP_SYSCTL`` program to a cgroup.
23 BPF program::
49 ``BPF_PROG_TYPE_CGROUP_SYSCTL`` program must return one of the following
55 If program returns ``0`` user space will get ``-1`` from ``read(2)`` or
65 ``/proc/sys`` into provided by BPF program buffer;
68 sysctl into provided by BPF program buffer. This helper is available on both
78 has to be overridden BPF program can set ``file_pos`` to zero before calling
83 BPF program sees sysctl value same way as user space does in proc filesystem,
98 See `test_sysctl_prog.c`_ for an example of BPF program in C that access
[all …]
Dbpf_design_QA.rst94 program can have. The verifier has various internal limits.
96 program analysis. Currently, that limit is set to 1 million.
97 Which essentially means that the largest program can consist
101 a limit to the number of maps used by the program.
102 All these limits can be hit with a sufficiently complex program.
103 There are also non-numerical limits that can cause the program
109 being removed. The only way to know that the program is going to
183 compiling a program. Furthermore, the verifier can now mark the
209 such that the program needs to be adapted accordingly.
211 Q: How much stack space a BPF program uses?
[all …]
Dprog_flow_dissector.rst31 Flow dissector BPF program should fill out the rest of the ``struct
35 The return code of the BPF program is either BPF_OK to indicate successful
75 Please note that TPID can be 802.1AD and, hence, BPF program would
98 The takeaway here is as follows: BPF flow dissector program can be called with
100 or double VLAN is present and when it is not present. The same program
127 for the loader. bpftool can be used to load BPF flow dissector program as well.
/Linux-v5.4/tools/testing/selftests/bpf/prog_tests/
Draw_tp_writable_reject_nbd_invalid.c12 const struct bpf_insn program[] = { in test_raw_tp_writable_reject_nbd_invalid() local
24 .insns = program, in test_raw_tp_writable_reject_nbd_invalid()
25 .insns_cnt = sizeof(program) / sizeof(struct bpf_insn), in test_raw_tp_writable_reject_nbd_invalid()
/Linux-v5.4/Documentation/filesystems/nfs/
Didmapper.txt33 This will direct all id_resolver requests to the program /usr/sbin/nfs.idmap.
45 program. If you would like to use your own program for a uid lookup then you
50 create id_resolver uid:* * /some/other/program %k %d 600
53 Notice that the new line was added above the line for the generic program.
54 request-key will find the first matching line and corresponding program. In
55 this case, /some/other/program will handle all uid lookups and
66 hand". This program takes two arguments, a serialized key and a key
/Linux-v5.4/Documentation/misc-devices/
Dspear-pcie-gadget.txt25 and then program its various registers to configure it as a particular device
58 bar0 is SYSRAM1(E0800000). Always program bar size before bar
72 program vendor id as 0x104a
75 program device id as 0xCD80
78 program BAR0 size as 1MB
86 can also be made visible to PCIe host. E.g., if you program base address of UART
91 program interrupt type : INTA
110 if MSI is to be used as interrupt, program no of msi vector needed (say4)
/Linux-v5.4/Documentation/admin-guide/
Djava.rst8 other program after you have done the following:
60 You, too, need the little program after the script. Compile like::
66 Both the javawrapper shellscript and the javaclassname program
171 * This program is free software; you can redistribute it and/or modify
176 * This program is distributed in the hope that it will be useful,
182 * along with this program; if not, write to the Free Software
210 #define seek_error() error("%s: Cannot seek\n", program)
211 #define corrupt_error() error("%s: Class file corrupt\n", program)
212 #define eof_error() error("%s: Unexpected end of file\n", program)
213 #define utf8_error() error("%s: Only ASCII 1-255 supported\n", program);
[all …]
/Linux-v5.4/net/netfilter/
Dxt_bpf.c27 struct sock_fprog_kern program; in __bpf_mt_check_bytecode() local
32 program.len = len; in __bpf_mt_check_bytecode()
33 program.filter = insns; in __bpf_mt_check_bytecode()
35 if (bpf_prog_create(ret, &program)) { in __bpf_mt_check_bytecode()
/Linux-v5.4/drivers/net/wireless/marvell/libertas/
DLICENSE4 This program is free software; you can redistribute it and/or modify it
8 This program is distributed in the hope that it will be useful, but WITHOUT
14 this program; if not, write to the Free Software Foundation, Inc., 59
/Linux-v5.4/arch/nios2/boot/compressed/
Dvmlinux.scr4 * This program is free software; you can redistribute it and/or modify
9 * This program is distributed in the hope that it will be useful,
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
/Linux-v5.4/drivers/staging/comedi/drivers/
Ddt2815.c185 unsigned int program; in dt2815_attach() local
187 program = (it->options[4] & 0x3) << 3 | 0x7; in dt2815_attach()
188 outb(program, dev->iobase + DT2815_DATA); in dt2815_attach()
190 program, i); in dt2815_attach()
/Linux-v5.4/arch/arm/nwfpe/
Dfpmodule.inl7 This program is free software; you can redistribute it and/or modify
12 This program is distributed in the hope that it will be useful,
18 along with this program; if not, write to the Free Software
25 As a result the program counter has been advanced to the next
/Linux-v5.4/Documentation/leds/
Dleds-lp5562.rst16 LP5562 has the internal program memory for running various LED patterns.
41 How to load the program data using engine_mux
44 Before loading the LP5562 program data, engine_mux should be written between
47 RGB is used for loading RGB program data, W is used for W program data.
/Linux-v5.4/Documentation/driver-api/fpga/
Dfpga-programming.rst18 * program the FPGA using info passed in :c:member:`fpga_region->info`.
22 The struct fpga_image_info specifies what FPGA image to program. It is
26 How to program an FPGA using a region
42 * program.
88 * :c:type:`fpga_image_info` — Specifies what FPGA image to program
/Linux-v5.4/LICENSES/deprecated/
DGPL-1.028 software and to any other program whose authors commit to using it.
43 For example, if you distribute copies of a such a program, whether
65 0. This License Agreement applies to any program or other work which
68 "Program", below, refers to any such program or work, and a "work based
96 c) If the modified program normally reads commands interactively when
101 warranty) and that users may redistribute the program under these
130 received the program in object code or executable form alone.)
206 If you develop a new program, and you want it to be of the greatest
211 To do so, attach the following notices to the program. It is safest to
216 <one line to give the program's name and a brief idea of what it does.>
[all …]
/Linux-v5.4/Documentation/s390/
Dvfio-ccw.rst18 in the channel program directly, i.e. there is no iommu involved.
75 instruction to a specialized I/O channel processor. A channel program is
77 issue a channel program to the channel subsystem, it is required to
81 the channel program with a SSCH (start sub-channel) instruction. The
109 policing and translation how the channel program is programmed before
122 vfio_ccw also provides an I/O region to accept channel program
138 address, pin the page and program the hardware with the host physical
193 An I/O region is used to accept channel program request from user
242 passed in by a user space program are organized with their guest
244 space, and assemble a runnable kernel channel program by updating the
[all …]
/Linux-v5.4/tools/usb/usbip/
DCOPYING16 Foundation's software and to any other program whose authors commit to
33 For example, if you distribute copies of such a program, whether
50 Finally, any free program is threatened constantly by software
52 program will individually obtain patent licenses, in effect making the
53 program proprietary. To prevent this, we have made it clear that any
62 0. This License applies to any program or other work which contains
65 refers to any such program or work, and a "work based on the Program"
103 c) If the modified program normally reads commands interactively
108 a warranty) and that users may redistribute the program under
152 received the program in object code or executable form with such
[all …]
/Linux-v5.4/drivers/staging/rtl8192u/
Dcopying16 Foundation's software and to any other program whose authors commit to
33 For example, if you distribute copies of such a program, whether
50 Finally, any free program is threatened constantly by software
52 program will individually obtain patent licenses, in effect making the
53 program proprietary. To prevent this, we have made it clear that any
62 0. This License applies to any program or other work which contains
65 refers to any such program or work, and a "work based on the Program"
103 c) If the modified program normally reads commands interactively
108 a warranty) and that users may redistribute the program under
152 received the program in object code or executable form with such
[all …]
/Linux-v5.4/LICENSES/preferred/
DGPL-2.035 Foundation's software and to any other program whose authors commit to
52 For example, if you distribute copies of such a program, whether
69 Finally, any free program is threatened constantly by software
71 program will individually obtain patent licenses, in effect making the
72 program proprietary. To prevent this, we have made it clear that any
81 0. This License applies to any program or other work which contains
84 refers to any such program or work, and a "work based on the Program"
122 c) If the modified program normally reads commands interactively
127 a warranty) and that users may redistribute the program under
171 received the program in object code or executable form with such
[all …]

12345678910>>...27