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

Michael Tuexen tuexen at FreeBSD.org
Sat Nov 20 19:35:13 UTC 2010


Author: tuexen
Date: Sat Nov 20 19:35:13 2010
New Revision: 215582
URL: http://svn.freebsd.org/changeset/base/215582

Log:
  MFC r214933:
  Remove two functions which are not used.

Modified:
  stable/8/sys/netinet/sctp_timer.c
  stable/8/sys/netinet/sctp_timer.h
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_timer.c
==============================================================================
--- stable/8/sys/netinet/sctp_timer.c	Sat Nov 20 19:33:42 2010	(r215581)
+++ stable/8/sys/netinet/sctp_timer.c	Sat Nov 20 19:35:13 2010	(r215582)
@@ -1670,30 +1670,6 @@ sctp_heartbeat_timer(struct sctp_inpcb *
 	return (0);
 }
 
-int
-sctp_is_hb_timer_running(struct sctp_tcb *stcb)
-{
-	if (SCTP_OS_TIMER_PENDING(&stcb->asoc.hb_timer.timer)) {
-		/* its running */
-		return (1);
-	} else {
-		/* nope */
-		return (0);
-	}
-}
-
-int
-sctp_is_sack_timer_running(struct sctp_tcb *stcb)
-{
-	if (SCTP_OS_TIMER_PENDING(&stcb->asoc.dack_timer.timer)) {
-		/* its running */
-		return (1);
-	} else {
-		/* nope */
-		return (0);
-	}
-}
-
 #define SCTP_NUMBER_OF_MTU_SIZES 18
 static uint32_t mtu_sizes[] = {
 	68,

Modified: stable/8/sys/netinet/sctp_timer.h
==============================================================================
--- stable/8/sys/netinet/sctp_timer.h	Sat Nov 20 19:33:42 2010	(r215581)
+++ stable/8/sys/netinet/sctp_timer.h	Sat Nov 20 19:35:13 2010	(r215582)
@@ -65,9 +65,6 @@ int
 sctp_heartbeat_timer(struct sctp_inpcb *, struct sctp_tcb *,
     struct sctp_nets *, int);
 
-int sctp_is_hb_timer_running(struct sctp_tcb *stcb);
-int sctp_is_sack_timer_running(struct sctp_tcb *stcb);
-
 int
 sctp_cookie_timer(struct sctp_inpcb *, struct sctp_tcb *,
     struct sctp_nets *);


More information about the svn-src-stable-8 mailing list