svn commit: r206735 - stable/8/sys/netinet

Randall Stewart rrs at FreeBSD.org
Sat Apr 17 04:02:27 UTC 2010


Author: rrs
Date: Sat Apr 17 04:02:27 2010
New Revision: 206735
URL: http://svn.freebsd.org/changeset/base/206735

Log:
  MFD 204040
  
  Fixes some argument calsl (u_long vs uint32_t).

Modified:
  stable/8/sys/netinet/sctp_indata.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/xen/xenpci/   (props changed)

Modified: stable/8/sys/netinet/sctp_indata.c
==============================================================================
--- stable/8/sys/netinet/sctp_indata.c	Sat Apr 17 04:00:57 2010	(r206734)
+++ stable/8/sys/netinet/sctp_indata.c	Sat Apr 17 04:02:27 2010	(r206735)
@@ -3479,7 +3479,7 @@ sctp_handle_segments(struct mbuf *m, int
 static void
 sctp_check_for_revoked(struct sctp_tcb *stcb,
     struct sctp_association *asoc, uint32_t cumack,
-    u_long biggest_tsn_acked)
+    uint32_t biggest_tsn_acked)
 {
 	struct sctp_tmit_chunk *tp1;
 	int tot_revoked = 0;
@@ -3561,7 +3561,7 @@ sctp_check_for_revoked(struct sctp_tcb *
 
 static void
 sctp_strike_gap_ack_chunks(struct sctp_tcb *stcb, struct sctp_association *asoc,
-    u_long biggest_tsn_acked, u_long biggest_tsn_newly_acked, u_long this_sack_lowest_newack, int accum_moved)
+    uint32_t biggest_tsn_acked, uint32_t biggest_tsn_newly_acked, uint32_t this_sack_lowest_newack, int accum_moved)
 {
 	struct sctp_tmit_chunk *tp1;
 	int strike_flag = 0;
@@ -4747,7 +4747,7 @@ again:
 static void
 sctp_check_for_nr_revoked(struct sctp_tcb *stcb,
     struct sctp_association *asoc, uint32_t cumack,
-    u_long biggest_tsn_acked)
+    uint32_t biggest_tsn_acked)
 {
 	struct sctp_tmit_chunk *tp1;
 


More information about the svn-src-all mailing list