Skip to content

Commit

Permalink
tcp: remove parameter from tcp_recv_urg().
Browse files Browse the repository at this point in the history
This patch removes an unused parameter (addr_len) from tcp_recv_urg()
method in net/ipv4/tcp.c.

Signed-off-by: Rami Rosen <ramirose@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Rami Rosen authored and David S. Miller committed Mar 19, 2009
1 parent 9bdd8d4 commit beedad9
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions net/ipv4/tcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -1082,8 +1082,7 @@ int tcp_sendmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *msg,
*/

static int tcp_recv_urg(struct sock *sk, long timeo,
struct msghdr *msg, int len, int flags,
int *addr_len)
struct msghdr *msg, int len, int flags)
{
struct tcp_sock *tp = tcp_sk(sk);

Expand Down Expand Up @@ -1698,7 +1697,7 @@ int tcp_recvmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
return err;

recv_urg:
err = tcp_recv_urg(sk, timeo, msg, len, flags, addr_len);
err = tcp_recv_urg(sk, timeo, msg, len, flags);
goto out;
}

Expand Down

0 comments on commit beedad9

Please sign in to comment.