diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2007-03-13 13:28:48 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-26 01:25:22 -0400 |
commit | 4bedb45203eab92a87b4c863fe2d0cded633427f (patch) | |
tree | d46e43d0a08253cf85ee2db64df6aee5e4ff5a07 /net/rxrpc/connection.c | |
parent | d9edf9e2be0f7661558984c32bd53867a7037fd3 (diff) |
[SK_BUFF]: Introduce udp_hdr(), remove skb->h.uh
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/rxrpc/connection.c')
-rw-r--r-- | net/rxrpc/connection.c | 4 |
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); |