Home
last modified time | relevance | path

Searched full:commands (Results 1 – 25 of 2822) sorted by relevance

12345678910>>...113

/linux-6.8/net/sctp/
Dsm_statefuns.c58 struct sctp_cmd_seq *commands);
67 struct sctp_cmd_seq *commands,
75 struct sctp_cmd_seq *commands);
82 struct sctp_cmd_seq *commands);
89 struct sctp_cmd_seq *commands);
96 struct sctp_cmd_seq *commands);
101 struct sctp_cmd_seq *commands,
111 struct sctp_cmd_seq *commands,
121 struct sctp_cmd_seq *commands);
129 struct sctp_cmd_seq *commands);
[all …]
Dsm_sideeffect.c47 struct sctp_cmd_seq *commands,
56 struct sctp_cmd_seq *commands,
139 struct sctp_cmd_seq *commands) in sctp_gen_sack() argument
200 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART, in sctp_gen_sack()
215 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(sack)); in sctp_gen_sack()
218 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP, in sctp_gen_sack()
550 static void sctp_do_8_2_transport_strike(struct sctp_cmd_seq *commands, in sctp_do_8_2_transport_strike() argument
625 static void sctp_cmd_init_failed(struct sctp_cmd_seq *commands, in sctp_cmd_init_failed() argument
636 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP, in sctp_cmd_init_failed()
639 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE, in sctp_cmd_init_failed()
[all …]
/linux-6.8/Documentation/hwmon/
Dpmbus-core.rst21 Unfortunately, while PMBus commands are standardized, there are no mandatory
22 commands, and manufacturers can add as many non-standard commands as they like.
23 Also, different PMBUs devices act differently if non-supported commands are
47 PMBus commands. Auto-detection is somewhat limited, since there are simply too
49 which PMBus commands are paged and which commands are replicated across all
53 all commands can be auto-detected. The data structures in this driver can be
57 Some commands are always auto-detected. This applies to all limit commands
67 standard PMBus commands and virtual PMBus commands.
69 Standard PMBus commands
72 Standard PMBus commands (commands values 0x00 to 0xff) are defined in the PMBUs
[all …]
/linux-6.8/tools/perf/pmu-events/arch/arm64/hisilicon/hip08/
Duncore-ddrc.json19 "BriefDescription": "DDRC write commands",
20 "PublicDescription": "DDRC write commands",
26 "BriefDescription": "DDRC read commands",
27 "PublicDescription": "DDRC read commands",
33 "BriefDescription": "DDRC precharge commands",
34 "PublicDescription": "DDRC precharge commands",
40 "BriefDescription": "DDRC active commands",
41 "PublicDescription": "DDRC active commands",
47 "BriefDescription": "DDRC rank commands",
48 "PublicDescription": "DDRC rank commands",
/linux-6.8/drivers/gpu/drm/tiny/
Dpanel-mipi-dbi.c45 * MIPI commands to execute when the display pipeline is enabled.
48 * The commands are stored in a byte array with the format:
51 * Some commands require a pause before the next command can be received.
68 u8 commands[]; member
80 struct panel_mipi_dbi_commands *commands; in panel_mipi_dbi_check_commands() local
104 u8 command = config->commands[i++]; in panel_mipi_dbi_check_commands()
105 u8 num_parameters = config->commands[i++]; in panel_mipi_dbi_check_commands()
106 const u8 *parameters = &config->commands[i]; in panel_mipi_dbi_check_commands()
127 commands = devm_kzalloc(dev, sizeof(*commands), GFP_KERNEL); in panel_mipi_dbi_check_commands()
128 if (!commands) in panel_mipi_dbi_check_commands()
[all …]
/linux-6.8/include/uapi/linux/
Dcxl_mem.h14 * Not all of the commands that the driver supports are available for use by
16 * to determine the live set of commands. Alternatively, it can issue the
143 * struct cxl_mem_query_commands - Query supported commands.
146 * is 0, driver will return the number of total supported commands.
148 * @commands: Output array of supported commands. This array must be allocated
151 * Allow userspace to query the available commands supported by both the driver,
152 * and the hardware. Commands that aren't supported by either the driver, or the
157 * - { .n_commands = 0 } // Get number of supported commands
158 * - { .n_commands = 15, .commands = buf } // Return first 15 (or less)
159 * supported commands
[all …]
Disst_if.h20 * commands. Even if the firmware is capable, driver may
22 * @max_cmds_per_ioctl: Returns the maximum number of commands driver will
29 * support and also number of commands to send in a single IOCTL request.
58 * one or more CPU mapping commands. Here IOCTL return value indicates
59 * number of commands sent or error number if no commands have been sent.
84 * struct isst_if_io_regs - structure for IO register commands
85 * @cmd_count: Number of io reg commands in io_reg[]
89 * one or more read/write commands to PUNIT. Here IOCTL return value
121 * struct isst_if_mbox_cmds - structure for mailbox commands
122 * @cmd_count: Number of mailbox commands in mbox_cmd[]
[all …]
/linux-6.8/drivers/platform/x86/
Dsamsung-laptop.c147 const struct sabi_commands commands; member
172 .commands = {
235 .commands = {
297 * This allow to call arbitrary sabi commands wihout
457 /* simple wrappers usable with most commands */
470 const struct sabi_commands *commands = &samsung->config->commands; in read_brightness() local
475 retval = sabi_command(samsung, commands->get_brightness, in read_brightness()
492 const struct sabi_commands *commands = &samsung->config->commands; in set_brightness() local
503 sabi_set_commandb(samsung, commands->set_brightness, 0); in set_brightness()
506 sabi_set_commandb(samsung, commands->set_brightness, user_level); in set_brightness()
[all …]
/linux-6.8/arch/sparc/kernel/
Dsetup_32.c135 static void __init boot_flags_init(char *commands) in boot_flags_init() argument
137 while (*commands) { in boot_flags_init()
139 while (*commands == ' ') in boot_flags_init()
140 commands++; in boot_flags_init()
143 if (*commands == '\0') in boot_flags_init()
145 if (*commands == '-') { in boot_flags_init()
146 commands++; in boot_flags_init()
147 while (*commands && *commands != ' ') in boot_flags_init()
148 process_switch(*commands++); in boot_flags_init()
151 if (!strncmp(commands, "mem=", 4)) { in boot_flags_init()
[all …]
/linux-6.8/tools/perf/pmu-events/arch/x86/snowridgex/
Duncore-memory.json7 …"PublicDescription": "Counts the total number of DRAM Read CAS commands, w/ and w/o auto-pre, issu…
17 …"PublicDescription": "Counts the total number of DRAM Write CAS commands issued, w/ and w/o auto-p…
27 … All Activates : Counts the number of DRAM Activate commands sent on this channel. Activate comma…
36 … due to Bypass : Counts the number of DRAM Activate commands sent on this channel. Activate comma…
41 "BriefDescription": "All DRAM CAS commands issued",
45 "PublicDescription": "Counts the total number of DRAM CAS commands issued on this channel.",
50 "BriefDescription": "All DRAM read CAS commands issued (including underfills)",
54 …"PublicDescription": "Counts the total number of DRAM Read CAS commands, w/ and w/o auto-pre, issu…
59 "BriefDescription": "DRAM RD_CAS and WR_CAS Commands. : DRAM RD_CAS commands w/auto-pre",
63Commands. : DRAM RD_CAS commands w/auto-pre : DRAM RD_CAS and WR_CAS Commands : Counts the total n…
[all …]
/linux-6.8/drivers/infiniband/hw/hns/
Dhns_roce_cmd.h40 /* QPC BT commands */
57 /* CQC BT commands */
68 /* MPT BT commands */
79 /* CQC TIMER commands */
83 /* MPT commands */
86 /* SRQC BT commands */
97 /* QPC TIMER commands */
101 /* EQC commands */
111 /* SCC CTX BT commands */
117 /* TPT commands */
[all …]
/linux-6.8/tools/perf/pmu-events/arch/x86/icelakex/
Duncore-memory.json7 … All Activates : Counts the number of DRAM Activate commands sent on this channel. Activate comma…
16 … due to Bypass : Counts the number of DRAM Activate commands sent on this channel. Activate comma…
21 "BriefDescription": "All DRAM CAS commands issued",
25 "PublicDescription": "Counts the total number of DRAM CAS commands issued on this channel.",
30 "BriefDescription": "All DRAM read CAS commands issued (including underfills)",
34 …"PublicDescription": "Counts the total number of DRAM Read CAS commands, w/ and w/o auto-pre, issu…
39 "BriefDescription": "DRAM RD_CAS and WR_CAS Commands. : DRAM RD_CAS commands w/auto-pre",
43Commands. : DRAM RD_CAS commands w/auto-pre : DRAM RD_CAS and WR_CAS Commands : Counts the total n…
48 "BriefDescription": "DRAM RD_CAS and WR_CAS Commands.",
52 "PublicDescription": "DRAM RD_CAS and WR_CAS Commands. : DRAM RD_CAS and WR_CAS Commands",
[all …]
/linux-6.8/tools/power/cpupower/man/
Dcpupower.116 The manpages of the commands (cpupower\-<command>(1)) provide detailed
18 of supported commands.
24 Shows supported commands and general usage.
30 This option is not supported by all commands, details can be found in the
31 manpages of the commands.
33 Some commands access all cores (typically the *\-set commands), some only
34 the first core (typically the *\-info commands) by default.
/linux-6.8/tools/perf/pmu-events/arch/x86/amdzen4/
Dmemory-controller.json11 "PublicDescription": "Number of ACTIVATE commands sent.",
18 "PublicDescription": "Number of ACTIVATE commands sent for reads.",
26 "PublicDescription": "Number of ACTIVATE commands sent for writes.",
34 "PublicDescription": "Number of PRECHARGE commands sent.",
41 "PublicDescription": "Number of PRECHARGE commands sent for reads.",
49 "PublicDescription": "Number of PRECHARGE commands sent for writes.",
57 "PublicDescription": "Number of CAS commands sent.",
64 "PublicDescription": "Number of CAS commands sent for reads.",
72 "PublicDescription": "Number of CAS commands sent for writes.",
/linux-6.8/tools/perf/pmu-events/arch/x86/sapphirerapids/
Duncore-memory.json1499 …licDescription": "Counts the number of HBM Activate commands sent on this channel. Activate comma…
1508 …licDescription": "Counts the number of HBM Activate commands sent on this channel. Activate comma…
1517 …licDescription": "Counts the number of HBM Activate commands sent on this channel. Activate comma…
1526 …licDescription": "Counts the number of HBM Activate commands sent on this channel. Activate comma…
1535 …licDescription": "Counts the number of HBM Activate commands sent on this channel. Activate comma…
1544 …licDescription": "Counts the number of HBM Activate commands sent on this channel. Activate comma…
1553 …licDescription": "Counts the number of HBM Activate commands sent on this channel. Activate comma…
1562 …licDescription": "Counts the number of HBM Activate commands sent on this channel. Activate comma…
1571 …licDescription": "Counts the number of HBM Activate commands sent on this channel. Activate comma…
1580 …licDescription": "Counts the number of HBM Activate commands sent on this channel. Activate comma…
[all …]
/linux-6.8/tools/perf/pmu-events/arch/x86/emeraldrapids/
Duncore-memory.json1499 …licDescription": "Counts the number of HBM Activate commands sent on this channel. Activate comma…
1508 …licDescription": "Counts the number of HBM Activate commands sent on this channel. Activate comma…
1517 …licDescription": "Counts the number of HBM Activate commands sent on this channel. Activate comma…
1526 …licDescription": "Counts the number of HBM Activate commands sent on this channel. Activate comma…
1535 …licDescription": "Counts the number of HBM Activate commands sent on this channel. Activate comma…
1544 …licDescription": "Counts the number of HBM Activate commands sent on this channel. Activate comma…
1553 …licDescription": "Counts the number of HBM Activate commands sent on this channel. Activate comma…
1562 …licDescription": "Counts the number of HBM Activate commands sent on this channel. Activate comma…
1571 …licDescription": "Counts the number of HBM Activate commands sent on this channel. Activate comma…
1580 …licDescription": "Counts the number of HBM Activate commands sent on this channel. Activate comma…
[all …]
/linux-6.8/tools/bpf/bpftool/Documentation/
Dbpftool.rst28 *MAP-COMMANDS* :=
32 *PROG-COMMANDS* := { **show** | **list** | **dump jited** | **dump xlated** | **pin** |
35 *LINK-COMMANDS* := { **show** | **list** | **pin** | **detach** | **help** }
37 *CGROUP-COMMANDS* := { **show** | **list** | **attach** | **detach** | **help** }
39 *PERF-COMMANDS* := { **show** | **list** | **help** }
41 *NET-COMMANDS* := { **show** | **list** | **help** }
43 *FEATURE-COMMANDS* := { **probe** | **help** }
45 *BTF-COMMANDS* := { **show** | **list** | **dump** | **help** }
47 *GEN-COMMANDS* := { **object** | **skeleton** | **min_core_btf** | **help** }
49 …*STRUCT-OPS-COMMANDS* := { **show** | **list** | **dump** | **register** | **unregister** | **help…
[all …]
/linux-6.8/drivers/net/ethernet/hisilicon/hns3/hns3_common/
Dhclge_comm_cmd.h61 /* Generic commands */
112 /* PTP commands */
116 /* PFC/Pause commands */
128 /* ETS/scheduler commands */
159 /* Packet buffer allocate commands */
170 /* TQP commands */
183 /* PPU commands */
190 /* RSS commands */
199 /* Vlan offload commands */
203 /* Interrupts commands */
[all …]
/linux-6.8/Documentation/i2c/
Di2c-stub.rst9 types of SMBus commands: write quick, (r/w) byte, (r/w) byte data, (r/w)
13 driver, which will then only react to SMBus commands to these addresses.
16 quick commands to the specified addresses; it will respond to the other
17 commands (also to the specified addresses) by reading from or writing to
29 SMBus block commands must be written to configure an SMBus command for
30 SMBus block operations. Writes can be partial. Block read commands always
50 Functionality override, to disable some commands. See I2C_FUNC_*
53 commands.
/linux-6.8/include/linux/mlx4/
Dcmd.h42 /* initialization and general commands */
81 /* TPT commands */
89 /* EQ commands */
95 /* CQ commands */
101 /* SRQ commands */
107 /* QP/EE commands */
123 /* special QP and management commands */
128 /* multicast commands */
133 /* miscellaneous commands */
140 /* Ethernet specific commands */
[all …]
/linux-6.8/Documentation/ABI/testing/
Ddebugfs-cec-error-inj6 The CEC Framework allows for CEC error injection commands through
8 through which the error injection commands can be given.
16 It is up to the driver to decide what commands to implement. The only
19 commands.
23 commands.
34 Drivers that implement this functionality must document the commands as
/linux-6.8/drivers/gpu/drm/xe/
Dxe_guc_ct_types.h23 /** @size: size of CTB commands (DW) */
25 /** @resv_space: reserved space of CTB commands (DW) */
27 /** @head: head of CTB commands (DW) */
29 /** @tail: tail of CTB commands (DW) */
31 /** @space: space in CTB commands (DW) */
43 /** @cmds: dma buffer map for CTB commands */
55 /** @cmds: snapshot of the CTB commands */
88 /** @ctbs: buffers for sending and receiving commands */
/linux-6.8/kernel/debug/kdb/
Dkdb_cmds1 # Initial commands for kdb, alter to suit your needs.
2 # These commands are executed in kdb_init() context, no SMP, no
3 # processes. Commands that require process data (including stack or
4 # registers) are not reliable this early. set and bp commands should
5 # be safe. Global breakpoint commands affect each cpu as it is booted.
/linux-6.8/drivers/net/ethernet/broadcom/bnx2x/
Dbnx2x_sp.h31 /* Wait until all pending commands complete */
40 * commands. If not set a new command will be added to the
41 * pending commands list.
101 /************************* VLAN-MAC commands related parameters ***************/
123 /* VLAN_MAC commands */
193 /* Commands pending for an execution. */
196 /* Commands pending for an completion. */
201 /* Maximum length of commands' list for one execution */
208 * Called before commands execution for commands that are really
216 * Called before removing pending commands, cleaning allocated
[all …]
/linux-6.8/tools/perf/pmu-events/arch/x86/ivytown/
Duncore-memory.json7 …icDescription": "Counts the number of DRAM Activate commands sent on this channel. Activate comma…
16 …icDescription": "Counts the number of DRAM Activate commands sent on this channel. Activate comma…
25 …icDescription": "Counts the number of DRAM Activate commands sent on this channel. Activate comma…
54 … "BriefDescription": "DRAM RD_CAS and WR_CAS Commands.; All DRAM WR_CAS (w/ and w/out auto-pre)",
58 …"PublicDescription": "DRAM RD_CAS and WR_CAS Commands; Counts the total number of DRAM CAS command…
63 … "BriefDescription": "DRAM RD_CAS and WR_CAS Commands.; All DRAM Reads (RD_CAS + Underfills)",
67 …"PublicDescription": "DRAM RD_CAS and WR_CAS Commands; Counts the total number of DRAM Read CAS co…
72 … "BriefDescription": "DRAM RD_CAS and WR_CAS Commands.; All DRAM RD_CAS (w/ and w/out auto-pre)",
76 …S and WR_CAS Commands; Counts the total number or DRAM Read CAS commands issued on this channel. …
81 "BriefDescription": "DRAM RD_CAS and WR_CAS Commands.; Read CAS issued in RMM",
[all …]

12345678910>>...113