Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 4 Jan 2010 18:30:05 GMT
From:      dfilter@FreeBSD.ORG (dfilter service)
To:        freebsd-net@FreeBSD.org
Subject:   Re: kern/142066: commit references a PR
Message-ID:  <201001041830.o04IU55S058682@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR kern/142066; it has been noted by GNATS.

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: kern/142066: commit references a PR
Date: Mon,  4 Jan 2010 18:25:52 +0000 (UTC)

 Author: tuexen
 Date: Mon Jan  4 18:25:38 2010
 New Revision: 201523
 URL: http://svn.freebsd.org/changeset/base/201523
 
 Log:
   Correct usage of parenthesis.
   
   PR:	kern/142066
   Approved by: rrs (mentor)
   Obtained from: Henning Petersen, Bruce Cran.
   MFC after: 2 weeks
 
 Modified:
   head/sys/netinet/sctp_pcb.c
 
 Modified: head/sys/netinet/sctp_pcb.c
 ==============================================================================
 --- head/sys/netinet/sctp_pcb.c	Mon Jan  4 18:21:27 2010	(r201522)
 +++ head/sys/netinet/sctp_pcb.c	Mon Jan  4 18:25:38 2010	(r201523)
 @@ -5528,7 +5528,7 @@ sctp_pcb_init()
  
  	/* Init the TIMEWAIT list */
  	for (i = 0; i < SCTP_STACK_VTAG_HASH_SIZE; i++) {
 -		LIST_INIT(&SCTP_BASE_INFO(vtag_timewait[i]));
 +		LIST_INIT(&SCTP_BASE_INFO(vtag_timewait)[i]);
  	}
  
  #if defined(SCTP_USE_THREAD_BASED_ITERATOR)
 @@ -6385,7 +6385,7 @@ sctp_is_vtag_good(struct sctp_inpcb *inp
  	}
  skip_vtag_check:
  
 -	chain = &SCTP_BASE_INFO(vtag_timewait[(tag % SCTP_STACK_VTAG_HASH_SIZE))];
 +	chain = &SCTP_BASE_INFO(vtag_timewait)[(tag % SCTP_STACK_VTAG_HASH_SIZE)];
  	/* Now what about timed wait ? */
  	if (!LIST_EMPTY(chain)) {
  		/*
 _______________________________________________
 svn-src-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201001041830.o04IU55S058682>