Searched defs:abort_code (Results 1 - 7 of 7) sorted by relevance

/net/rxrpc/
H A Dar-recvmsg.c55 u32 abort_code; local
264 ret = put_cmsg(msg, SOL_RXRPC, RXRPC_NEW_CALL, 0, &abort_code);
285 ret = put_cmsg(msg, SOL_RXRPC, RXRPC_ACK, 0, &abort_code);
288 ret = put_cmsg(msg, SOL_RXRPC, RXRPC_BUSY, 0, &abort_code);
291 abort_code = call->abort_code;
292 ret = put_cmsg(msg, SOL_RXRPC, RXRPC_ABORT, 4, &abort_code);
296 abort_code = sp->error;
297 ret = put_cmsg(msg, SOL_RXRPC, RXRPC_NET_ERROR, 4, &abort_code);
301 abort_code
[all...]
H A Dar-connevent.c29 u32 abort_code)
34 _enter("{%d},%x", conn->debug_id, abort_code);
43 call->abort_code = abort_code;
61 u32 error, u32 abort_code)
70 _enter("%d,,%u,%u", conn->debug_id, error, abort_code);
84 rxrpc_abort_calls(conn, RXRPC_CALL_LOCALLY_ABORTED, abort_code);
103 word = htonl(abort_code);
113 _proto("Tx CONN ABORT %%%u { %d }", ntohl(hdr.serial), abort_code);
216 u32 abort_code; local
28 rxrpc_abort_calls(struct rxrpc_connection *conn, int state, u32 abort_code) argument
60 rxrpc_abort_connection(struct rxrpc_connection *conn, u32 error, u32 abort_code) argument
263 u32 abort_code = RX_PROTOCOL_ERROR; local
[all...]
H A Dar-input.c314 u32 serial, hi_serial, seq, abort_code; local
354 abort_code = ntohl(_abort_code);
355 _proto("Rx ABORT %%%u { %x }", serial, abort_code);
360 call->abort_code = abort_code;
435 call->abort_code = RX_PROTOCOL_ERROR;
507 call->abort_code = RX_PROTOCOL_ERROR;
H A Dar-output.c37 u32 *abort_code,
78 if (len != sizeof(*abort_code))
80 *abort_code = *(unsigned int *) CMSG_DATA(cmsg);
81 _debug("Abort %x", *abort_code);
82 if (*abort_code == 0)
108 static void rxrpc_send_abort(struct rxrpc_call *call, u32 abort_code) argument
114 call->abort_code = abort_code;
142 u32 abort_code = 0; local
149 ret = rxrpc_sendmsg_cmsg(rx, msg, &user_call_ID, &cmd, &abort_code,
34 rxrpc_sendmsg_cmsg(struct rxrpc_sock *rx, struct msghdr *msg, unsigned long *user_call_ID, enum rxrpc_command *command, u32 *abort_code, bool server) argument
255 rxrpc_kernel_abort_call(struct rxrpc_call *call, u32 abort_code) argument
283 u32 abort_code = 0; local
[all...]
H A Dar-ack.c890 u32 abort_code = RX_PROTOCOL_ERROR; local
977 data = htonl(call->abort_code);
1040 call->abort_code = RX_CALL_TIMEOUT;
1056 switch (rxrpc_process_rx_queue(call, &abort_code)) {
1065 rxrpc_abort_call(call, abort_code);
H A Drxkad.c747 u32 version, nonce, min_level, abort_code; local
763 abort_code = RXKADPACKETSHORT;
775 abort_code = RXKADINCONSISTENCY;
779 abort_code = RXKADLEVELFAIL;
811 *_abort_code = abort_code;
812 _leave(" = -EPROTO [%d]", abort_code);
1008 u32 abort_code, version, kvno, ticket_len, level; local
1014 abort_code = RXKADPACKETSHORT;
1027 abort_code = RXKADINCONSISTENCY;
1031 abort_code
[all...]
H A Dar-internal.h350 u32 abort_code; /* local/remote abort code */ member in struct:rxrpc_call
418 static inline void rxrpc_abort_call(struct rxrpc_call *call, u32 abort_code) argument
422 call->abort_code = abort_code;

Completed in 49 milliseconds