Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 10 Jul 2009 16:41:42 +0000 (UTC)
From:      Rui Paulo <rpaulo@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r195568 - projects/mesh11s/sys/net80211
Message-ID:  <200907101641.n6AGfg0G025710@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rpaulo
Date: Fri Jul 10 16:41:42 2009
New Revision: 195568
URL: http://svn.freebsd.org/changeset/base/195568

Log:
  remove an inline b/c the function grew

Modified:
  projects/mesh11s/sys/net80211/ieee80211_mesh.c

Modified: projects/mesh11s/sys/net80211/ieee80211_mesh.c
==============================================================================
--- projects/mesh11s/sys/net80211/ieee80211_mesh.c	Fri Jul 10 16:40:28 2009	(r195567)
+++ projects/mesh11s/sys/net80211/ieee80211_mesh.c	Fri Jul 10 16:41:42 2009	(r195568)
@@ -80,7 +80,7 @@ static void	mesh_forward(struct ieee8021
 static int	mesh_input(struct ieee80211_node *, struct mbuf *, int, int);
 static void	mesh_recv_mgmt(struct ieee80211_node *, struct mbuf *, int,
 		    int, int);
-static __inline void	mesh_peer_timeout_setup(struct ieee80211_node *);
+static void	mesh_peer_timeout_setup(struct ieee80211_node *);
 static void		mesh_peer_timeout_backoff(struct ieee80211_node *);
 static void		mesh_peer_timeout_cb(void *);
 static __inline void	mesh_peer_timeout_stop(struct ieee80211_node *);
@@ -1917,7 +1917,7 @@ mesh_send_action_meshlink_reply(struct i
 	}
 }
 
-static __inline void
+static void
 mesh_peer_timeout_setup(struct ieee80211_node *ni)
 {
 	switch (ni->ni_mlstate) {



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