From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mail-ig0-f182.google.com ([209.85.213.182]:45337 "EHLO mail-ig0-f182.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751156AbaDAIKs (ORCPT ); Tue, 1 Apr 2014 04:10:48 -0400 Received: by mail-ig0-f182.google.com with SMTP id uy17so4523743igb.15 for ; Tue, 01 Apr 2014 01:10:48 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: References: <1395409651-26120-1-git-send-email-michal.kazior@tieto.com> <1396262371-6466-1-git-send-email-michal.kazior@tieto.com> <1396262371-6466-14-git-send-email-michal.kazior@tieto.com> Date: Tue, 1 Apr 2014 11:10:48 +0300 Message-ID: (sfid-20140401_101055_345911_5894EC50) Subject: Re: [PATCH v3 13/13] mac80211: implement multi-vif in-place reservations From: Eliad Peller To: Michal Kazior Cc: "linux-wireless@vger.kernel.org" , Johannes Berg Content-Type: text/plain; charset=ISO-8859-1 Sender: linux-wireless-owner@vger.kernel.org List-ID: On Tue, Apr 1, 2014 at 10:54 AM, Michal Kazior wrote: > On 1 April 2014 09:46, Eliad Peller wrote: >> On Tue, Apr 1, 2014 at 8:10 AM, Michal Kazior wrote: >>> On 31 March 2014 18:15, Eliad Peller wrote: >>>> On Mon, Mar 31, 2014 at 1:39 PM, Michal Kazior wrote: > > [...] > >>>>> +err_unassign: >>>>> + list_for_each_entry_continue_reverse(sdata, &ctx->reserved_vifs, >>>>> + reserved_chanctx_list) >>>>> + drv_unassign_vif_chanctx(local, sdata, ctx); >>>>> + ieee80211_del_chanctx(local, new_ctx); >>>>> +err_revert: >>>>> + kfree_rcu(new_ctx, rcu_head); >>>>> + WARN_ON(ieee80211_add_chanctx(local, ctx)); >>>>> + list_add_rcu(&ctx->list, &local->chanctx_list); >>>>> + list_for_each_entry(sdata, &ctx->reserved_vifs, reserved_chanctx_list) { >>>>> + sdata->radar_required = sdata->reserved_radar_required; >>>>> + rcu_assign_pointer(sdata->vif.chanctx_conf, &ctx->conf); >>>>> + WARN_ON(drv_assign_vif_chanctx(local, sdata, ctx)); >>>>> + } >>>> seems like the list_for_each_entry should actually be under err_unassign? >>> >>> No. This is correct. The err_unassign is used to bail out if any >>> drv_assign_vif_chanctx fails mid-way. We want to unassign only those >>> vif-chanctx we only managed to assign. >>> >> sure. i failed to explain - i'm referring only to the radar_required >> swapping - it seems to happen only later. > > You mean to split the list_for_each_entry from err_revert into 2 > parts: one that reverts the radar_required swapping and the other one > re-assigning vif-chanctx? I'm not really sure if that's necessary? The > `ctx` (old chanctx) should still be configured as it was wrt radar > detection. Or is there something that I'm missing? > ctx is correct, but sdata->radar_required doesn't seem to derive its value from it. i mean that you should either split the list_for_each_entry as you suggested, or move the radar_enabled swapping loop before the ieee80211_add_chanctx() call. Eliad.