netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [BK PATCH] 2.6 SCTP update
@ 2004-02-27 20:33 Sridhar Samudrala
  2004-02-27 21:31 ` David S. Miller
  0 siblings, 1 reply; 2+ messages in thread
From: Sridhar Samudrala @ 2004-02-27 20:33 UTC (permalink / raw)
  To: davem; +Cc: netdev

Hi Dave,

Please do a
	bk pull http://linux-lksctp.bkbits.net/lksctp-2.5.work
to get the following update to SCTP on top of linux 2.6.3

# This patch includes the following deltas:
#	           ChangeSet	1.1651  -> 1.1652
#	net/sctp/sm_statefuns.c	1.67    -> 1.68
#
# The following is the BitKeeper ChangeSet Log
# --------------------------------------------
# 04/02/27	sri@us.ibm.com	1.1652
# [SCTP] Fix incorrect INIT process termination with sinit_max_init_timeo.
#
# Currently, sinit_max_init_timeo is treated as the maximum timeout
# value for INIT retransmissions and the INIT process is aborted when
# the timeout reaches this value. But as per the SCTP sockets API draft,
# sinit_max_init_timeo only limits the timeout. The INIT process should
# be aborted only after MAX_INIT_RETRANSMITS.
# --------------------------------------------
#
diff -Nru a/net/sctp/sm_statefuns.c b/net/sctp/sm_statefuns.c
--- a/net/sctp/sm_statefuns.c	Fri Feb 27 11:04:51 2004
+++ b/net/sctp/sm_statefuns.c	Fri Feb 27 11:04:51 2004
@@ -4272,8 +4272,7 @@

 	SCTP_DEBUG_PRINTK("Timer T1 expired.\n");

-	if ((timeout < asoc->max_init_timeo) &&
-	    (attempts < asoc->max_init_attempts)) {
+	if (attempts < asoc->max_init_attempts) {
 		switch (timer) {
 		case SCTP_EVENT_TIMEOUT_T1_INIT:
 			bp = (struct sctp_bind_addr *) &asoc->base.bind_addr;

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

* Re: [BK PATCH] 2.6 SCTP update
  2004-02-27 20:33 [BK PATCH] 2.6 SCTP update Sridhar Samudrala
@ 2004-02-27 21:31 ` David S. Miller
  0 siblings, 0 replies; 2+ messages in thread
From: David S. Miller @ 2004-02-27 21:31 UTC (permalink / raw)
  To: Sridhar Samudrala; +Cc: netdev

On Fri, 27 Feb 2004 12:33:56 -0800 (PST)
Sridhar Samudrala <sri@us.ibm.com> wrote:

> Hi Dave,
> 
> Please do a
> 	bk pull http://linux-lksctp.bkbits.net/lksctp-2.5.work
> to get the following update to SCTP on top of linux 2.6.3

Pulled, thanks Sridhar.

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

end of thread, other threads:[~2004-02-27 21:31 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-02-27 20:33 [BK PATCH] 2.6 SCTP update Sridhar Samudrala
2004-02-27 21:31 ` David S. Miller

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).