From owner-svn-src-head@FreeBSD.ORG Mon May 25 13:52:52 2009 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F3FB3106564A; Mon, 25 May 2009 13:52:51 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E1BD88FC12; Mon, 25 May 2009 13:52:51 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n4PDqpne025642; Mon, 25 May 2009 13:52:51 GMT (envelope-from rwatson@svn.freebsd.org) Received: (from rwatson@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n4PDqpuu025640; Mon, 25 May 2009 13:52:51 GMT (envelope-from rwatson@svn.freebsd.org) Message-Id: <200905251352.n4PDqpuu025640@svn.freebsd.org> From: Robert Watson Date: Mon, 25 May 2009 13:52:51 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r192758 - head/sys/netipx X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 May 2009 13:52:52 -0000 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_ */