From owner-svn-src-projects@FreeBSD.ORG Thu Jul 9 18:18:03 2009 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B0DC81065677; Thu, 9 Jul 2009 18:18:03 +0000 (UTC) (envelope-from rpaulo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9F3DB8FC18; Thu, 9 Jul 2009 18:18:03 +0000 (UTC) (envelope-from rpaulo@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 n69II37i093218; Thu, 9 Jul 2009 18:18:03 GMT (envelope-from rpaulo@svn.freebsd.org) Received: (from rpaulo@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n69II3YK093216; Thu, 9 Jul 2009 18:18:03 GMT (envelope-from rpaulo@svn.freebsd.org) Message-Id: <200907091818.n69II3YK093216@svn.freebsd.org> From: Rui Paulo Date: Thu, 9 Jul 2009 18:18:03 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r195507 - projects/mesh11s/sys/net80211 X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Jul 2009 18:18:04 -0000 Author: rpaulo Date: Thu Jul 9 18:18:03 2009 New Revision: 195507 URL: http://svn.freebsd.org/changeset/base/195507 Log: Use __inline instead of inline. Sponsored by: The FreeBSD Foundation Modified: projects/mesh11s/sys/net80211/ieee80211_hwmp.c Modified: projects/mesh11s/sys/net80211/ieee80211_hwmp.c ============================================================================== --- projects/mesh11s/sys/net80211/ieee80211_hwmp.c Thu Jul 9 18:17:01 2009 (r195506) +++ projects/mesh11s/sys/net80211/ieee80211_hwmp.c Thu Jul 9 18:18:03 2009 (r195507) @@ -106,7 +106,7 @@ static int hwmp_send_perr(struct ieee802 static void hwmp_recv_rann(struct ieee80211vap *, struct ieee80211_node *, const struct ieee80211_frame *, const struct ieee80211_meshrann_ie *); -static inline int hwmp_send_rann(struct ieee80211_node *, +static __inline int hwmp_send_rann(struct ieee80211_node *, const uint8_t [IEEE80211_ADDR_LEN], const uint8_t [IEEE80211_ADDR_LEN], struct ieee80211_meshrann_ie *); @@ -1016,7 +1016,7 @@ hwmp_recv_prep(struct ieee80211vap *vap, } } -static inline int +static __inline int hwmp_send_prep(struct ieee80211_node *ni, const uint8_t sa[IEEE80211_ADDR_LEN], const uint8_t da[IEEE80211_ADDR_LEN], @@ -1121,7 +1121,7 @@ hwmp_recv_perr(struct ieee80211vap *vap, #undef PEER_DADDR #undef PERR_DSEQ -static inline int +static __inline int hwmp_send_perr(struct ieee80211_node *ni, const uint8_t sa[IEEE80211_ADDR_LEN], const uint8_t da[IEEE80211_ADDR_LEN], @@ -1186,7 +1186,7 @@ hwmp_recv_rann(struct ieee80211vap *vap, } } -static inline int +static __inline int hwmp_send_rann(struct ieee80211_node *ni, const uint8_t sa[IEEE80211_ADDR_LEN], const uint8_t da[IEEE80211_ADDR_LEN],