Home
last modified time | relevance | path

Searched refs:message (Results 1 – 200 of 609) sorted by relevance

1234

/linux-4.4.14/drivers/s390/crypto/
Dzcrypt_msgtype50.c94 unsigned char message[128]; member
104 unsigned char message[256]; member
114 unsigned char message[512]; member
127 unsigned char message[128]; member
140 unsigned char message[256]; member
153 unsigned char message[512]; member
195 struct type50_meb1_msg *meb1 = ap_msg->message; in ICAMEX_msg_to_type50MEX_msg()
203 inp = meb1->message + sizeof(meb1->message) - mod_len; in ICAMEX_msg_to_type50MEX_msg()
205 struct type50_meb2_msg *meb2 = ap_msg->message; in ICAMEX_msg_to_type50MEX_msg()
213 inp = meb2->message + sizeof(meb2->message) - mod_len; in ICAMEX_msg_to_type50MEX_msg()
[all …]
Dzcrypt_msgtype6.c187 } __packed * msg = ap_msg->message; in ICAMEX_msg_to_type6MEX_msgX()
255 } __packed * msg = ap_msg->message; in ICACRT_msg_to_type6CRT_msgX()
311 } __packed * msg = ap_msg->message; in XCRB_msg_to_type6CPRB_msgX()
315 char *req_data = ap_msg->message + sizeof(struct type6_hdr) + rcblen; in XCRB_msg_to_type6CPRB_msgX()
415 } __packed * msg = ap_msg->message; in xcrb_msg_to_type6_ep11cprb_msgx()
551 struct type86x_reply *msg = reply->message; in convert_type86_ica()
624 struct type86_fmt2_msg *msg = reply->message; in convert_type86_xcrb()
625 char *data = reply->message; in convert_type86_xcrb()
655 struct type86_fmt2_msg *msg = reply->message; in convert_type86_ep11_xcrb()
656 char *data = reply->message; in convert_type86_ep11_xcrb()
[all …]
Dzcrypt_cex2a.h64 unsigned char message[128]; member
74 unsigned char message[256]; member
84 unsigned char message[512]; member
97 unsigned char message[128]; member
110 unsigned char message[256]; member
123 unsigned char message[512]; member
Dzcrypt_pcixcc.c226 ap_msg.message = (void *) get_zeroed_page(GFP_KERNEL); in zcrypt_pcixcc_rng_supported()
227 if (!ap_msg.message) in zcrypt_pcixcc_rng_supported()
231 rc = ap_send(ap_dev->qid, 0x0102030405060708ULL, ap_msg.message, in zcrypt_pcixcc_rng_supported()
239 rc = ap_recv(ap_dev->qid, &psmid, ap_msg.message, 4096); in zcrypt_pcixcc_rng_supported()
250 reply = ap_msg.message; in zcrypt_pcixcc_rng_supported()
256 free_page((unsigned long) ap_msg.message); in zcrypt_pcixcc_rng_supported()
Dzcrypt_error.h93 struct error_hdr *ehdr = reply->message; in convert_error()
Dzcrypt_msgtype6.h137 } __packed * msg = ap_msg->message; in rng_type6CPRB_msgX()
/linux-4.4.14/drivers/hv/
Dhv_kvp.c168 struct hv_kvp_msg *message = (struct hv_kvp_msg *)msg; in kvp_on_msg() local
172 if (len < sizeof(*message)) in kvp_on_msg()
181 return kvp_handle_handshake(message); in kvp_on_msg()
195 data = &message->body.kvp_enum_data; in kvp_on_msg()
211 error = message->error; in kvp_on_msg()
220 kvp_respond_to_host(message, error); in kvp_on_msg()
343 struct hv_kvp_msg *message; in kvp_send_key() local
355 message = kzalloc(sizeof(*message), GFP_KERNEL); in kvp_send_key()
356 if (!message) in kvp_send_key()
359 message->kvp_hdr.operation = operation; in kvp_send_key()
[all …]
/linux-4.4.14/scripts/kconfig/
Dkxgettext.c83 struct message { struct
86 struct message *next; argument
90 static struct message *message__list; argument
92 static struct message *message__new(const char *msg, char *option, in message__new()
95 struct message *self = malloc(sizeof(*self)); in message__new()
120 static struct message *mesage__find(const char *msg) in mesage__find()
122 struct message *m = message__list; in mesage__find()
133 static int message__add_file_line(struct message *self, const char *file, in message__add_file_line()
155 struct message *m = mesage__find(escaped); in message__add()
189 static void message__print_file_lineno(struct message *self) in message__print_file_lineno()
[all …]
/linux-4.4.14/tools/testing/selftests/futex/include/
Dlogging.h130 #define info(message, vargs...) \ argument
133 fprintf(stderr, "\t%s: "message, INFO, ##vargs); \
136 #define error(message, err, args...) \ argument
140 fprintf(stderr, "\t%s: %s: "message, \
143 fprintf(stderr, "\t%s: "message, ERROR, ##args); \
147 #define fail(message, args...) \ argument
150 fprintf(stderr, "\t%s: "message, FAIL, ##args); \
/linux-4.4.14/drivers/mailbox/
Dmailbox-test.c39 char *message; member
101 tdev->message = kzalloc(MBOX_MAX_MSG_LEN, GFP_KERNEL); in mbox_test_message_write()
102 if (!tdev->message) in mbox_test_message_write()
105 ret = copy_from_user(tdev->message, userbuf, count); in mbox_test_message_write()
121 data = tdev->message; in mbox_test_message_write()
124 MBOX_BYTES_PER_LINE, 1, tdev->message, MBOX_MAX_MSG_LEN, true); in mbox_test_message_write()
132 kfree(tdev->message); in mbox_test_message_write()
217 static void mbox_test_receive_message(struct mbox_client *client, void *message) in mbox_test_receive_message() argument
228 } else if (message) { in mbox_test_receive_message()
231 message, MBOX_MAX_MSG_LEN, true); in mbox_test_receive_message()
[all …]
/linux-4.4.14/arch/tile/kernel/
Dmessaging.c49 int message[HV_MAX_MESSAGE_SIZE/sizeof(int)]; in hv_message_intr() local
71 rmi = hv_receive_message(*state, (HV_VirtAddr) message, in hv_message_intr()
72 sizeof(message)); in hv_message_intr()
87 tag = message[0]; in hv_message_intr()
89 evaluate_message(message[0]); in hv_message_intr()
94 HV_IntrMsg *him = (HV_IntrMsg *)message; in hv_message_intr()
/linux-4.4.14/drivers/input/misc/
Dkeyspan_remote.c191 struct keyspan_message message; in keyspan_check_data() local
256 message.system = 0; in keyspan_check_data()
261 message.system = message.system << 1; in keyspan_check_data()
265 message.system = (message.system << 1) + 1; in keyspan_check_data()
277 message.button = 0; in keyspan_check_data()
282 message.button = message.button << 1; in keyspan_check_data()
286 message.button = (message.button << 1) + 1; in keyspan_check_data()
300 message.toggle = 0; in keyspan_check_data()
304 message.toggle = 1; in keyspan_check_data()
326 __func__, message.system, message.button, message.toggle); in keyspan_check_data()
[all …]
Dad714x-spi.c35 struct spi_message message; in ad714x_spi_read() local
40 spi_message_init(&message); in ad714x_spi_read()
47 spi_message_add_tail(&xfer[0], &message); in ad714x_spi_read()
51 spi_message_add_tail(&xfer[1], &message); in ad714x_spi_read()
53 error = spi_sync(spi, &message); in ad714x_spi_read()
/linux-4.4.14/drivers/spi/
Dspi-mpc52xx.c81 struct spi_message *message; /* current message */ member
101 cs = ms->message->spi->chip_select; in mpc52xx_spi_chipsel()
159 ms->message = list_first_entry(&ms->queue, struct spi_message, queue); in mpc52xx_spi_fsmstate_idle()
160 list_del_init(&ms->message->queue); in mpc52xx_spi_fsmstate_idle()
164 spi = ms->message->spi; in mpc52xx_spi_fsmstate_idle()
176 sppr = ((ms->ipb_freq / ms->message->spi->max_speed_hz) + 1) >> 1; in mpc52xx_spi_fsmstate_idle()
193 ms->transfer = container_of(ms->message->transfers.next, in mpc52xx_spi_fsmstate_idle()
236 ms->message->status = -EIO; in mpc52xx_spi_fsmstate_transfer()
237 if (ms->message->complete) in mpc52xx_spi_fsmstate_transfer()
238 ms->message->complete(ms->message->context); in mpc52xx_spi_fsmstate_transfer()
[all …]
Dspi.c2100 static int __spi_validate(struct spi_device *spi, struct spi_message *message) in __spi_validate() argument
2106 if (list_empty(&message->transfers)) in __spi_validate()
2118 list_for_each_entry(xfer, &message->transfers, transfer_list) { in __spi_validate()
2134 message->frame_length = 0; in __spi_validate()
2135 list_for_each_entry(xfer, &message->transfers, transfer_list) { in __spi_validate()
2136 message->frame_length += xfer->len; in __spi_validate()
2206 message->status = -EINPROGRESS; in __spi_validate()
2211 static int __spi_async(struct spi_device *spi, struct spi_message *message) in __spi_async() argument
2215 message->spi = spi; in __spi_async()
2220 trace_spi_message_submit(message); in __spi_async()
[all …]
Dspi-pl022.c1393 struct spi_message *message = NULL; in pump_transfers() local
1398 message = pl022->cur_msg; in pump_transfers()
1402 if (message->state == STATE_ERROR) { in pump_transfers()
1403 message->status = -EIO; in pump_transfers()
1409 if (message->state == STATE_DONE) { in pump_transfers()
1410 message->status = 0; in pump_transfers()
1416 if (message->state == STATE_RUNNING) { in pump_transfers()
1432 message->state = STATE_RUNNING; in pump_transfers()
1436 message->state = STATE_ERROR; in pump_transfers()
1437 message->status = -EIO; in pump_transfers()
[all …]
Dspi-pxa2xx.c881 struct spi_message *message = NULL; in pump_transfers() local
895 message = drv_data->cur_msg; in pump_transfers()
900 if (message->state == ERROR_STATE) { in pump_transfers()
901 message->status = -EIO; in pump_transfers()
907 if (message->state == DONE_STATE) { in pump_transfers()
908 message->status = 0; in pump_transfers()
914 if (message->state == RUNNING_STATE) { in pump_transfers()
930 if (message->is_dma_mapped in pump_transfers()
936 message->status = -EINVAL; in pump_transfers()
942 dev_warn_ratelimited(&message->spi->dev, in pump_transfers()
[all …]
Dspi-bfin5xx.c557 struct spi_message *message = NULL; in bfin_spi_pump_transfers() local
567 message = drv_data->cur_msg; in bfin_spi_pump_transfers()
576 if (message->state == ERROR_STATE) { in bfin_spi_pump_transfers()
578 message->status = -EIO; in bfin_spi_pump_transfers()
584 if (message->state == DONE_STATE) { in bfin_spi_pump_transfers()
586 message->status = 0; in bfin_spi_pump_transfers()
593 if (message->state == RUNNING_STATE) { in bfin_spi_pump_transfers()
604 message->status = -EIO; in bfin_spi_pump_transfers()
611 message->state = bfin_spi_next_transfer(drv_data); in bfin_spi_pump_transfers()
661 message->state = RUNNING_STATE; in bfin_spi_pump_transfers()
[all …]
Dspi-fsl-dspi.c368 struct spi_message *message) in dspi_transfer_one_message() argument
371 struct spi_device *spi = message->spi; in dspi_transfer_one_message()
380 message->actual_length = 0; in dspi_transfer_one_message()
382 list_for_each_entry(transfer, &message->transfers, transfer_list) { in dspi_transfer_one_message()
384 dspi->cur_msg = message; in dspi_transfer_one_message()
439 message->status = status; in dspi_transfer_one_message()
Dspi-bfin-sport.c341 struct spi_message *message = NULL; in bfin_sport_spi_pump_transfers() local
351 message = drv_data->cur_msg; in bfin_sport_spi_pump_transfers()
366 message->status = -EIO; in bfin_sport_spi_pump_transfers()
374 message->status = 0; in bfin_sport_spi_pump_transfers()
466 message->actual_length += transfer->len; in bfin_sport_spi_pump_transfers()
/linux-4.4.14/lib/
Dglob.c151 char const *message; in test() local
154 message = msg_error; in test()
156 message = msg_ok; in test()
160 printk(message, pat, str, mismatch + 3*match); in test()
255 static char const message[] __initconst = in glob_init() local
275 printk(message, successes, n); in glob_init()
/linux-4.4.14/Documentation/nfc/
Dnfc-pn544.txt17 write functions behave a bit differently because the message formats
24 HCI messages consist of an eight bit header and the message body. The
25 header contains the message length. Maximum size for an HCI message is
28 and third (LSB) bytes of the message. The maximum FW message length is
/linux-4.4.14/drivers/misc/ibmasm/
Ddot_command.c31 void ibmasm_receive_message(struct service_processor *sp, void *message, int message_size) in ibmasm_receive_message() argument
34 struct dot_command_header *header = (struct dot_command_header *)message; in ibmasm_receive_message()
39 size = get_dot_command_size(message); in ibmasm_receive_message()
48 ibmasm_receive_event(sp, message, size); in ibmasm_receive_message()
51 ibmasm_receive_command_response(sp, message, size); in ibmasm_receive_message()
54 ibmasm_receive_heartbeat(sp, message, size); in ibmasm_receive_message()
Dlowlevel.c37 struct i2o_message *message; in ibmasm_send_i2o_message() local
47 message = get_i2o_message(sp->base_address, mfa); in ibmasm_send_i2o_message()
49 memcpy_toio(&message->header, &header, sizeof(struct i2o_header)); in ibmasm_send_i2o_message()
50 memcpy_toio(&message->data, command->buffer, command_size); in ibmasm_send_i2o_message()
Dheartbeat.c85 void ibmasm_receive_heartbeat(struct service_processor *sp, void *message, size_t size) in ibmasm_receive_heartbeat() argument
98 memcpy_fromio(cmd->buffer, message, size); in ibmasm_receive_heartbeat()
/linux-4.4.14/Documentation/connector/
Dconnector.txt10 When the driver receives a special netlink message with the appropriate
38 callback function which will be called when a message with above idx.val
78 Sends message to the specified groups. It can be safely called from
82 struct cn_msg * - message header(with attached data).
85 If non-zero the message will be sent to the
91 and message will be delivered to the group which was
93 If __group is not zero, then message will be delivered
107 msg->seq and msg->ack are used to determine message genealogy. When
108 someone sends a message, they use a locally unique sequence and random
112 The sequence number is incremented with each message sent.
[all …]
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/
Dbase.c37 u32 process, u32 message, u32 data0, u32 data1) in nvkm_pmu_send() argument
58 pmu->recv.message = message; in nvkm_pmu_send()
71 nvkm_wr32(device, 0x10a1c4, message); in nvkm_pmu_send()
96 u32 process, message, data0, data1; in nvkm_pmu_recv() local
112 message = nvkm_rd32(device, 0x10a1c4); in nvkm_pmu_recv()
123 message == pmu->recv.message) { in nvkm_pmu_recv()
140 process, message, data0, data1); in nvkm_pmu_recv()
/linux-4.4.14/Documentation/networking/
Dnetif-msg.txt5 The design of the network interface message level setting.
9 The design of the debugging message interface was guided and
15 integer variable that controls the debug message level. The message
18 The message level was not precisely defined past level 3, but were
30 Initially this message level variable was uniquely named in each driver
40 Per-interface rather than per-driver message level setting.
64 The set of message levels is named
Dnetlink_mmap.txt20 syscalls have to be issued by user-space to get more message.
57 Conversion of the transmit path involves changing message construction to
126 meta-data, and the message itself.
128 Frame: [ header message ]
145 - nm_len contains the length of the message contained in the data area
147 - nm_group specified the destination multicast group of message
156 RX ring: frame belongs to the kernel and contains no message
161 message construction.
164 RX ring only: frame is currently used by the kernel for message
165 construction and contains no valid message yet.
[all …]
Drxrpc.txt230 (*) Once the application has received the last message associated with a call,
246 to indicate the terminal message for that call.
248 (*) A call may be aborted by adding an abort control message to the control
254 an abort or a busy message terminates the kernel's use of that call's tag.
267 message to server application to let it know there's a new call awaiting
268 its acceptance [recvmsg reports a special control message]. The server
290 (b) it meets a non-data message,
292 (c) it meets a message belonging to a different call, or
302 (3) If a data message is only partially consumed in filling a user buffer,
303 then the remainder of that message will be left on the front of the queue
[all …]
Drds.txt76 a socket. A message is queued when sendmsg is called, and
93 Sends a message to the indicated recipient. The kernel will
97 An attempt to send a message that exceeds SO_SNDSIZE will
100 An attempt to send a message that would take the total number
104 An attempt to send a message to a destination that is marked
108 Receives a message that was queued to this socket. The sockets
125 incoming message queued to the socket, or a pending notification,
145 it detects a timeout. For instance, if it tried to send a message,
169 The message header is a 'struct rds_header' (see rds.h):
201 hardware generates an ack message before it has DMAed the message
[all …]
Dax25.txt7 called linux-hams@vger.kernel.org. To subscribe to it, send a message to
9 of the message, the subject field is ignored. You don't need to be
Dnetconsole.txt150 <level>,<sequnum>,<timestamp>,<contflag>;<message text>
152 Non printable characters in <message text> are escaped using "\xff"
153 notation. If the message contains optional dictionary, verbatim
156 If a message doesn't fit in certain number of bytes (currently 1000),
157 the message is split into multiple fragments by netconsole. These
162 For example, assuming a lot smaller chunk size, a message "the first
Dcan.txt26 4.1.7 RAW socket returned message flags
29 4.2.2 Broadcast Manager message flags
31 4.2.4 Broadcast Manager message sequence transmission
33 4.2.6 Broadcast Manager multiplex message receive filter
233 creates an appropriate error message frame. Error messages frames can
237 by default. The format of the CAN error message frame is briefly
428 - The socket only receives valid data frames (=> no error message frames)
623 4.1.7 RAW socket returned message flags
640 such as message contents changes, packet length changes, and do time-out
644 created and modified at runtime; both the message content and the two
[all …]
Dx25-iface.txt32 confirmation message should be returned as soon as possible.
37 confirmation message should be returned as soon as possible.
54 LAPB link has been established. The same message is used for both a LAPB
59 LAPB link has been terminated. This same message is used for both a LAPB
Dxfrm_sync.txt38 The netlink message types are:
69 message (kernel<->user) as well the cause (config, query or event).
144 the XFRM_MSG_GETAE message.
150 The message will always have XFRMA_LTIME_VAL and XFRMA_REPLAY_VAL TLVs.
157 The message will always have XFRMA_LTIME_VAL and XFRMA_REPLAY_VAL TLVs.
Dx25.txt34 parties are welcome to subscribe to it. Just send a message to
35 majordomo@vger.kernel.org with the following in the message body:
Dcdc_mbim.txt91 limits the maximum control message size. The managament application is
92 responsible for negotiating a control message size complying with the
105 The userspace application is responsible for all control message
112 exceed the negotiated control message size.
118 negotiated control message size.
/linux-4.4.14/Documentation/devicetree/bindings/powerpc/fsl/
Dmpic-msgr.txt4 representation of the message register blocks found in some FSL MPIC
9 - compatible: Specifies the compatibility list for the message register
12 the MPIC containing the message registers.
15 message register block's addressable register space. The type shall be
27 bit at bit 'n' indicates that message register 'n' can receive interrupts.
29 be <u32>. If not present, then all of the message registers in the block
34 An alias should be created for every message register block. They are not
Dsrio-rmu.txt3 For SRIO controllers that implement the message unit as part of the controller
22 length of the SRIO configuration registers for message units
53 length of the SRIO configuration registers for message units
83 length of the SRIO configuration registers for message units
113 length of the SRIO configuration registers for message units
137 message-unit@0 {
144 message-unit@100 {
Dmsi-pic.txt14 the address and the length of the shared message interrupt register set.
40 the MSI message address.
90 block) and sets that address as the MSI message address.
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/fuc/
Dhost.fuc62 // HOST->PWR comms - dequeue message(s) for process(es) from FIFO
71 // calculate address of message
76 // read message data, and pass to appropriate process
91 // PWR->HOST comms - enqueue message for HOST to RFIFO
95 // $r13 - message
96 // $r12 - message data 0
97 // $r11 - message data 1
100 // message from intr handler == HOST->PWR comms pending
118 // enqueue message
128 // notify host of pending message
Dkernel.fuc327 // request the current process be sent a message after a timeout expires
387 // send message to another process
391 // $r13 - message
392 // $r12 - message data 0
393 // $r11 - message data 1
405 // enqueue message
452 // send message to another process
456 // $r13 - message
457 // $r12 - message data 0
458 // $r11 - message data 1
[all …]
Dmacros.fuc135 // Inter-process message format
141 // Kernel message IDs
145 // Process message queue description
/linux-4.4.14/arch/sh/kernel/cpu/sh4a/
Dsmp-shx3.c32 unsigned int message = (unsigned int)(long)arg; in ipi_interrupt_handler() local
38 x &= (1 << (message << 2)); in ipi_interrupt_handler()
41 smp_message_recv(message); in ipi_interrupt_handler()
110 static void shx3_send_ipi(unsigned int cpu, unsigned int message) in shx3_send_ipi() argument
116 __raw_writel(1 << (message << 2), addr); /* C0INTICI..CnINTICI */ in shx3_send_ipi()
/linux-4.4.14/drivers/scsi/arm/
Dmsgqueue.h15 struct message { struct
22 struct message msg; argument
63 extern struct message *msgqueue_getmsg(MsgQueue_t *msgq, int msgno);
Dacornscsi.c1328 struct message *msg; in acornscsi_sendmessage()
1422 unsigned char message; in acornscsi_readmessagebyte() local
1428 message = sbic_arm_read(host, SBIC_DATA); in acornscsi_readmessagebyte()
1435 return message; in acornscsi_readmessagebyte()
1446 unsigned char message[16]; in acornscsi_message() local
1450 message[msgidx] = acornscsi_readmessagebyte(host); in acornscsi_message()
1454 if (message[0] == EXTENDED_MESSAGE || in acornscsi_message()
1455 (message[0] >= 0x20 && message[0] <= 0x2f)) in acornscsi_message()
1460 if (message[0] == EXTENDED_MESSAGE) in acornscsi_message()
1461 msglen += message[msgidx]; in acornscsi_message()
[all …]
Dfas216.c416 struct message *msg; in fas216_get_last_msg()
1051 static void fas216_parse_message(FAS216_Info *info, unsigned char *message, int msglen) in fas216_parse_message() argument
1055 switch (message[0]) { in fas216_parse_message()
1110 fas216_handlesync(info, message); in fas216_parse_message()
1126 switch (message[2]) { in fas216_parse_message()
1128 fas216_handlesync(info, message); in fas216_parse_message()
1145 printk("%s%02X", i & 31 ? " " : "\n ", message[i]); in fas216_parse_message()
1227 unsigned char *message = info->scsi.message; in fas216_message() local
1233 message[0] = fas216_readb(info, REG_FF); in fas216_message()
1235 if (message[0] == EXTENDED_MESSAGE) { in fas216_message()
[all …]
Dmsgqueue.c101 struct message *msgqueue_getmsg(MsgQueue_t *msgq, int msgno) in msgqueue_getmsg()
/linux-4.4.14/Documentation/isdn/
DINTERFACE.fax80 the end of connection for the +FHNG message.
84 ISDN_TTY_FAX_CFR output of +FCFR message.
89 ISDN_TTY_FAX_DCS output of +FDCS and CONNECT message,
101 ISDN_TTY_FAX_DIS output of +FDIS message and values.
105 OK message will be sent.
109 0: output OK message (more pages follow)
112 ISDN_TTY_FAX_TRAIN_OK output of +FDCS and OK message (for receive mode).
118 OK message, switching to phase E.
132 Set by HL in receive-mode for +FET message.
DINTERFACE.CAPI64 CAPI's capi_ctr_handle_message() function to pass a received CAPI message to
137 pointer to a callback function for sending a CAPI message to the
145 to accepting or queueing the message. Errors occurring during the
146 actual processing of the message should be signaled with an
147 appropriate reply message.
184 (skb). Each skb contains a single CAPI message coded according to the CAPI 2.0
188 payload data immediately follows the CAPI message itself within the same skb.
190 parameter may be omitted by setting the length field of the CAPI message to 22
198 The _cmsg structure stores the contents of a CAPI 2.0 message in an easily
212 Only those parameters appearing in the message type currently being processed
[all …]
/linux-4.4.14/drivers/acpi/acpica/
Ddsdebug.c60 const char *message);
76 const char *message) in acpi_ds_print_node_pathname() argument
94 if (message) { in acpi_ds_print_node_pathname()
96 message)); in acpi_ds_print_node_pathname()
Duterror.c263 const char *message, in acpi_ut_method_error() argument
282 acpi_ns_print_node_pathname(node, message); in acpi_ut_method_error()
Dnsutils.c72 const char *message) in acpi_ns_print_node_pathname() argument
88 if (message) { in acpi_ns_print_node_pathname()
89 acpi_os_printf("%s ", message); in acpi_ns_print_node_pathname()
/linux-4.4.14/sound/soc/intel/common/
Dsst-dsp.c371 void sst_dsp_outbox_write(struct sst_dsp *sst, void *message, size_t bytes) in sst_dsp_outbox_write() argument
377 memcpy_toio(sst->mailbox.out_base, message, bytes); in sst_dsp_outbox_write()
380 trace_sst_ipc_outbox_wdata(i, *(u32 *)(message + i)); in sst_dsp_outbox_write()
384 void sst_dsp_outbox_read(struct sst_dsp *sst, void *message, size_t bytes) in sst_dsp_outbox_read() argument
390 memcpy_fromio(message, sst->mailbox.out_base, bytes); in sst_dsp_outbox_read()
393 trace_sst_ipc_outbox_rdata(i, *(u32 *)(message + i)); in sst_dsp_outbox_read()
397 void sst_dsp_inbox_write(struct sst_dsp *sst, void *message, size_t bytes) in sst_dsp_inbox_write() argument
403 memcpy_toio(sst->mailbox.in_base, message, bytes); in sst_dsp_inbox_write()
406 trace_sst_ipc_inbox_wdata(i, *(u32 *)(message + i)); in sst_dsp_inbox_write()
410 void sst_dsp_inbox_read(struct sst_dsp *sst, void *message, size_t bytes) in sst_dsp_inbox_read() argument
[all …]
Dsst-dsp.h282 void sst_dsp_inbox_write(struct sst_dsp *dsp, void *message, size_t bytes);
283 void sst_dsp_inbox_read(struct sst_dsp *dsp, void *message, size_t bytes);
284 void sst_dsp_outbox_write(struct sst_dsp *dsp, void *message, size_t bytes);
285 void sst_dsp_outbox_read(struct sst_dsp *dsp, void *message, size_t bytes);
/linux-4.4.14/Documentation/w1/
Dw1.netlink20 __u8 type - message type.
61 Each connector message can include one or more w1_netlink_msg with
83 Replies to W1_LIST_MASTERS should send a message back to the userspace
93 Each message is at most 4k in size, so if number of master devices
104 [cn_msg, ack = 1 and increasing, 0 means the last message,
111 w1_netlink_cmd->len = N * 8; where N is number of IDs in this message.
130 as request message except that length parameters do not account for data
143 request message (except lengths as described above).
150 even if there were errors, only length mismatch interrupts message processing.
156 When new message (w1_netlink_msg) is received w1 core detects if it is
[all …]
/linux-4.4.14/include/linux/sunrpc/
Dgss_api.h55 struct xdr_buf *message,
59 struct xdr_buf *message,
113 struct xdr_buf *message,
117 struct xdr_buf *message,
/linux-4.4.14/drivers/memory/
Dtegra20-mc.c139 char *message; in tegra20_mc_decode() member
144 .message = "MC_DECERR", in tegra20_mc_decode()
149 .message = "MC_GART_ERR", in tegra20_mc_decode()
155 .message = "MC_SECURITY_ERR", in tegra20_mc_decode()
174 reg[idx].message, req, addr, client, in tegra20_mc_decode()
/linux-4.4.14/drivers/hid/
Dhid-logitech-hidpp.c182 struct hidpp_report *message, in hidpp_send_message_sync() argument
196 *response = *message; in hidpp_send_message_sync()
198 ret = __hidpp_send_report(hidpp->hid_dev, message); in hidpp_send_message_sync()
237 struct hidpp_report *message; in hidpp_send_fap_command_sync() local
240 if (param_count > sizeof(message->fap.params)) in hidpp_send_fap_command_sync()
243 message = kzalloc(sizeof(struct hidpp_report), GFP_KERNEL); in hidpp_send_fap_command_sync()
244 if (!message) in hidpp_send_fap_command_sync()
246 message->report_id = REPORT_ID_HIDPP_LONG; in hidpp_send_fap_command_sync()
247 message->fap.feature_index = feat_index; in hidpp_send_fap_command_sync()
248 message->fap.funcindex_clientid = funcindex_clientid; in hidpp_send_fap_command_sync()
[all …]
/linux-4.4.14/net/nfc/nci/
Dhci.c67 struct nci_hcp_message message; member
238 struct nci_hcp_message *message; in nci_hci_send_cmd() local
260 message = (struct nci_hcp_message *)conn_info->rx_skb->data; in nci_hci_send_cmd()
262 NCI_HCP_MSG_GET_CMD(message->header)); in nci_hci_send_cmd()
418 struct nci_hcp_message *message; in nci_hci_msg_rx_work() local
424 message = (struct nci_hcp_message *)skb->data; in nci_hci_msg_rx_work()
425 type = NCI_HCP_MSG_GET_TYPE(message->header); in nci_hci_msg_rx_work()
426 instruction = NCI_HCP_MSG_GET_CMD(message->header); in nci_hci_msg_rx_work()
494 type = NCI_HCP_MSG_GET_TYPE(packet->message.header); in nci_hci_data_received_cb()
568 struct nci_hcp_message *message; in nci_hci_set_param() local
[all …]
/linux-4.4.14/drivers/char/ipmi/
DKconfig6 tristate 'IPMI top-level message handler'
9 This enables the central IPMI message handler, required for IPMI
24 When a panic occurs, this will cause the IPMI message handler to
26 registered with the message handler.
32 When a panic occurs, this will cause the IPMI message handler to
43 This provides an IOCTL interface to the IPMI message handler so
/linux-4.4.14/include/linux/
Dptrace.h143 static inline void ptrace_event(int event, unsigned long message) in ptrace_event() argument
146 current->ptrace_message = message; in ptrace_event()
174 unsigned long message = 0; in ptrace_event_pid() local
180 message = pid_nr_ns(pid, ns); in ptrace_event_pid()
183 ptrace_event(event, message); in ptrace_event_pid()
Dcompiler-gcc.h184 # define __compiletime_warning(message) __attribute__((warning(message))) argument
185 # define __compiletime_error(message) __attribute__((error(message))) argument
Doom.h83 struct mem_cgroup *memcg, const char *message);
Dcompiler.h443 # define __compiletime_warning(message) argument
446 # define __compiletime_error(message) argument
/linux-4.4.14/arch/parisc/kernel/
Dpdc_chassis.c173 int pdc_chassis_send_status(int message) in pdc_chassis_send_status() argument
180 DPRINTK(KERN_DEBUG "%s: pdc_chassis_send_status(%d)\n", __FILE__, message); in pdc_chassis_send_status()
184 switch(message) { in pdc_chassis_send_status()
215 switch (message) { in pdc_chassis_send_status()
/linux-4.4.14/Documentation/RCU/
Dstallwarn.txt34 giving an RCU CPU stall warning message. (This is a cpp
60 it will print a message similar to the following:
64 This message indicates that CPU 5 detected that it was causing a stall,
65 and that the stall was affecting RCU-sched. This message will normally be
72 message quickly enough, some other CPU will print a message similar to
77 This message indicates that CPU 2 detected that CPUs 3 and 5 were both
78 causing stalls, and that the stall was affecting RCU-bh. This message
87 printing, there will be a spurious stall-warning message:
98 Recent kernels will print a long form of the stall-warning message:
113 period (for example, if it was offline), then this part of the message
[all …]
/linux-4.4.14/Documentation/DocBook/
D.device-drivers.xml.cmd2message/fusion/mptbase.c drivers/message/fusion/mptbase.c drivers/message/fusion/mptscsih.c driver…
D.usb.xml.cmd2 …ux/usb/ch9.h include/linux/usb.h drivers/usb/core/urb.c drivers/usb/core/message.c drivers/usb/cor…
Dw1.xml.db16 API-enum-w1-netlink-message-types
Drapidio.xml.db17 API-rio-add-outb-message
19 API-rio-get-inb-message
/linux-4.4.14/drivers/uwb/
Duwbd.c218 if (evt->message < 0 || evt->message >= ARRAY_SIZE(uwbd_message_handlers)) { in uwbd_event_handle_message()
219 dev_err(&rc->uwb_dev.dev, "UWBD: invalid message type %d\n", evt->message); in uwbd_event_handle_message()
223 result = uwbd_message_handlers[evt->message].handler(evt); in uwbd_event_handle_message()
226 uwbd_message_handlers[evt->message].name, result); in uwbd_event_handle_message()
/linux-4.4.14/Documentation/i2c/
Di2c-protocol57 Normally message is interrupted immediately if there is [NA] from the
59 message is sent.
63 In a read message, master A/NA bit is skipped.
67 point. For example, setting I2C_M_NOSTART on the second partial message
70 If you set the I2C_M_NOSTART variable for the first partial message,
86 Force a stop condition (P) after the message. Some I2C related protocols
/linux-4.4.14/Documentation/
Drpmsg.txt58 with the payload of the inbound message).
64 - sends a message across to the remote processor on a given channel.
66 and its length (in bytes). The message will be sent on the specified
79 - sends a message across to the remote processor on a given channel,
83 The message will then be sent to the remote processor to which the
97 - sends a message across to the remote processor, using the src and dst
101 The message will then be sent to the remote processor to which the
114 - sends a message across to the remote processor on a given channel.
116 and its length (in bytes). The message will be sent on the specified
126 - sends a message across to the remote processor on a given channel,
[all …]
Dmailbox.txt25 The controller driver might know a message has been consumed
36 send a message through before returning) or non-blocking/async mode (submit
37 a message and a callback function to the API and return immediately).
59 } else { /* A new message from remote */
107 /* Send async message to remote */
114 /* Send message to remote in blocking mode */
Dcrc32.txt3 A CRC is a long-division remainder. You add the CRC to the message,
4 and the whole thing (message+CRC) is a multiple of the given
7 remainder computed on the message+CRC is 0. This latter approach
28 is sent last. And when appending a CRC word to a message, you should
55 Also, to add the CRC to a message, we need a 32-bit-long hole for it at
57 end of every message,
106 bulk of a message byte-at-a-time and adding bit-at-a-time processing
171 Normally, appending zero bits to a message which is already a multiple
175 appending it. This makes the remainder of the message+crc come out not
179 The same problem applies to zero bits prepended to the message, and a
Ddebugging-modules.txt10 In the past a debugging message which would fill people's logs was
11 emitted. This debugging message has been removed. The correct way
DIPMI.txt33 No matter what, you must pick 'IPMI top-level message handler' to use
36 The message handler does not provide any user-level interfaces.
96 system. It handles all messages, message timing, and responses. The
103 driver, each open file for this device ties in to the message handler
116 interface on top of the IPMI message handler.
208 will have no place to put the message.
210 Messages coming up from the message handler in kernelland will come in
217 /* The type of message as defined in the "Receive Types"
226 /* Call this when done with the message. It will presumably free
227 the message and do any other necessary cleanup. */
[all …]
Dmd-cluster.txt71 3.2.3 Ack: The resource, acquiring which means the message has been
89 Sender checks that it still needs to send a message. Messages received
91 this message inappropriate or redundant.
101 receiver processes the message
111 message)
Demail-clients.txt51 It's a good idea to send a patch to yourself, save the received message,
75 When composing the message, the cursor should be placed where the patch
77 to insert into the message.
126 As an added bonus you can customise the message creation toolbar menu
146 contains the patch from the message list pane, right click and select
296 Another problem is that Gmail will base64-encode any message that has a
Dinit.txt1 Explaining the dreaded "No init found." boot hang message
4 OK, so you've got this pretty unintuitive message (currently located
Dcoccinelle.txt54 file:line:column-column: message
85 For each semantic patch, a commit message is proposed. It gives a
136 about semantic patches displayed, and no commit message proposed.
174 file:line:column-column: message
/linux-4.4.14/drivers/mtd/devices/
Dsst25l.c218 struct spi_message message; in sst25l_read() local
222 spi_message_init(&message); in sst25l_read()
232 spi_message_add_tail(&transfer[0], &message); in sst25l_read()
236 spi_message_add_tail(&transfer[1], &message); in sst25l_read()
247 spi_sync(flash->spi, &message); in sst25l_read()
249 if (retlen && message.actual_length > sizeof(command)) in sst25l_read()
250 *retlen += message.actual_length - sizeof(command); in sst25l_read()
/linux-4.4.14/drivers/edac/
Dppc4xx_edac.c634 char message[PPC4XX_EDAC_MESSAGE_SIZE]; in ppc4xx_ecc_dump_status() local
636 ppc4xx_edac_generate_message(mci, status, message, sizeof(message)); in ppc4xx_ecc_dump_status()
650 message); in ppc4xx_ecc_dump_status()
724 char message[PPC4XX_EDAC_MESSAGE_SIZE]; in ppc4xx_edac_handle_ce() local
726 ppc4xx_edac_generate_message(mci, status, message, sizeof(message)); in ppc4xx_edac_handle_ce()
733 message, ""); in ppc4xx_edac_handle_ce()
755 char message[PPC4XX_EDAC_MESSAGE_SIZE]; in ppc4xx_edac_handle_ue() local
757 ppc4xx_edac_generate_message(mci, status, message, sizeof(message)); in ppc4xx_edac_handle_ue()
764 message, ""); in ppc4xx_edac_handle_ue()
Dsynopsys_edac.c138 char message[SYNPS_EDAC_MSG_SIZE]; member
213 snprintf(priv->message, SYNPS_EDAC_MSG_SIZE, in synps_edac_handle_error()
218 priv->message, ""); in synps_edac_handle_error()
223 snprintf(priv->message, SYNPS_EDAC_MSG_SIZE, in synps_edac_handle_error()
228 priv->message, ""); in synps_edac_handle_error()
/linux-4.4.14/drivers/gpio/
Dgpio-74x164.c37 struct spi_message message; in __gen_74x164_write_config() local
46 spi_message_init(&message); in __gen_74x164_write_config()
59 spi_message_add_tail(msg_buf + i, &message); in __gen_74x164_write_config()
62 ret = spi_sync(spi, &message); in __gen_74x164_write_config()
Dgpio-twl4030.c406 u8 message[5]; in gpio_twl4030_pulls() local
422 message[i] = bit_mask; in gpio_twl4030_pulls()
425 return twl_i2c_write(TWL4030_MODULE_GPIO, message, in gpio_twl4030_pulls()
431 u8 message[3]; in gpio_twl4030_debounce() local
436 message[0] = (debounce & 0xff) | (mmc_cd & 0x03); in gpio_twl4030_debounce()
438 message[1] = (debounce & 0xff); in gpio_twl4030_debounce()
440 message[2] = (debounce & 0x03); in gpio_twl4030_debounce()
442 return twl_i2c_write(TWL4030_MODULE_GPIO, message, in gpio_twl4030_debounce()
/linux-4.4.14/init/
Dinitramfs.c45 static __initdata char *message; variable
48 if (!message) in error()
49 message = x; in error()
427 if (message) in flush_buffer()
429 while ((written = write_buffer(buf, len)) < len && !message) { in flush_buffer()
465 message = NULL; in unpack_to_rootfs()
466 while (!message && len) { in unpack_to_rootfs()
490 if (!message) { in unpack_to_rootfs()
494 message = msg_buf; in unpack_to_rootfs()
508 return message; in unpack_to_rootfs()
/linux-4.4.14/drivers/char/tpm/
Dxen-tpmfront.c194 const char *message = NULL; in setup_ring() local
232 message = "writing ring-ref"; in setup_ring()
239 message = "writing event-channel"; in setup_ring()
245 message = "writing feature-protocol-v2"; in setup_ring()
263 if (message) in setup_ring()
264 xenbus_dev_error(dev, rv, "%s", message); in setup_ring()
/linux-4.4.14/drivers/input/touchscreen/
Datmel_mxt_ts.c302 static void mxt_dump_message(struct mxt_data *data, u8 *message) in mxt_dump_message() argument
305 data->T5_msg_size, message); in mxt_dump_message()
666 static void mxt_input_button(struct mxt_data *data, u8 *message) in mxt_input_button() argument
678 !(message[1] & BIT(i))); in mxt_input_button()
689 static void mxt_proc_t9_message(struct mxt_data *data, u8 *message) in mxt_proc_t9_message() argument
700 id = message[0] - data->T9_reportid_min; in mxt_proc_t9_message()
701 status = message[1]; in mxt_proc_t9_message()
702 x = (message[2] << 4) | ((message[4] >> 4) & 0xf); in mxt_proc_t9_message()
703 y = (message[3] << 4) | ((message[4] & 0xf)); in mxt_proc_t9_message()
711 area = message[5]; in mxt_proc_t9_message()
[all …]
/linux-4.4.14/Documentation/spi/
Dspi-sc18is60229 The maximum SPI message size supported by SC18IS602/603 is 200 bytes. Attempts
32 200 bytes per SPI message (128 bytes of data per message is recommended). This
Dspi-summary400 + hinting whether the next message is likely to go to this same
416 is reported using a callback provided with the message.
436 that no message is pending for that device.
530 that a message is coming in soon, so the subsystem requests the
541 The subsystem calls the driver to transfer a single message while
543 finished with this message, it must call
545 message. This may sleep.
564 master->transfer(struct spi_device *spi, struct spi_message *message)
578 the message queue has the upside of centralizing a lot of code and
579 providing pure process-context execution of methods. The message queue
[all …]
/linux-4.4.14/arch/powerpc/include/asm/
Dmpic_msgr.h78 static inline void mpic_msgr_write(struct mpic_msgr *msgr, u32 message) in mpic_msgr_write() argument
80 out_be32(msgr->base, message); in mpic_msgr_write()
Dsmp.h118 extern int smp_request_message_ipi(int virq, int message);
/linux-4.4.14/sound/usb/line6/
Ddriver.c48 struct message { struct
59 static int line6_send_raw_message_async_part(struct message *msg, argument
123 struct message *msg = (struct message *)urb->context; in line6_async_request_sent()
135 static int line6_send_raw_message_async_part(struct message *msg, in line6_send_raw_message_async_part()
179 struct message *msg; in line6_send_raw_message_async()
183 msg = kmalloc(sizeof(struct message), GFP_ATOMIC); in line6_send_raw_message_async()
634 int line6_suspend(struct usb_interface *interface, pm_message_t message) in line6_suspend() argument
Ddriver.h177 int line6_suspend(struct usb_interface *interface, pm_message_t message);
/linux-4.4.14/include/linux/spi/
Dspi.h507 struct spi_message *message);
509 struct spi_message *message);
519 struct spi_message *message);
831 extern int spi_async(struct spi_device *spi, struct spi_message *message);
833 struct spi_message *message);
842 extern int spi_sync(struct spi_device *spi, struct spi_message *message);
843 extern int spi_sync_locked(struct spi_device *spi, struct spi_message *message);
/linux-4.4.14/net/nfc/hci/
Dhcp.c87 packet->message.header = HCP_HEADER(type, instruction); in nfc_hci_hcp_message_tx()
89 memcpy(packet->message.data, ptr, in nfc_hci_hcp_message_tx()
94 memcpy(&packet->message, ptr, data_link_len); in nfc_hci_hcp_message_tx()
Dcore.c143 struct hcp_message *message; in nfc_hci_msg_rx_work() local
151 message = (struct hcp_message *)skb->data; in nfc_hci_msg_rx_work()
152 type = HCP_MSG_GET_TYPE(message->header); in nfc_hci_msg_rx_work()
153 instruction = HCP_MSG_GET_CMD(message->header); in nfc_hci_msg_rx_work()
897 type = HCP_MSG_GET_TYPE(packet->message.header); in nfc_hci_recv_from_llc()
900 instruction = HCP_MSG_GET_CMD(packet->message.header); in nfc_hci_recv_from_llc()
Dhci.h35 struct hcp_message message; member
/linux-4.4.14/drivers/staging/unisys/Documentation/ABI/
Dsysfs-platform-visorchipset78 situation by sending a message to guests using these VFs, and
80 another message is sent to the guests to re-enable the VFs.
83 the recovery message.
97 situation by sending a message to guests using these VFs, and
99 another message is sent to the guests to re-enable the VFs.
102 the initial recovery message.
/linux-4.4.14/tools/testing/selftests/ipc/
Dmsgque.c82 struct msg1 message; in check_and_destroy_queue() local
86 ret = msgrcv(msgque->msq_id, &message.mtype, MAX_MSG_SIZE, in check_and_destroy_queue()
101 if (message.mtype != msgque->messages[cnt].mtype) { in check_and_destroy_queue()
106 if (memcmp(message.mtext, msgque->messages[cnt].mtext, ret)) { in check_and_destroy_queue()
/linux-4.4.14/drivers/staging/panel/
DKconfig256 bool "Change LCD initialization message ?"
259 This allows you to replace the boot message indicating the kernel version
260 and the driver version with a custom message. This is useful on appliances
261 where a simple 'Starting system' message can be enough to stop a customer
264 If you say 'Y' here, you'll be able to choose a message yourself. Otherwise,
265 say 'N' and keep the default message with the version.
269 string "New initialization message"
272 This allows you to replace the boot message indicating the kernel version
273 and the driver version with a custom message. This is useful on appliances
274 where a simple 'Starting system' message can be enough to stop a customer
[all …]
/linux-4.4.14/drivers/scsi/
D53c700.scr26 ABSOLUTE MessageCount = 0 ; Number of bytes in message
27 ABSOLUTE MessageLocation = 0 ; Addr of message
171 ; Send a message. Message count should be correctly patched
184 ; Receive a message. Need to identify the message to
191 ; of the message and want to process it further
228 ; Come here from the message processor to ignore the message
235 ; Come here to send a reply to a message
DFlashPoint.c810 static void FPT_SendMsg(u32 port, unsigned char message);
2238 unsigned char message; in FPT_sfm() local
2248 message = RD_HARPOON(port + hp_scsidata_0); in FPT_sfm()
2253 message = 0x00; /* force message byte = 0 if Time Out on Req */ in FPT_sfm()
2264 message = 0x00; in FPT_sfm()
2273 return message; in FPT_sfm()
2278 return message; in FPT_sfm()
2293 return message; in FPT_sfm()
2607 unsigned char our_target, message, lun = 0, tag, msgRetryCount; in FPT_sres() local
2682 message = FPT_sfm(port, pCurrCard->currentSCCB); in FPT_sres()
[all …]
Dqlogicfas408.c265 unsigned int message; /* scsi returned message */ in ql_pcmd() local
363 message = inb(qbase + 2); in ql_pcmd()
393 return (result << 16) | (message << 8) | (status & STATUS_MASK); in ql_pcmd()
Desp_scsi.c940 static unsigned int compose_result(unsigned int status, unsigned int message, in compose_result() argument
943 return (status | (message << 8) | (driver_code << 16)); in compose_result()
1686 ent->message = msg0; in esp_msgin_process()
1845 ent->message = esp_read8(ESP_FDATA); in esp_process_event()
1849 ent->message = 0xff; in esp_process_event()
1854 if (ent->message != COMMAND_COMPLETE) { in esp_process_event()
1857 ent->message); in esp_process_event()
1870 if (ent->message == COMMAND_COMPLETE || in esp_process_event()
1871 ent->message == DISCONNECT) in esp_process_event()
1874 if (ent->message == COMMAND_COMPLETE) { in esp_process_event()
[all …]
D53c700_d.h_shipped29 ABSOLUTE MessageCount = 0 ; Number of bytes in message
30 ABSOLUTE MessageLocation = 0 ; Addr of message
219 ; Send a message. Message count should be correctly patched
247 ; Receive a message. Need to identify the message to
257 ; of the message and want to process it further
378 ; Come here from the message processor to ignore the message
391 ; Come here to send a reply to a message
/linux-4.4.14/Documentation/device-mapper/
Dstatistics.txt19 the @stats_print message to the appropriate DM device via dmsetup.
87 @stats_list message, but it doesn't use it for anything else.
96 @stats_list message, but it doesn't use this value for anything.
197 string back in the output of @stats_list message, but it
206 dmsetup message vol 0 @stats_create - /100
211 dmsetup message vol 0 @stats_set_aux 0 foo\\ bar\\ baz
215 dmsetup message vol 0 @stats_list
219 dmsetup message vol 0 @stats_print 0
223 dmsetup message vol 0 @stats_delete 0
Dlog-writes.txt74 You can use a dmsetup message to set an arbitrary mark in a log.
81 dmsetup message log 0 mark mkfs
105 dmsetup message log 0 mark mkfs
109 dmsetup message log 0 mark fsync
125 dmsetup message log 0 mark mkfs
Dswitch.txt7 dynamically by sending the target a message.
131 dmsetup message switch 0 set_region_mappings 0:0 :1 :2 :0 :1 :2 :1
134 dmsetup message switch 0 set_region_mappings 1000:1 :2 R2,10
136 dmsetup message switch 0 set_region_mappings 1000:1 :2 :1 :2 :1 :2 :1 :2 \
Dthin-provisioning.txt153 To create a new thinly- provisioned volume you must send a message to an
156 dmsetup message /dev/mapper/pool 0 "create_thin 0"
160 identifier is already in use, the message will fail with -EEXIST.
175 Snapshots are created with another message to the pool.
182 dmsetup message /dev/mapper/pool 0 "create_snap 1 0"
223 dmsetup message /dev/mapper/pool 0 "create_thin 0"
352 compare-and-swap message.
358 this message was executed. Use the pool's status command to
Dcache.txt94 "invalidate_cblocks" message, the cache device can be transitioned to
120 For the time being, a message "migration_threshold <#sectors>"
275 The message format is:
280 dmsetup message my_cache 0 sequential_threshold 1024
285 message, which takes an arbitrary number of cblock ranges. Each cblock
288 value, in the future a variant message that takes cblock ranges
296 dmsetup message my_cache 0 invalidate_cblocks 2345 3456-4567 5678-6789
Dera.txt33 incremented. After sending this message, you should check the
70 - Send a checkpoint message to the era target
/linux-4.4.14/drivers/staging/rtl8723au/core/
Drtw_security.c1354 static u8 message[MAX_MSG_SIZE]; in aes_decipher() local
1453 memcpy(message, pframe, (hdrlen + plen + 8)); /* 8 is for ext iv len */ in aes_decipher()
1462 construct_mic_iv(mic_iv, qc_exists, a4_exists, message, in aes_decipher()
1465 construct_mic_header1(mic_header1, hdrlen, message); in aes_decipher()
1466 construct_mic_header2(mic_header2, message, a4_exists, qc_exists); in aes_decipher()
1482 bitwise_xor(aes_out, &message[payload_index], chain_buffer); in aes_decipher()
1493 padded_buffer[j] = message[payload_index++]; in aes_decipher()
1503 message[payload_index + j] = mic[j]; in aes_decipher()
1508 message, pn_vector, i + 1); in aes_decipher()
1510 bitwise_xor(aes_out, &message[payload_index], chain_buffer); in aes_decipher()
[all …]
/linux-4.4.14/drivers/isdn/sc/
Dmessage.h206 struct message { struct
226 typedef struct message ReqMessage; /* Request message */ argument
227 typedef struct message RspMessage; /* Response message */
DMakefile10 ioctl.o interrupt.o message.o timer.o
/linux-4.4.14/net/batman-adv/
Dtranslation-table.h33 const char *message, bool roaming);
38 s32 match_vid, const char *message);
Dtranslation-table.c68 unsigned short vid, const char *message,
504 const char *message) in batadv_tt_global_free() argument
509 BATADV_PRINT_VID(tt_global->common.vid), message); in batadv_tt_global_free()
1019 u16 flags, const char *message) in batadv_tt_local_set_pending() argument
1032 BATADV_PRINT_VID(tt_local_entry->common.vid), message); in batadv_tt_local_set_pending()
1046 unsigned short vid, const char *message, in batadv_tt_local_remove() argument
1073 message); in batadv_tt_local_remove()
1722 const char *message) in batadv_tt_global_del_orig_node() argument
1738 BATADV_PRINT_VID(vid), message); in batadv_tt_global_del_orig_node()
1754 const char *message) in batadv_tt_global_del_roaming() argument
[all …]
/linux-4.4.14/drivers/gpu/drm/nouveau/include/nvkm/subdev/
Dpmu.h21 u32 message; member
27 u32 message, u32 data0, u32 data1);
/linux-4.4.14/drivers/video/backlight/
Dili9320.c51 return spi_sync(spi->dev, &spi->message); in ili9320_write_spi()
193 spi_message_init(&spi->message); in ili9320_setup_spi()
194 spi_message_add_tail(&spi->xfer[0], &spi->message); in ili9320_setup_spi()
195 spi_message_add_tail(&spi->xfer[1], &spi->message); in ili9320_setup_spi()
Dili9320.h31 struct spi_message message; member
/linux-4.4.14/drivers/staging/rtl8188eu/core/
Drtw_security.c1261 static u8 message[MAX_MSG_SIZE]; in aes_decipher() local
1352 memcpy(message, pframe, (hdrlen + plen+8)); /* 8 is for ext iv len */ in aes_decipher()
1360 construct_mic_iv(mic_iv, qc_exists, a4_exists, message, plen-8, pn_vector); in aes_decipher()
1362 construct_mic_header1(mic_header1, hdrlen, message); in aes_decipher()
1363 construct_mic_header2(mic_header2, message, a4_exists, qc_exists); in aes_decipher()
1379 bitwise_xor(aes_out, &message[payload_index], chain_buffer); in aes_decipher()
1390 padded_buffer[j] = message[payload_index++]; in aes_decipher()
1400 message[payload_index+j] = mic[j]; in aes_decipher()
1404 construct_ctr_preload(ctr_preload, a4_exists, qc_exists, message, pn_vector, i+1); in aes_decipher()
1406 bitwise_xor(aes_out, &message[payload_index], chain_buffer); in aes_decipher()
[all …]
/linux-4.4.14/drivers/memstick/host/
Dr592.c223 message("FIFO still not ready, giving up"); in r592_test_fifo_empty()
303 message("problem in dma_map_sg"); in r592_transfer_fifo_dma()
312 message("DMA timeout"); in r592_transfer_fifo_dma()
464 message("BUG: tpc execution without request!"); in r592_execute_tpc()
474 message("IO: hardware doesn't support TPCs longer that 512"); in r592_execute_tpc()
523 message("card didn't respond"); in r592_execute_tpc()
657 message("IRQ: card %s", card_was_added ? "added" : "removed"); in r592_irq()
668 message("IRQ: DMA error"); in r592_irq()
802 message("driver successfully loaded"); in r592_probe()
Dr592.h160 #define message(format, ...) \ macro
/linux-4.4.14/tools/testing/selftests/powerpc/switch_endian/
Dswitch_endian_test.S5 message: label
75 ld r4, message@got(%r2)
/linux-4.4.14/drivers/net/usb/
Dhuawei_cdc_ncm.c127 pm_message_t message) in huawei_cdc_ncm_suspend() argument
139 ret = usbnet_suspend(intf, message); in huawei_cdc_ncm_suspend()
146 ret = drvstate->subdriver->suspend(intf, message); in huawei_cdc_ncm_suspend()
Dcdc_mbim.c504 static int cdc_mbim_suspend(struct usb_interface *intf, pm_message_t message) in cdc_mbim_suspend() argument
519 ret = usbnet_suspend(intf, message); in cdc_mbim_suspend()
524 ret = info->subdriver->suspend(intf, message); in cdc_mbim_suspend()
/linux-4.4.14/drivers/s390/char/
Dsclp_async.c27 static int sclp_async_send_wait(char *message);
120 static int sclp_async_send_wait(char *message) in sclp_async_send_wait() argument
135 strncpy(sccb->evbuf.data, message, sizeof(sccb->evbuf.data)); in sclp_async_send_wait()
Dsclp_con.c161 sclp_console_write(struct console *console, const char *message, in sclp_console_write() argument
196 message, count); in sclp_console_write()
207 message += written; in sclp_console_write()
/linux-4.4.14/crypto/asymmetric_keys/
DKconfig41 tristate "PKCS#7 message parser"
55 PKCS#7 message - provided the message is signed by a trusted key. If
/linux-4.4.14/Documentation/filesystems/
Dquota.txt24 quota subsystem traditionally printed a message to the controlling terminal of
26 when user is using a graphical desktop he usually cannot see the message.
38 Currently, the interface supports only one message type QUOTA_NL_C_WARNING.
40 events. Each message has six attributes. These are (type of the argument is
Dcoda.txt94 3. The message layer
227 must allow Venus to manage message traffic. In particular Venus must
229 arrival of a new message. The notification must be through a mechanism
260 requirements of the message exchange mechanism.
280 upcall is dispatched to Venus by creating a message structure. The
281 structure contains the identification of P, the message sequence
285 field is used in the message to precisely record the status of the
286 message. Additional platform dependent structures involve pointers to
287 determine the position of the message on queues and pointers to
288 synchronization objects. In the upcall routine the message structure
[all …]
/linux-4.4.14/arch/x86/crypto/
Dsha512-ssse3-asm.S90 # Input message (arg1)
129 add WK_2(idx), T1 # W[t] + K[t] from message scheduler
156 # Compute message schedule QWORDS t and t+1
159 # K[t-1]+W[t-1] which were previously stored at WK_2 by the message
167 # The computation of the message schedule and the rounds are tightly
170 # by one tab. Vectored instructions (for the message scheduler) are indented
273 # Purpose: Updates the SHA512 digest stored at D with the message stored in M.
274 # The size of the message pointed to by M must be an integer multiple of SHA512
275 # message blocks.
276 # L is the message length in SHA512 blocks.
[all …]
Dsha512-avx-asm.S93 # Input message (arg1)
136 add WK_2(idx), T1 # W[t] + K[t] from message scheduler
162 # Compute message schedule QWORDS t and t+1
165 # K[t-1]+W[t-1] which were previously stored at WK_2 by the message
173 # The computation of the message schedule and the rounds are tightly
275 # Purpose: Updates the SHA512 digest stored at D with the message stored in M.
276 # The size of the message pointed to by M must be an integer multiple of SHA512
277 # message blocks.
278 # L is the message length in SHA512 blocks
351 # Advance to next message block
/linux-4.4.14/drivers/staging/rtl8712/
Drtl871x_security.c1210 static u8 message[MAX_MSG_SIZE]; in aes_decipher() local
1288 memcpy((void *)message, pframe, (hdrlen + plen + 8)); in aes_decipher()
1295 construct_mic_iv(mic_iv, qc_exists, a4_exists, message, plen - 8, in aes_decipher()
1297 construct_mic_header1(mic_header1, hdrlen, message); in aes_decipher()
1298 construct_mic_header2(mic_header2, message, a4_exists, qc_exists); in aes_decipher()
1310 bitwise_xor(aes_out, &message[payload_index], chain_buffer); in aes_decipher()
1319 padded_buffer[j] = message[payload_index++]; in aes_decipher()
1327 message[payload_index + j] = mic[j]; in aes_decipher()
1331 message, pn_vector, i + 1); in aes_decipher()
1333 bitwise_xor(aes_out, &message[payload_index], chain_buffer); in aes_decipher()
[all …]
/linux-4.4.14/arch/alpha/kernel/
Derr_marvel.c532 char message[80]; in marvel_print_pox_spl_cmplt() local
564 sprintf(message, "Normal completion"); in marvel_print_pox_spl_cmplt()
567 sprintf(message, "Bridge - Master Abort"); in marvel_print_pox_spl_cmplt()
570 sprintf(message, "Bridge - Target Abort"); in marvel_print_pox_spl_cmplt()
573 sprintf(message, "Bridge - Uncorrectable Write Data Error"); in marvel_print_pox_spl_cmplt()
576 sprintf(message, "Byte Count Out of Range"); in marvel_print_pox_spl_cmplt()
579 sprintf(message, "Uncorrectable Split Write Data Error"); in marvel_print_pox_spl_cmplt()
582 sprintf(message, "%08llx\n", in marvel_print_pox_spl_cmplt()
586 printk("%s Message: %s\n", err_print_prefix, message); in marvel_print_pox_spl_cmplt()
/linux-4.4.14/drivers/staging/mt29f_spinand/
Dmt29f_spinand.c75 struct spi_message message; in spinand_cmd() local
79 spi_message_init(&message); in spinand_cmd()
84 spi_message_add_tail(&x[0], &message); in spinand_cmd()
89 spi_message_add_tail(&x[1], &message); in spinand_cmd()
95 spi_message_add_tail(&x[2], &message); in spinand_cmd()
101 spi_message_add_tail(&x[3], &message); in spinand_cmd()
107 spi_message_add_tail(&x[3], &message); in spinand_cmd()
110 return spi_sync(spi, &message); in spinand_cmd()
/linux-4.4.14/Documentation/ABI/testing/
Ddev-kmsg28 first message in the buffer; there is no kernel-internal
60 prefix including priority and facility, the 64 bit message
71 all non-printable characters and '\' itself in the log message
75 key/value pairs to the log message, which provide the machine
76 readable context of the message, for reliable processing in
Dsysfs-bus-iio-trigger-sysfs31 in the system, an invalid argument message will be returned.
42 argument message will be returned to the user.
/linux-4.4.14/Documentation/devicetree/bindings/soc/qcom/
Dqcom,smem.txt20 Definition: handle to RPM message memory resource
30 at 0xfa00000 and the RPM message ram at 0xfc428000:
/linux-4.4.14/drivers/scsi/aic7xxx/
Daic7xxx.seq246 * Our first message must be one of IDENTIFY, ABORT, or
266 * If this is a tagged request, the tagged message must
268 * tag message by seeing if it is >= MSG_SIMPLE_Q_TAG and
321 * Pushed message loop to allow the kernel to
322 * run it's own target mode message state engine.
334 * reselected, but haven't seen an IDENTIFY message from the target yet.
412 * message byte we receive so it can be checked prior to
462 * Start out with a simple identify message.
648 * should go into the message out phase since we have ATN
856 * data pointers message.
[all …]
Daic79xx.seq569 * If we want to send a message to the device, ensure
574 * be cleared when the message is acted on.
839 * should go into the message out phase since we have ATN
951 * indentify message sequence and send it to the target. The host may
954 * it to handle the message phase completely on its own. If the bit
956 * thereby allowing it to send a message on the next selection regardless
959 * If MSG_OUT is == HOST_MSG, also interrupt the host and take a message.
963 * BDR message in response to a bad reselection would leave us pointed to
966 * Otherwise, treat MSG_OUT as a 1 byte message to send (abort, abort tag,
985 * Send a tag message if TAG_ENB is set in the SCB control block.
[all …]
/linux-4.4.14/drivers/net/xen-netback/
Dxenbus.c257 const char *message; in netback_probe() local
284 message = "writing feature-sg"; in netback_probe()
291 message = "writing feature-gso-tcpv4"; in netback_probe()
298 message = "writing feature-gso-tcpv6"; in netback_probe()
307 message = "writing feature-ipv6-csum-offload"; in netback_probe()
315 message = "writing feature-rx-copy"; in netback_probe()
326 message = "writing feature-rx-flip"; in netback_probe()
334 message = "writing feature-multicast-control"; in netback_probe()
386 xenbus_dev_fatal(dev, err, "%s", message); in netback_probe()
/linux-4.4.14/Documentation/networking/caif/
DREADME96 - last_tx_msg contains channel setup message and last_rx_msg is empty ->
100 - last_tx_msg contains enumeration message and last_rx_msg is empty ->
101 The host is not able to send the message from UART, the tty has not been
108 You will probably see the enumeration message in last_tx_message
/linux-4.4.14/net/sunrpc/auth_gss/
Dgss_mech_switch.c405 struct xdr_buf *message, in gss_get_mic() argument
410 message, in gss_get_mic()
418 struct xdr_buf *message, in gss_verify_mic() argument
423 message, in gss_verify_mic()
/linux-4.4.14/fs/ecryptfs/
Dkeystore.c163 char *message; in write_tag_64_packet() local
177 message = *packet; in write_tag_64_packet()
178 if (!message) { in write_tag_64_packet()
183 message[i++] = ECRYPTFS_TAG_64_PACKET_TYPE; in write_tag_64_packet()
184 rc = ecryptfs_write_packet_length(&message[i], ECRYPTFS_SIG_SIZE_HEX, in write_tag_64_packet()
192 memcpy(&message[i], signature, ECRYPTFS_SIG_SIZE_HEX); in write_tag_64_packet()
194 rc = ecryptfs_write_packet_length(&message[i], in write_tag_64_packet()
203 memcpy(&message[i], session_key->encrypted_key, in write_tag_64_packet()
307 char *message; in write_tag_66_packet() local
320 message = *packet; in write_tag_66_packet()
[all …]
/linux-4.4.14/drivers/acpi/
Dbus.c825 char *message = NULL; in acpi_bus_init_irq() local
835 message = "PIC"; in acpi_bus_init_irq()
838 message = "IOAPIC"; in acpi_bus_init_irq()
841 message = "IOSAPIC"; in acpi_bus_init_irq()
844 message = "GIC"; in acpi_bus_init_irq()
847 message = "platform specific model"; in acpi_bus_init_irq()
854 printk(KERN_INFO PREFIX "Using %s for interrupt routing\n", message); in acpi_bus_init_irq()
/linux-4.4.14/net/decnet/
DTODO34 o Add session control message flow control
36 o Add NSP message flow control
/linux-4.4.14/drivers/net/
Dxen-netfront.c1664 const char *message; in write_queue_xenstore_keys() local
1674 message = "out of memory while writing ring references"; in write_queue_xenstore_keys()
1687 message = "writing tx-ring-ref"; in write_queue_xenstore_keys()
1694 message = "writing rx-ring-ref"; in write_queue_xenstore_keys()
1706 message = "writing event-channel"; in write_queue_xenstore_keys()
1714 message = "writing event-channel-tx"; in write_queue_xenstore_keys()
1721 message = "writing event-channel-rx"; in write_queue_xenstore_keys()
1733 xenbus_dev_fatal(dev, err, "%s", message); in write_queue_xenstore_keys()
1806 const char *message; in talk_to_netback() local
1878 message = "writing multi-queue-num-queues"; in talk_to_netback()
[all …]
/linux-4.4.14/tools/thermal/tmon/
DREADME44 -h, --help show this help message
47 -g, --debug debug message in syslog
/linux-4.4.14/arch/m68k/mac/
Diop.c381 iop_writeb(iop, offset, msg->message[i]); in iop_do_send()
446 msg->message[i] = iop_readb(iop, offset); in iop_handle_recv()
461 printk(" %02X", (uint) msg->message[i]); in iop_handle_recv()
495 memcpy(msg->message, msg_data, msg_len); in iop_send_message()
/linux-4.4.14/arch/sh/include/asm/
Dsmp-ops.h9 void (*send_ipi)(unsigned int cpu, unsigned int message);
/linux-4.4.14/net/xfrm/
DKconfig75 Add a PF_KEY MIGRATE message to PF_KEYv2 socket family.
76 The PF_KEY MIGRATE message is used to dynamically update
/linux-4.4.14/drivers/soc/qcom/
Dsmd-rpm.c82 u8 message[0]; member
180 memcpy_fromio(msgbuf, msg->message, len); in qcom_smd_rpm_callback()
/linux-4.4.14/drivers/macintosh/
Dadb-iop.c104 struct adb_iopmsg *amsg = (struct adb_iopmsg *) msg->message; in adb_iop_listen()
148 memcpy(msg->reply, msg->message, IOP_MSG_LEN); in adb_iop_listen()
/linux-4.4.14/drivers/usb/core/
DMakefile5 usbcore-y := usb.o hub.o hcd.o urb.o message.o driver.o
/linux-4.4.14/drivers/staging/nvec/
DTODO7 message in a variable (and return the error code).
/linux-4.4.14/drivers/firmware/
Draspberrypi.c46 u32 message = MBOX_MSG(chan, data); in rpi_firmware_transaction() local
53 ret = mbox_send_message(fw->chan, &message); in rpi_firmware_transaction()
/linux-4.4.14/arch/powerpc/boot/dts/fsl/
Dqoriq-rmu-0.dtsi42 message-unit@0 {
49 message-unit@100 {
Dpq3-rmu-0.dtsi42 message-unit@0 {
49 message-unit@100 {
Dp1020rdb-pc_camp_core0.dts7 * eth1, eth2, sdhc, crypto, global-util, message, pci0, pci1, msi.
/linux-4.4.14/
DKbuild42 # We use internal kbuild rules to avoid the "is up to date" message from make
77 # We use internal kbuild rules to avoid the "is up to date" message from make
/linux-4.4.14/net/decnet/netfilter/
DKconfig10 tristate "Routing message grabulator (for userland routing daemon)"
/linux-4.4.14/sound/pci/asihpi/
Dhpi6205.h75 struct hpi_message message; member
Dhpicmn.h24 typedef int adapter_int_func(struct hpi_adapter_obj *pao, u32 message);
/linux-4.4.14/drivers/staging/dgnc/
DTODO4 own error message. Adding an extra one is useless.
/linux-4.4.14/fs/gfs2/
Drecovery.c433 unsigned int message) in gfs2_recovery_done() argument
441 ls->ls_recover_jid_status = message; in gfs2_recovery_done()
444 message == LM_RD_SUCCESS ? "Done" : "Failed"); in gfs2_recovery_done()
448 sdp->sd_lockstruct.ls_ops->lm_recovery_result(sdp, jid, message); in gfs2_recovery_done()
/linux-4.4.14/Documentation/scsi/
Dhptiop.txt121 Non-queued requests (reset/flush etc) can be sent via inbound message
122 register 0. An outbound message with the same value indicates the completion
123 of an inbound message.
162 with the same value indicates the completion of message.
Darcmsr_spec.txt6 ** 1. Message 0 --> InitThread message and return code
19 ** offset 0xa00 : for inbound message code message_rwbuffer
21 ** offset 0xa00 : for outbound message code message_rwbuffer
65 ** 9. Message0 message code :
68 ** ->offset 0xa00 :for outbound message code message_rwbuffer
82 ** ->offset 0xa00 :for inbound message code message_rwbuffer
94 ** ->offset 0xa00 : for inbound message code message_rwbuffer
DChangeLog.sym53c8xx50 - Increase SCSI message size up to 12 bytes, given that 8
51 bytes was not enough for the PPR message (fix).
293 from a device that has received a BUS DEVICE RESET message from
298 message to a logical UNIT (for test purpose).
302 - Add support for task abort and bus device reset SCSI message
305 - Send an ABORT message (if untagged) or ABORT TAG message (if tagged)
311 DEVICE RESET message to a target (for test purpose).
319 - Handling of the IGNORE WIDE RESIDUE message.
322 present and IGNORE WIDE RESIDUE message on the BUS at the same time).
326 - Handling of the MODIFY DATA POINTER message.
[all …]
/linux-4.4.14/include/uapi/sound/
Dfirewire.h46 __u32 message; /* Digi00x-specific message */ member
/linux-4.4.14/drivers/staging/unisys/visorhba/
DKconfig10 devices exposed on the s-Par visorbus. When a message is sent
/linux-4.4.14/Documentation/sysctl/
Dfs.txt245 a pipe handler or fully qualifid path, a message will be emitted
276 3. /proc/sys/fs/mqueue - POSIX message queues filesystem
280 creation of a user space library that implements the POSIX message queues
288 maximum number of message queues allowed on the system.
296 maximum message size value (it is every message queue's attribute set during
304 the default message size value if attr parameter of mq_open(2) is NULL. If it
/linux-4.4.14/Documentation/PCI/
Dpcieaer-howto.txt69 When a PCI-E AER error is captured, an error message will be outputted to
81 the error message to root port. Pls. refer to pci express specs for
111 error message to the PCIe root port above it when the device captures
112 an error. The Root Port, upon receiving an error reporting message,
113 internally processes and logs the error message in its PCI Express
177 If an error message indicates a non-fatal error, performing link reset
189 If an error message indicates a fatal error, kernel will broadcast
/linux-4.4.14/arch/x86/entry/vsyscall/
Dvsyscall_64.c70 const char *message) in warn_bad_vsyscall() argument
77 message, regs->ip, regs->cs, in warn_bad_vsyscall()
/linux-4.4.14/drivers/staging/unisys/visornic/
DKconfig10 devices exposed on the s-Par visorbus. When a message is sent
/linux-4.4.14/drivers/hsi/clients/
Dcmt_speech.c144 static void cs_notify(u32 message, struct list_head *head) in cs_notify() argument
163 entry->msg = message; in cs_notify()
188 static void cs_notify_control(u32 message) in cs_notify_control() argument
190 cs_notify(message, &cs_char_data.chardev_queue); in cs_notify_control()
193 static void cs_notify_data(u32 message, int maxlength) in cs_notify_data() argument
195 cs_notify(message, &cs_char_data.dataind_queue); in cs_notify_data()
539 static int cs_hsi_write_on_control(struct cs_hsi_iface *hi, u32 message) in cs_hsi_write_on_control() argument
559 cs_set_cmd(msg, message); in cs_hsi_write_on_control()
563 "Sending control message %08X\n", message); in cs_hsi_write_on_control()
/linux-4.4.14/drivers/isdn/hardware/eicon/
DMakefile17 divacapi-y := capimain.o capifunc.o message.o capidtmf.o
/linux-4.4.14/drivers/usb/serial/
Dusb-wwan.h23 extern int usb_wwan_suspend(struct usb_serial *serial, pm_message_t message);
/linux-4.4.14/net/rds/
DMakefile2 rds-y := af_rds.o bind.o cong.o connection.o info.o message.o \
/linux-4.4.14/tools/testing/selftests/rcutorture/bin/
Dparse-torture.sh99 …echo $title no success message, `grep --binary-files=text 'ver:' $file | wc -l` successful version…
/linux-4.4.14/drivers/mtd/nand/
Dr852.h160 #define message(format, ...) \ macro
Dr852.c79 message("Non dma capable device detected, dma disabled"); in r852_dma_test()
82 message("disabling dma on user request"); in r852_dma_test()
614 message("card removed"); in r852_update_media_status()
623 message("detected %s %s card in slot", in r852_update_media_status()
656 message("can't create media type sysfs attribute"); in r852_register_nand_device()
/linux-4.4.14/Documentation/devicetree/bindings/crypto/
Dfsl-sec2.txt23 bit 3 = set if SEC has the message digest EU (MDEU/MDEU-A)
29 bit 11 = set if SEC has the message digest EU extended alg set (MDEU-B)
/linux-4.4.14/Documentation/devicetree/bindings/powerpc/4xx/
Dhsta.txt8 PCI message signalled interrupts.
/linux-4.4.14/include/linux/usb/
Dserial.h250 int (*suspend)(struct usb_serial *serial, pm_message_t message);
304 extern int usb_serial_suspend(struct usb_interface *intf, pm_message_t message);
/linux-4.4.14/drivers/s390/block/
Dxpram.c395 static void xpram_resume_error(const char *message) in xpram_resume_error() argument
397 pr_err("Resuming the system failed: %s\n", message); in xpram_resume_error()
/linux-4.4.14/drivers/isdn/hisax/
Damd7930_fn.c172 u_char message = i430States[index]; in Amd7930_new_ph() local
176 cs->dc.amd7930.ph_state, cs->dc.amd7930.old_state, message & 0x0f, index); in Amd7930_new_ph()
181 if ((message & 0xf0) && (cs->tx_skb)) { in Amd7930_new_ph()
186 switch (message & 0x0f) { in Amd7930_new_ph()
/linux-4.4.14/Documentation/dmaengine/
Ddmatest.txt36 Once started a message like "dmatest: Started 1 threads using dma0chan0" is
82 The message format is unified across the different types of errors. A number in
/linux-4.4.14/drivers/regulator/
Dtwl-regulator.c305 unsigned message; in twl4030reg_set_mode() local
311 message = MSG_SINGULAR(DEV_GRP_P1, info->id, RES_STATE_ACTIVE); in twl4030reg_set_mode()
314 message = MSG_SINGULAR(DEV_GRP_P1, info->id, RES_STATE_SLEEP); in twl4030reg_set_mode()
328 message >> 8, TWL4030_PM_MASTER_PB_WORD_MSB); in twl4030reg_set_mode()
333 message & 0xff, TWL4030_PM_MASTER_PB_WORD_LSB); in twl4030reg_set_mode()
/linux-4.4.14/include/uapi/linux/
Ddm-ioctl.h213 char message[0]; member
/linux-4.4.14/arch/m68k/include/asm/
Dmac_iop.h144 __u8 message[IOP_MSG_LEN]; /* the message being sent/received */ member
/linux-4.4.14/drivers/usb/misc/
Didmouse.c98 static int idmouse_suspend(struct usb_interface *intf, pm_message_t message);
208 static int idmouse_suspend(struct usb_interface *intf, pm_message_t message) in idmouse_suspend() argument
/linux-4.4.14/Documentation/watchdog/
Dhpwdt.txt47 confused" message in the logs or if the system gets into a hung state, then
59 message that details the reason for the NMI (as determined by the HP BIOS).
/linux-4.4.14/drivers/gpu/drm/exynos/
Dexynos_drm_drv.c482 pm_message_t message; in exynos_drm_sys_suspend() local
487 message.event = PM_EVENT_SUSPEND; in exynos_drm_sys_suspend()
488 return exynos_drm_suspend(drm_dev, message); in exynos_drm_sys_suspend()
/linux-4.4.14/Documentation/s390/
Dmonreader.txt175 EOVERFLOW: message limit reached, the data read since the last successful
188 message with an IPUSER SEVER code will be printed into syslog. The IPUSER SEVER
194 will account for the message limit, i.e. opening the device without reading
195 from it will provoke the "message limit reached" error (EOVERFLOW error code)
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/
Dusb.h166 int rtl_usb_suspend(struct usb_interface *pusb_intf, pm_message_t message);
/linux-4.4.14/drivers/staging/fsl-mc/
DTODO10 interrupts, and thus need message interrupt support by the bus

1234