Return-path: Received: from mail-la0-f47.google.com ([209.85.215.47]:34679 "EHLO mail-la0-f47.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751002AbaBTJbh (ORCPT ); Thu, 20 Feb 2014 04:31:37 -0500 Received: by mail-la0-f47.google.com with SMTP id hr17so1133732lab.34 for ; Thu, 20 Feb 2014 01:31:34 -0800 (PST) MIME-Version: 1.0 In-Reply-To: References: <1392226988-3878-1-git-send-email-janusz.dziedzic@tieto.com> <1392882691.5073.3.camel@jlt4.sipsolutions.net> <1392883153.5073.4.camel@jlt4.sipsolutions.net> Date: Thu, 20 Feb 2014 10:31:33 +0100 Message-ID: (sfid-20140220_103143_076524_FA993803) Subject: Re: [PATCH] crda: handle AUTO bw setting in db2rd From: Janusz Dziedzic To: Johannes Berg Cc: "Luis R. Rodriguez" , Janusz Dziedzic , linux-wireless , "John W. Linville" Content-Type: text/plain; charset=ISO-8859-1 Sender: linux-wireless-owner@vger.kernel.org List-ID: On 20 February 2014 09:03, Janusz Dziedzic wrote: > On 20 February 2014 08:59, Johannes Berg wrote: >> On Thu, 2014-02-20 at 08:57 +0100, Janusz Dziedzic wrote: >> >>> >> Yes, seems we should send this even this is 0. >>> >> Next for old kernel, all channels where BW=0 will be HT20 only. >>> > >>> > Is that really a good idea? >>> > >>> > Maybe crda should just get the logic to determine maximum bandwidth, >>> > like you did in the kernel, and then we can even revert the kernel code >>> > again? >>> > >>> Yes, this is possible to calculate this in crda (or even set this manually). >> >> Ok. Would that help older kernels? How would we handle genregdb.awk? >> > In case of older kernels we will fail (end_freq - start_freq < bw) with -EINVAL. > So, bw=0 (cfg calculation) seems like best idea - will work with new > and old kernels. > Seems cfg80211 max bandwidth calculation is best option here. We should set BW as is in old regulatory (skip this BW=0 patches) - will work fine with old kernels. And in new regulatory add RULE flag NL80211_RRF_AUTO_BW, which will be checked in newer kernels and if AUTO_BW flag we will skip (end_freq - start_freq < bw) check and calculate maximum available bandwidth. What you think? BR Janusz -