svn commit: r192758 - head/sys/netipx
Robert Watson
rwatson at FreeBSD.org
Mon May 25 13:52:52 UTC 2009
Author: rwatson
Date: Mon May 25 13:52:51 2009
New Revision: 192758
URL: http://svn.freebsd.org/changeset/base/192758
Log:
Staticize spx_remque() now that it's only used from spx_reass.c.
Modified:
head/sys/netipx/spx_reass.c
head/sys/netipx/spx_var.h
Modified: head/sys/netipx/spx_reass.c
==============================================================================
--- head/sys/netipx/spx_reass.c Mon May 25 13:34:03 2009 (r192757)
+++ head/sys/netipx/spx_reass.c Mon May 25 13:52:51 2009 (r192758)
@@ -102,7 +102,7 @@ spx_insque(struct spx_q *element, struct
element->si_next->si_prev = element;
}
-void
+static void
spx_remque(struct spx_q *element)
{
Modified: head/sys/netipx/spx_var.h
==============================================================================
--- head/sys/netipx/spx_var.h Mon May 25 13:34:03 2009 (r192757)
+++ head/sys/netipx/spx_var.h Mon May 25 13:52:51 2009 (r192758)
@@ -155,7 +155,6 @@ int spx_output(struct spxpcb *cb, struct
int spx_reass(struct spxpcb *cb, struct spx *si);
void spx_reass_flush(struct spxpcb *cb);
void spx_reass_init(struct spxpcb *cb);
-void spx_remque(struct spx_q *element);
#endif
#endif /* !_NETIPX_SPX_VAR_H_ */
More information about the svn-src-all
mailing list