From patchwork Mon Jan 7 15:04:50 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Marco Porsch X-Patchwork-Id: 1941371 Return-Path: X-Original-To: patchwork-linux-wireless@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 1C2E4DFB80 for ; Mon, 7 Jan 2013 15:05:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751791Ab3AGPFH (ORCPT ); Mon, 7 Jan 2013 10:05:07 -0500 Received: from mail-bk0-f52.google.com ([209.85.214.52]:39182 "EHLO mail-bk0-f52.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751730Ab3AGPFF (ORCPT ); Mon, 7 Jan 2013 10:05:05 -0500 Received: by mail-bk0-f52.google.com with SMTP id w5so8299593bku.25 for ; Mon, 07 Jan 2013 07:05:04 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references:x-gm-message-state; bh=CqNwJ8TbVhaIWk9wo5MgOtk9hRVGmfl9DjUGVurBJ9Y=; b=CafERCPi2Zr1ftCc9QV/pPz/bKa+TpkYLAbgseq4dp7WuGLHXgaqy2kAkmZtRVZjFM Pl4r8Dd0iuLk+KI3vYNIwdX1T8vAtLE2eAjjJtfEzaL8IoOmfTxZ+Nfc2AP6rKlUiQMd fVwvwK6R2xHnUvTpgwInInt1VWGz4V5YgHZ+JYhz5Jrm+M1q3VOneFJ1XA19jwfYoK6K JMZDDwP1BY/fkfrQU8mTLjP13TJd2aXtDmMSpxofTniHyX0km/aPup82HUdOLmnp4wkv 3PNzRc2j0Qt6wpqk5r4kjI6U2CNNxmdF2nHwe4li6BcNtLhdT5xb1MAPKd9r7WzswqfE fPvg== X-Received: by 10.204.146.6 with SMTP id f6mr29694831bkv.69.1357571104362; Mon, 07 Jan 2013 07:05:04 -0800 (PST) Received: from X220-marco.infotech.tu-chemnitz.de (perseus.infotech.tu-chemnitz.de. [134.109.4.8]) by mx.google.com with ESMTPS id u3sm42691282bkw.9.2013.01.07.07.05.03 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 07 Jan 2013 07:05:03 -0800 (PST) From: Marco Porsch To: johannes@sipsolutions.net Cc: linux-wireless@vger.kernel.org, devel@lists.open80211s.org, Marco Porsch Subject: [PATCHv2 3/6] mac80211: move add_tim to subfunction Date: Mon, 7 Jan 2013 16:04:50 +0100 Message-Id: <1357571093-12868-4-git-send-email-marco@cozybit.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1357571093-12868-1-git-send-email-marco@cozybit.com> References: <1357571093-12868-1-git-send-email-marco@cozybit.com> X-Gm-Message-State: ALoCoQn4hNmyb4U9gKg3cLXBJX8n9oHkpntDWRofm/fQYYSzm3MQKCHTwQuekvdFwsk3X6oKFhfH Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org This functions will be used for mesh beacons, too. Signed-off-by: Marco Porsch --- net/mac80211/tx.c | 48 +++++++++++++++++++++++++++++------------------- 1 file changed, 29 insertions(+), 19 deletions(-) diff --git a/net/mac80211/tx.c b/net/mac80211/tx.c index e9eadc4..1b04984 100644 --- a/net/mac80211/tx.c +++ b/net/mac80211/tx.c @@ -2261,9 +2261,9 @@ void ieee80211_tx_pending(unsigned long data) /* functions for drivers to get certain frames */ -static void ieee80211_beacon_add_tim(struct ieee80211_sub_if_data *sdata, - struct ps_data *ps, - struct sk_buff *skb) +static void __ieee80211_beacon_add_tim(struct ieee80211_sub_if_data *sdata, + struct ps_data *ps, + struct sk_buff *skb) { u8 *pos, *tim; int aid0 = 0; @@ -2325,6 +2325,31 @@ static void ieee80211_beacon_add_tim(struct ieee80211_sub_if_data *sdata, } } +static int ieee80211_beacon_add_tim(struct ieee80211_sub_if_data *sdata, + struct ps_data *ps, + struct sk_buff *skb) +{ + struct ieee80211_local *local = sdata->local; + + /* Not very nice, but we want to allow the driver to call + * ieee80211_beacon_get() as a response to the set_tim() callback. + * That, however, is already invoked under the sta_lock to guarantee + * consistent and race-free update of the tim bitmap in mac80211 and + * the driver. + */ + if (local->tim_in_locked_section) { + __ieee80211_beacon_add_tim(sdata, ps, skb); + } else { + unsigned long flags; + + spin_lock_irqsave(&local->tim_lock, flags); + __ieee80211_beacon_add_tim(sdata, ps, skb); + spin_unlock_irqrestore(&local->tim_lock, flags); + } + + return 0; +} + struct sk_buff *ieee80211_beacon_get_tim(struct ieee80211_hw *hw, struct ieee80211_vif *vif, u16 *tim_offset, u16 *tim_length) @@ -2369,22 +2394,7 @@ struct sk_buff *ieee80211_beacon_get_tim(struct ieee80211_hw *hw, memcpy(skb_put(skb, beacon->head_len), beacon->head, beacon->head_len); - /* - * Not very nice, but we want to allow the driver to call - * ieee80211_beacon_get() as a response to the set_tim() - * callback. That, however, is already invoked under the - * sta_lock to guarantee consistent and race-free update - * of the tim bitmap in mac80211 and the driver. - */ - if (local->tim_in_locked_section) { - ieee80211_beacon_add_tim(sdata, &ap->ps, skb); - } else { - unsigned long flags; - - spin_lock_irqsave(&local->tim_lock, flags); - ieee80211_beacon_add_tim(sdata, &ap->ps, skb); - spin_unlock_irqrestore(&local->tim_lock, flags); - } + ieee80211_beacon_add_tim(sdata, &ap->ps, skb); if (tim_offset) *tim_offset = beacon->head_len;