netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* tipc timeout handling.
@ 2014-05-16 13:42 Arnaldo Carvalho de Melo
  2014-05-16 21:22 ` Jon Maloy
  0 siblings, 1 reply; 2+ messages in thread
From: Arnaldo Carvalho de Melo @ 2014-05-16 13:42 UTC (permalink / raw)
  To: Jon Maloy, Allan Stephens; +Cc: netdev, David Miller

Hi Jon, Allan,

	While working on a fix for the per recvmmsg syscall timeout
handling I found this issue, can you take a look if this is acceptable?

Thanks,

- Arnaldo

commit 592bb2a330427750d323b1362bf0822db1695e29
Author: Arnaldo Carvalho de Melo <acme@redhat.com>
Date:   Fri May 16 10:33:02 2014 -0300

    tipc: Don't reset the timeout when restarting
    
    As it may then take longer than what the user specified using
    setsockopt(SO_RCVTIMEO).
    
    Cc: Allan Stephens <allan.stephens@windriver.com>
    Cc: David Miller <davem@davemloft.net>
    To: Jon Maloy <jon.maloy@ericsson.com>,
    Link: http://lkml.kernel.org/n/tip-@git.kernel.org
    Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

diff --git a/net/tipc/socket.c b/net/tipc/socket.c
index 3f9912f87d0d..083c672a2a39 100644
--- a/net/tipc/socket.c
+++ b/net/tipc/socket.c
@@ -984,10 +984,11 @@ static int anc_data_recv(struct msghdr *m, struct tipc_msg *msg,
 	return 0;
 }
 
-static int tipc_wait_for_rcvmsg(struct socket *sock, long timeo)
+static int tipc_wait_for_rcvmsg(struct socket *sock, long *timeop)
 {
 	struct sock *sk = sock->sk;
 	DEFINE_WAIT(wait);
+	long timeo = *timeop;
 	int err;
 
 	for (;;) {
@@ -1012,6 +1013,7 @@ static int tipc_wait_for_rcvmsg(struct socket *sock, long timeo)
 			break;
 	}
 	finish_wait(sk_sleep(sk), &wait);
+	*timeop = timeo;
 	return err;
 }
 
@@ -1055,7 +1057,7 @@ static int tipc_recvmsg(struct kiocb *iocb, struct socket *sock,
 restart:
 
 	/* Look for a message in receive queue; wait if necessary */
-	res = tipc_wait_for_rcvmsg(sock, timeo);
+	res = tipc_wait_for_rcvmsg(sock, &timeo);
 	if (res)
 		goto exit;
 
@@ -1153,7 +1155,7 @@ static int tipc_recv_stream(struct kiocb *iocb, struct socket *sock,
 
 restart:
 	/* Look for a message in receive queue; wait if necessary */
-	res = tipc_wait_for_rcvmsg(sock, timeo);
+	res = tipc_wait_for_rcvmsg(sock, &timeo);
 	if (res)
 		goto exit;
 

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* RE: tipc timeout handling.
  2014-05-16 13:42 tipc timeout handling Arnaldo Carvalho de Melo
@ 2014-05-16 21:22 ` Jon Maloy
  0 siblings, 0 replies; 2+ messages in thread
From: Jon Maloy @ 2014-05-16 21:22 UTC (permalink / raw)
  To: Arnaldo Carvalho de Melo, Allan Stephens
  Cc: netdev@vger.kernel.org, David Miller,
	tipc-discussion@lists.sourceforge.net

Hi Arnaldo,
Reviewed and tested. No problem.

Regards
///jon


> -----Original Message-----
> From: Arnaldo Carvalho de Melo [mailto:acme@kernel.org]
> Sent: May-16-14 9:43 AM
> To: Jon Maloy; Allan Stephens
> Cc: netdev@vger.kernel.org; David Miller
> Subject: tipc timeout handling.
> 
> Hi Jon, Allan,
> 
> 	While working on a fix for the per recvmmsg syscall timeout handling
> I found this issue, can you take a look if this is acceptable?
> 
> Thanks,
> 
> - Arnaldo
> 
> commit 592bb2a330427750d323b1362bf0822db1695e29
> Author: Arnaldo Carvalho de Melo <acme@redhat.com>
> Date:   Fri May 16 10:33:02 2014 -0300
> 
>     tipc: Don't reset the timeout when restarting
> 
>     As it may then take longer than what the user specified using
>     setsockopt(SO_RCVTIMEO).
> 
>     Cc: Allan Stephens <allan.stephens@windriver.com>
>     Cc: David Miller <davem@davemloft.net>
>     To: Jon Maloy <jon.maloy@ericsson.com>,
>     Link: http://lkml.kernel.org/n/tip-@git.kernel.org
>     Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
> 
> diff --git a/net/tipc/socket.c b/net/tipc/socket.c index
> 3f9912f87d0d..083c672a2a39 100644
> --- a/net/tipc/socket.c
> +++ b/net/tipc/socket.c
> @@ -984,10 +984,11 @@ static int anc_data_recv(struct msghdr *m, struct
> tipc_msg *msg,
>  	return 0;
>  }
> 
> -static int tipc_wait_for_rcvmsg(struct socket *sock, long timeo)
> +static int tipc_wait_for_rcvmsg(struct socket *sock, long *timeop)
>  {
>  	struct sock *sk = sock->sk;
>  	DEFINE_WAIT(wait);
> +	long timeo = *timeop;
>  	int err;
> 
>  	for (;;) {
> @@ -1012,6 +1013,7 @@ static int tipc_wait_for_rcvmsg(struct socket *sock,
> long timeo)
>  			break;
>  	}
>  	finish_wait(sk_sleep(sk), &wait);
> +	*timeop = timeo;
>  	return err;
>  }
> 
> @@ -1055,7 +1057,7 @@ static int tipc_recvmsg(struct kiocb *iocb, struct
> socket *sock,
>  restart:
> 
>  	/* Look for a message in receive queue; wait if necessary */
> -	res = tipc_wait_for_rcvmsg(sock, timeo);
> +	res = tipc_wait_for_rcvmsg(sock, &timeo);
>  	if (res)
>  		goto exit;
> 
> @@ -1153,7 +1155,7 @@ static int tipc_recv_stream(struct kiocb *iocb, struct
> socket *sock,
> 
>  restart:
>  	/* Look for a message in receive queue; wait if necessary */
> -	res = tipc_wait_for_rcvmsg(sock, timeo);
> +	res = tipc_wait_for_rcvmsg(sock, &timeo);
>  	if (res)
>  		goto exit;
> 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-05-16 21:22 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-16 13:42 tipc timeout handling Arnaldo Carvalho de Melo
2014-05-16 21:22 ` Jon Maloy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).