Message ID | iwlwifi.20200926002540.c76108b9c476.Ib06008665e7bf1199c360aa92691d9c74fb84990@changeid (mailing list archive) |
---|---|
State | Rejected |
Delegated to: | Luca Coelho |
Headers | show |
Series | iwlwifi: updates intended for v5.10 2020-09-26 | expand |
Luca Coelho <luca@coelho.fi> writes: > From: Emmanuel Grumbach <emmanuel.grumbach@intel.com> > > A print in the remain on channel code was too long and caused > a WARNING, split it. > > Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com> > Fixes: 758cba88d008 ("iwlwifi: mvm: ROC: Extend the ROC max delay duration & limit ROC duration") Is the commit id correct? $ git show 758cba88d008 fatal: ambiguous argument '758cba88d008': unknown revision or path not in the working tree.
On Tue, 2020-09-29 at 10:52 +0300, Kalle Valo wrote: > Luca Coelho <luca@coelho.fi> writes: > > > From: Emmanuel Grumbach <emmanuel.grumbach@intel.com> > > > > A print in the remain on channel code was too long and caused > > a WARNING, split it. > > > > Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com> > > Fixes: 758cba88d008 ("iwlwifi: mvm: ROC: Extend the ROC max delay duration & limit ROC duration") > > Is the commit id correct? > > $ git show 758cba88d008 > fatal: ambiguous argument '758cba88d008': unknown revision or path not in the working tree. Hmmm, very weird. Must be something wrong with my script. It took the internal SHA1... It works with some other patches. I'll fix this and investigate what's wrong with the script. Sorry about the trouble. -- Cheers, Luca.
diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c b/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c index 6e8af84f386a..73280a2607a5 100644 --- a/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c +++ b/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c @@ -3703,9 +3703,12 @@ static int iwl_mvm_send_aux_roc_cmd(struct iwl_mvm *mvm, tail->apply_time_max_delay = cpu_to_le32(delay); IWL_DEBUG_TE(mvm, - "ROC: Requesting to remain on channel %u for %ums (requested = %ums, max_delay = %ums, dtim_interval = %ums)\n", - channel->hw_value, req_dur, duration, delay, - dtim_interval); + "ROC: Requesting to remain on channel %u for %ums\n", + channel->hw_value, req_dur); + IWL_DEBUG_TE(mvm, + "\t(requested = %ums, max_delay = %ums, dtim_interval = %ums)\n", + duration, delay, dtim_interval); + /* Set the node address */ memcpy(tail->node_addr, vif->addr, ETH_ALEN);