From patchwork Thu Sep 8 00:49:54 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Javier Cardona X-Patchwork-Id: 1128622 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.4) with ESMTP id p880oCdp000431 for ; Thu, 8 Sep 2011 00:51:01 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757672Ab1IHAuM (ORCPT ); Wed, 7 Sep 2011 20:50:12 -0400 Received: from mail-pz0-f42.google.com ([209.85.210.42]:55031 "EHLO mail-pz0-f42.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757633Ab1IHAuK (ORCPT ); Wed, 7 Sep 2011 20:50:10 -0400 Received: by mail-pz0-f42.google.com with SMTP id 37so370400pzk.1 for ; Wed, 07 Sep 2011 17:50:10 -0700 (PDT) Received: by 10.68.6.195 with SMTP id d3mr136528pba.130.1315443010423; Wed, 07 Sep 2011 17:50:10 -0700 (PDT) Received: from localhost.localdomain (99-8-184-170.lightspeed.snfcca.sbcglobal.net. [99.8.184.170]) by mx.google.com with ESMTPS id e3sm8403629pbi.7.2011.09.07.17.50.09 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 07 Sep 2011 17:50:09 -0700 (PDT) From: Javier Cardona To: "John W. Linville" Cc: Javier Cardona , Thomas Pedersen , devel@lists.open80211s.org, Johannes Berg , linux-wireless@vger.kernel.org, jlopex@gmail.com Subject: [PATCH v2 3/3] mac80211: Mark all mesh stations as QoS capable Date: Wed, 7 Sep 2011 17:49:54 -0700 Message-Id: <1315442994-304-4-git-send-email-javier@cozybit.com> X-Mailer: git-send-email 1.7.6 In-Reply-To: <1315442994-304-1-git-send-email-javier@cozybit.com> References: <1315442994-304-1-git-send-email-javier@cozybit.com> Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Thu, 08 Sep 2011 00:51:01 +0000 (UTC) Signed-off-by: Javier Cardona --- net/mac80211/mesh_plink.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/mac80211/mesh_plink.c b/net/mac80211/mesh_plink.c index 1a00d0f..4396906 100644 --- a/net/mac80211/mesh_plink.c +++ b/net/mac80211/mesh_plink.c @@ -88,7 +88,7 @@ static struct sta_info *mesh_plink_alloc(struct ieee80211_sub_if_data *sdata, if (!sta) return NULL; - sta->flags = WLAN_STA_AUTHORIZED | WLAN_STA_AUTH; + sta->flags = WLAN_STA_AUTHORIZED | WLAN_STA_AUTH | WLAN_STA_WME; sta->sta.supp_rates[local->hw.conf.channel->band] = rates; rate_control_rate_init(sta);