Home
last modified time | relevance | path

Searched refs:message (Results 1 – 25 of 854) sorted by relevance

12345678910>>...35

/linux-6.1.9/drivers/mtd/devices/
Dmchp23k256.c65 struct spi_message message; in mchp23k256_write() local
69 spi_message_init(&message); in mchp23k256_write()
78 spi_message_add_tail(&transfer[0], &message); in mchp23k256_write()
82 spi_message_add_tail(&transfer[1], &message); in mchp23k256_write()
86 ret = spi_sync(flash->spi, &message); in mchp23k256_write()
93 if (retlen && message.actual_length > cmd_len) in mchp23k256_write()
94 *retlen += message.actual_length - cmd_len; in mchp23k256_write()
104 struct spi_message message; in mchp23k256_read() local
108 spi_message_init(&message); in mchp23k256_read()
118 spi_message_add_tail(&transfer[0], &message); in mchp23k256_read()
[all …]
/linux-6.1.9/include/trace/events/
Dintel_ish.h12 TP_PROTO(const char *message),
14 TP_ARGS(message),
17 __string(message, message)
21 __assign_str(message, message);
24 TP_printk("%s", __get_str(message))
/linux-6.1.9/lib/kunit/
Dassert.c33 static void kunit_assert_print_msg(const struct va_format *message, in kunit_assert_print_msg() argument
36 if (message->fmt) in kunit_assert_print_msg()
37 string_stream_add(stream, "\n%pV", message); in kunit_assert_print_msg()
41 const struct va_format *message, in kunit_fail_assert_format() argument
44 string_stream_add(stream, "%pV", message); in kunit_fail_assert_format()
49 const struct va_format *message, in kunit_unary_assert_format() argument
64 kunit_assert_print_msg(message, stream); in kunit_unary_assert_format()
69 const struct va_format *message, in kunit_ptr_not_err_assert_format() argument
87 kunit_assert_print_msg(message, stream); in kunit_ptr_not_err_assert_format()
115 const struct va_format *message, in kunit_binary_assert_format() argument
[all …]
/linux-6.1.9/drivers/hv/
Dhv_kvp.c201 struct hv_kvp_msg *message = (struct hv_kvp_msg *)msg; in kvp_on_msg() local
205 if (len < sizeof(*message)) in kvp_on_msg()
214 return kvp_handle_handshake(message); in kvp_on_msg()
228 data = &message->body.kvp_enum_data; in kvp_on_msg()
244 error = message->error; in kvp_on_msg()
253 kvp_respond_to_host(message, error); in kvp_on_msg()
376 struct hv_kvp_msg *message; in kvp_send_key() local
388 message = kzalloc(sizeof(*message), GFP_KERNEL); in kvp_send_key()
389 if (!message) in kvp_send_key()
392 message->kvp_hdr.operation = operation; in kvp_send_key()
[all …]
/linux-6.1.9/drivers/platform/x86/intel/
Dishtp_eclite.c171 struct ecl_message message; in ecl_ish_cl_write() local
182 message.header.version = ECL_ISH_HEADER_VERSION; in ecl_ish_cl_write()
183 message.header.data_type = ECL_MSG_DATA; in ecl_ish_cl_write()
184 message.header.request_type = ECL_ISH_WRITE; in ecl_ish_cl_write()
185 message.header.offset = opr_dev->opr_context.cmd_area.offset; in ecl_ish_cl_write()
186 message.header.data_len = opr_dev->opr_context.cmd_area.length; in ecl_ish_cl_write()
187 message.header.event = opr_dev->opr_context.cmd_area.event_id; in ecl_ish_cl_write()
188 len = sizeof(struct ecl_message_header) + message.header.data_len; in ecl_ish_cl_write()
190 memcpy(message.payload, in ecl_ish_cl_write()
191 opr_dev->opr_context.data_area.data + message.header.offset, in ecl_ish_cl_write()
[all …]
/linux-6.1.9/Documentation/sphinx/
Dkernellog.py15 def warn(app, message): argument
16 logger.warning(message)
18 def verbose(app, message): argument
19 logger.verbose(message)
21 def info(app, message): argument
22 logger.info(message)
/linux-6.1.9/Documentation/admin-guide/device-mapper/
Ddm-dust.rst9 the user can send a message to the target to start failing read
93 $ sudo dmsetup message dust1 0 addbadblock 60
96 $ sudo dmsetup message dust1 0 addbadblock 67
99 $ sudo dmsetup message dust1 0 addbadblock 72
111 To enable the "fail read on bad block" behavior, send the "enable" message::
113 $ sudo dmsetup message dust1 0 enable
144 result in an "Invalid argument" error, as well as a helpful message::
146 $ sudo dmsetup message dust1 0 addbadblock 88
147 device-mapper: message ioctl on dust1 failed: Invalid argument
151 result in an "Invalid argument" error, as well as a helpful message::
[all …]
/linux-6.1.9/Documentation/networking/
Dmctp.rst42 Since MCTP is message-based, only ``SOCK_DGRAM`` sockets are supported.
99 match the network, address, and message type will be received by this socket.
101 messages with the TO bit set, to indicate an incoming request message, rather
118 The ``smctp_type`` field specifies which message types to receive. Only the
121 receiving packets with and without a message integrity check footer.
123 ``sendto()``, ``sendmsg()``, ``send()`` : transmit an MCTP message
126 An MCTP message is transmitted using one of the ``sendto()``, ``sendmsg()`` or
135 /* set message destination */
142 /* arbitrary message to send, with message-type header */
152 EID. If ``MCTP_TAG_OWNER`` is not set, the message will be sent with the tag
[all …]
/linux-6.1.9/Documentation/driver-api/soundwire/
Dlocking.rst29 SoundWire message transfer lock. This mutex is part of
30 Bus data structure (sdw_bus). This lock is used to serialize the message
40 1. For every message transfer
44 b. Transfer message (Read/Write) to Slave1 or broadcast message on
60 | | b. Transfer message
74 2. For every message transfer in Prepare operation
78 b. Transfer message (Read/Write) to Slave1 or broadcast message on
99 | | b. Transfer message
/linux-6.1.9/include/kunit/
Dassert.h52 const struct va_format *message,
70 const struct va_format *message,
90 const struct va_format *message,
123 const struct va_format *message,
173 const struct va_format *message,
217 const struct va_format *message,
240 const struct va_format *message,
/linux-6.1.9/lib/
Dglobtest.c30 char const *message; in test() local
33 message = msg_error; in test()
35 message = msg_ok; in test()
39 printk(message, pat, str, mismatch + 3*match); in test()
134 static char const message[] __initconst = in glob_init() local
154 printk(message, successes, n); in glob_init()
/linux-6.1.9/tools/testing/selftests/futex/include/
Dlogging.h125 #define info(message, vargs...) \ argument
128 fprintf(stderr, "\t%s: "message, INFO, ##vargs); \
131 #define error(message, err, args...) \ argument
135 fprintf(stderr, "\t%s: %s: "message, \
138 fprintf(stderr, "\t%s: "message, ERROR, ##args); \
142 #define fail(message, args...) \ argument
145 fprintf(stderr, "\t%s: "message, FAIL, ##args); \
/linux-6.1.9/drivers/greybus/
Doperation.c215 static int gb_message_send(struct gb_message *message, gfp_t gfp) in gb_message_send() argument
217 struct gb_connection *connection = message->operation->connection; in gb_message_send()
219 trace_gb_message_send(message); in gb_message_send()
222 message, in gb_message_send()
229 static void gb_message_cancel(struct gb_message *message) in gb_message_cancel() argument
231 struct gb_host_device *hd = message->operation->connection->hd; in gb_message_cancel()
233 hd->driver->message_cancel(message); in gb_message_cancel()
310 struct gb_message *message, in gb_operation_message_init() argument
316 header = message->buffer; in gb_operation_message_init()
318 message->header = header; in gb_operation_message_init()
[all …]
/linux-6.1.9/drivers/s390/crypto/
Dzcrypt_cex2a.h49 unsigned char message[128]; member
59 unsigned char message[256]; member
69 unsigned char message[512]; member
82 unsigned char message[128]; member
95 unsigned char message[256]; member
108 unsigned char message[512]; member
Dzcrypt_msgtype50.c77 unsigned char message[128]; member
87 unsigned char message[256]; member
97 unsigned char message[512]; member
110 unsigned char message[128]; member
123 unsigned char message[256]; member
136 unsigned char message[512]; member
217 inp = meb1->message + sizeof(meb1->message) - mod_len; in ICAMEX_msg_to_type50MEX_msg()
228 inp = meb2->message + sizeof(meb2->message) - mod_len; in ICAMEX_msg_to_type50MEX_msg()
239 inp = meb3->message + sizeof(meb3->message) - mod_len; in ICAMEX_msg_to_type50MEX_msg()
295 inp = crb1->message + sizeof(crb1->message) - mod_len; in ICACRT_msg_to_type50CRT_msg()
[all …]
/linux-6.1.9/sound/soc/intel/common/
Dsst-dsp.c195 void sst_dsp_outbox_write(struct sst_dsp *sst, void *message, size_t bytes) in sst_dsp_outbox_write() argument
201 memcpy_toio(sst->mailbox.out_base, message, bytes); in sst_dsp_outbox_write()
204 trace_sst_ipc_outbox_wdata(i, *(u32 *)(message + i)); in sst_dsp_outbox_write()
208 void sst_dsp_outbox_read(struct sst_dsp *sst, void *message, size_t bytes) in sst_dsp_outbox_read() argument
214 memcpy_fromio(message, sst->mailbox.out_base, bytes); in sst_dsp_outbox_read()
217 trace_sst_ipc_outbox_rdata(i, *(u32 *)(message + i)); in sst_dsp_outbox_read()
221 void sst_dsp_inbox_write(struct sst_dsp *sst, void *message, size_t bytes) in sst_dsp_inbox_write() argument
227 memcpy_toio(sst->mailbox.in_base, message, bytes); in sst_dsp_inbox_write()
230 trace_sst_ipc_inbox_wdata(i, *(u32 *)(message + i)); in sst_dsp_inbox_write()
234 void sst_dsp_inbox_read(struct sst_dsp *sst, void *message, size_t bytes) in sst_dsp_inbox_read() argument
[all …]
/linux-6.1.9/drivers/input/keyboard/
Dapplespi.c300 struct message { struct
611 struct spi_message *message, void (*complete)(void *)) in applespi_async() argument
613 message->complete = complete; in applespi_async()
614 message->context = applespi; in applespi_async()
616 return spi_async(applespi->spi, message); in applespi_async()
768 struct message *message = (struct message *)packet->data; in applespi_send_cmd_msg() local
800 message->type = cpu_to_le16(0x1020); in applespi_send_cmd_msg()
801 msg_len = sizeof(message->tp_info_command); in applespi_send_cmd_msg()
803 message->zero = 0x02; in applespi_send_cmd_msg()
804 message->rsp_buf_len = cpu_to_le16(0x0200); in applespi_send_cmd_msg()
[all …]
/linux-6.1.9/drivers/input/misc/
Dkeyspan_remote.c183 struct keyspan_message message; in keyspan_check_data() local
248 message.system = 0; in keyspan_check_data()
253 message.system = message.system << 1; in keyspan_check_data()
257 message.system = (message.system << 1) + 1; in keyspan_check_data()
269 message.button = 0; in keyspan_check_data()
274 message.button = message.button << 1; in keyspan_check_data()
278 message.button = (message.button << 1) + 1; in keyspan_check_data()
292 message.toggle = 0; in keyspan_check_data()
296 message.toggle = 1; in keyspan_check_data()
318 __func__, message.system, message.button, message.toggle); in keyspan_check_data()
[all …]
/linux-6.1.9/drivers/acpi/acpica/
Duterror.c175 const char *message; in acpi_ut_prefixed_namespace_error() local
186 message = "Failure creating named object"; in acpi_ut_prefixed_namespace_error()
192 message = "Could not resolve symbol"; in acpi_ut_prefixed_namespace_error()
198 message = "Failure resolving symbol"; in acpi_ut_prefixed_namespace_error()
207 acpi_os_printf("%s [%s], %s", message, in acpi_ut_prefixed_namespace_error()
301 const char *message, in acpi_ut_method_error() argument
319 acpi_ns_print_node_pathname(node, message); in acpi_ut_method_error()
/linux-6.1.9/drivers/mailbox/
Dmailbox-test.c39 char *message; member
113 tdev->message = kzalloc(MBOX_MAX_MSG_LEN, GFP_KERNEL); in mbox_test_message_write()
114 if (!tdev->message) in mbox_test_message_write()
117 ret = copy_from_user(tdev->message, userbuf, count); in mbox_test_message_write()
133 data = tdev->message; in mbox_test_message_write()
136 tdev->message, MBOX_MAX_MSG_LEN); in mbox_test_message_write()
144 kfree(tdev->message); in mbox_test_message_write()
276 static void mbox_test_receive_message(struct mbox_client *client, void *message) in mbox_test_receive_message() argument
286 } else if (message) { in mbox_test_receive_message()
288 message, MBOX_MAX_MSG_LEN); in mbox_test_receive_message()
[all …]
/linux-6.1.9/drivers/auxdisplay/
Dline-display.c41 linedisp->buf[i] = linedisp->message[ch]; in linedisp_scroll()
88 kfree(linedisp->message); in linedisp_display()
89 linedisp->message = NULL; in linedisp_display()
100 kfree(linedisp->message); in linedisp_display()
102 linedisp->message = new_msg; in linedisp_display()
128 return sysfs_emit(buf, "%s\n", linedisp->message); in message_show()
152 static DEVICE_ATTR_RW(message);
173 if (linedisp->message && linedisp->message_len > linedisp->num_chars) { in scroll_step_ms_store()
256 kfree(linedisp->message); in linedisp_unregister()
/linux-6.1.9/drivers/spi/
Dspi-mpc52xx.c84 struct spi_message *message; /* current message */ member
104 cs = ms->message->spi->chip_select; in mpc52xx_spi_chipsel()
163 ms->message = list_first_entry(&ms->queue, struct spi_message, queue); in mpc52xx_spi_fsmstate_idle()
164 list_del_init(&ms->message->queue); in mpc52xx_spi_fsmstate_idle()
168 spi = ms->message->spi; in mpc52xx_spi_fsmstate_idle()
180 sppr = ((ms->ipb_freq / ms->message->spi->max_speed_hz) + 1) >> 1; in mpc52xx_spi_fsmstate_idle()
197 ms->transfer = container_of(ms->message->transfers.next, in mpc52xx_spi_fsmstate_idle()
240 ms->message->status = -EIO; in mpc52xx_spi_fsmstate_transfer()
241 if (ms->message->complete) in mpc52xx_spi_fsmstate_transfer()
242 ms->message->complete(ms->message->context); in mpc52xx_spi_fsmstate_transfer()
[all …]
/linux-6.1.9/Documentation/userspace-api/media/cec/
Dcec-ioc-receive.rst14 CEC_RECEIVE, CEC_TRANSMIT - Receive or transmit a CEC message
39 To receive a CEC message the application has to fill in the
45 is non-zero and no message arrived within ``timeout`` milliseconds, then
48 A received message can be:
50 1. a message received from another CEC device (the ``sequence`` field will
58 To send a CEC message the application has to fill in the struct
72 the reply will arrive in a later message. The ``sequence`` field can
102 - Timestamp in ns of when the last byte of the message was transmitted.
107 - Timestamp in ns of when the last byte of the message was received.
112 - The length of the message. For :ref:`ioctl CEC_TRANSMIT <CEC_TRANSMIT>` this is filled in
[all …]
/linux-6.1.9/Documentation/infiniband/
Dtag_matching.rst15 message envelopes may match, the pair that includes the earliest posted-send
21 When a message is sent from the sender to the receiver, the communication
24 this is an expected message, otherwise it is called an unexpected message.
31 1. The Eager protocol- the complete message is sent when the send is
39 A fin message needs to be received in order for the buffer to be reused.
45 unexpected message list. The application posts receive buffers through calls
51 pre-posted receive for this arriving message, it is passed to the software and
52 placed in the unexpected message list. Otherwise the match is processed,
57 When a receive-message is posted, the communication library will first check
58 the software unexpected message list for a matching receive. If a match is
[all …]
/linux-6.1.9/drivers/misc/ibmasm/
Ddot_command.c17 void ibmasm_receive_message(struct service_processor *sp, void *message, int message_size) in ibmasm_receive_message() argument
20 struct dot_command_header *header = (struct dot_command_header *)message; in ibmasm_receive_message()
25 size = get_dot_command_size(message); in ibmasm_receive_message()
34 ibmasm_receive_event(sp, message, size); in ibmasm_receive_message()
37 ibmasm_receive_command_response(sp, message, size); in ibmasm_receive_message()
40 ibmasm_receive_heartbeat(sp, message, size); in ibmasm_receive_message()

12345678910>>...35