Commit 6543ac52 authored by David Howells's avatar David Howells

rxrpc: Use rxrpc_is_service_call() rather than rxrpc_conn_is_service()

Use rxrpc_is_service_call() rather than rxrpc_conn_is_service() if the call
is available just in case call->conn is NULL.
Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
parent 8b7fac50
...@@ -357,7 +357,7 @@ void rxrpc_fast_process_packet(struct rxrpc_call *call, struct sk_buff *skb) ...@@ -357,7 +357,7 @@ void rxrpc_fast_process_packet(struct rxrpc_call *call, struct sk_buff *skb)
case RXRPC_PACKET_TYPE_BUSY: case RXRPC_PACKET_TYPE_BUSY:
_proto("Rx BUSY %%%u", sp->hdr.serial); _proto("Rx BUSY %%%u", sp->hdr.serial);
if (rxrpc_conn_is_service(call->conn)) if (rxrpc_is_service_call(call))
goto protocol_error; goto protocol_error;
write_lock_bh(&call->state_lock); write_lock_bh(&call->state_lock);
...@@ -525,7 +525,7 @@ static void rxrpc_post_packet_to_call(struct rxrpc_connection *conn, ...@@ -525,7 +525,7 @@ static void rxrpc_post_packet_to_call(struct rxrpc_connection *conn,
default: default:
goto dead_call; goto dead_call;
case RXRPC_CALL_SUCCEEDED: case RXRPC_CALL_SUCCEEDED:
if (rxrpc_conn_is_service(call->conn)) if (rxrpc_is_service_call(call))
goto dead_call; goto dead_call;
goto resend_final_ack; goto resend_final_ack;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment