From owner-svn-src-projects@FreeBSD.ORG Mon Jun 8 11:08:16 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 3378810656AD; Mon, 8 Jun 2009 11:08:16 +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 007B18FC20; Mon, 8 Jun 2009 11:08:16 +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 n58B8FWY027529; Mon, 8 Jun 2009 11:08:15 GMT (envelope-from rpaulo@svn.freebsd.org) Received: (from rpaulo@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n58B8FIW027528; Mon, 8 Jun 2009 11:08:15 GMT (envelope-from rpaulo@svn.freebsd.org) Message-Id: <200906081108.n58B8FIW027528@svn.freebsd.org> From: Rui Paulo Date: Mon, 8 Jun 2009 11:08:15 +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: r193704 - 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: Mon, 08 Jun 2009 11:08:17 -0000 Author: rpaulo Date: Mon Jun 8 11:08:15 2009 New Revision: 193704 URL: http://svn.freebsd.org/changeset/base/193704 Log: Mark the BSS QoS capable. Pointed out by: sam Modified: projects/mesh11s/sys/net80211/ieee80211_mesh.c Modified: projects/mesh11s/sys/net80211/ieee80211_mesh.c ============================================================================== --- projects/mesh11s/sys/net80211/ieee80211_mesh.c Mon Jun 8 11:05:04 2009 (r193703) +++ projects/mesh11s/sys/net80211/ieee80211_mesh.c Mon Jun 8 11:08:15 2009 (r193704) @@ -1213,6 +1213,8 @@ ieee80211_create_mbss(struct ieee80211va ni->ni_meshidlen = vap->iv_meshidlen; memcpy(ni->ni_meshid, vap->iv_meshid, ni->ni_meshidlen); ni->ni_intval = ic->ic_bintval; + /* NB: mesh nodes must be QoS capable */ + ni->ni_flags |= IEEE80211_NODE_QOS; /* * Fix the channel and related attributes. */