aboutsummaryrefslogtreecommitdiffstats
path: root/net/rxrpc/connection.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/rxrpc/connection.c')
-rw-r--r--net/rxrpc/connection.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/rxrpc/connection.c b/net/rxrpc/connection.c
index e601fa87bb77..665a99952440 100644
--- a/net/rxrpc/connection.c
+++ b/net/rxrpc/connection.c
@@ -229,10 +229,10 @@ int rxrpc_connection_lookup(struct rxrpc_peer *peer,
229 _enter("%p{{%hu}},%u,%hu", 229 _enter("%p{{%hu}},%u,%hu",
230 peer, 230 peer,
231 peer->trans->port, 231 peer->trans->port,
232 ntohs(pkt->h.uh->source), 232 ntohs(udp_hdr(pkt)->source),
233 ntohs(msg->hdr.serviceId)); 233 ntohs(msg->hdr.serviceId));
234 234
235 x_port = pkt->h.uh->source; 235 x_port = udp_hdr(pkt)->source;
236 x_epoch = msg->hdr.epoch; 236 x_epoch = msg->hdr.epoch;
237 x_clflag = msg->hdr.flags & RXRPC_CLIENT_INITIATED; 237 x_clflag = msg->hdr.flags & RXRPC_CLIENT_INITIATED;
238 x_connid = htonl(ntohl(msg->hdr.cid) & RXRPC_CIDMASK); 238 x_connid = htonl(ntohl(msg->hdr.cid) & RXRPC_CIDMASK);