From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752402AbcFFRC6 (ORCPT ); Mon, 6 Jun 2016 13:02:58 -0400 Received: from lists.s-osg.org ([54.187.51.154]:41321 "EHLO lists.s-osg.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752020AbcFFRC5 (ORCPT ); Mon, 6 Jun 2016 13:02:57 -0400 From: Javier Martinez Canillas To: linux-kernel@vger.kernel.org Cc: Julian Calaby , Shengzhen Li , Enric Balletbo i Serra , Javier Martinez Canillas , Amitkumar Karwar , Kalle Valo , netdev@vger.kernel.org, linux-wireless@vger.kernel.org, Nishant Sarmukadam Subject: [PATCH v2 0/3] mwifiex: add .get_tx_power and .get_antenna cfg80211 operations Date: Mon, 6 Jun 2016 13:02:35 -0400 Message-Id: <1465232558-31678-1-git-send-email-javier@osg.samsung.com> X-Mailer: git-send-email 2.5.5 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hello, Since commit de3bb771f471 ("cfg80211: add more warnings for inconsistent ops") the wireless core warns if a driver implements a cfg80211 callback but doesn't implements the inverse operation. The mwifiex driver has two set operations defined without the get counterpat so warnings are shown: WARNING: CPU: 3 PID: 127 at net/wireless/core.c:366 wiphy_new_nm+0x66c/0x6ac Modules linked in: mwifiex_sdio mwifiex CPU: 3 PID: 127 Comm: kworker/3:1 Tainted: G W 4.7.0-rc1-next-20160531-00006-g569df5b983f3 Hardware name: SAMSUNG EXYNOS (Flattened Device Tree) Workqueue: events request_firmware_work_func [] (unwind_backtrace) from [] (show_stack+0x10/0x14) [] (show_stack) from [] (dump_stack+0x88/0x9c) [] (dump_stack) from [] (__warn+0xe8/0x100) [] (__warn) from [] (warn_slowpath_null+0x20/0x28) [] (warn_slowpath_null) from [] (wiphy_new_nm+0x66c/0x6ac) [] (wiphy_new_nm) from [] (mwifiex_register_cfg80211+0x28/0x3f0 [mwifiex]) [] (mwifiex_register_cfg80211 [mwifiex]) from [] (mwifiex_fw_dpc+0x2b0/0x474 [mwifiex]) [] (mwifiex_fw_dpc [mwifiex]) from [] (request_firmware_work_func+0x30/0x58) [] (request_firmware_work_func) from [] (process_one_work+0x124/0x338) [] (process_one_work) from [] (worker_thread+0x38/0x4d4) [] (worker_thread) from [] (kthread+0xdc/0xf4) [] (kthread) from [] (ret_from_fork+0x14/0x3c) This patch series fixes the warnings by implementing callbacks for the missing get operations. Since the first version was posted [0], Amitkumar Karwar from Marvell provided me their patches that adds the same. The .get_tx_power patch was very similar to mine. So I kept my patch and added the delta as a follow up patch but discarded my .get_antenna patch since the one provided by Amitkumar queries the firmware so is the correct approach. Patches were tested on an Exynos5800 Chromebook that has a mwifiex chip. Changes since v1: - Drop patch that reports antenna cached values and use Marvell's patch instead. - Add patch that moves the .get_tx_power() logic to sta_ioctl.c file. [0]: https://www.mail-archive.com/linux-kernel@vger.kernel.org/msg1160119.html Best regards, Javier Javier Martinez Canillas (1): mwifiex: add a cfg80211 .get_tx_power operation callback Shengzhen Li (2): mwifiex: move .get_tx_power logic to station ioctl file mwifiex: add get_antenna support for cfg80211 drivers/net/wireless/marvell/mwifiex/cfg80211.c | 32 ++++++++++++++ drivers/net/wireless/marvell/mwifiex/fw.h | 3 ++ drivers/net/wireless/marvell/mwifiex/init.c | 2 + drivers/net/wireless/marvell/mwifiex/main.h | 4 ++ drivers/net/wireless/marvell/mwifiex/sta_cmd.c | 50 +++++++++++++++------- drivers/net/wireless/marvell/mwifiex/sta_cmdresp.c | 10 +++-- drivers/net/wireless/marvell/mwifiex/sta_ioctl.c | 18 ++++++++ 7 files changed, 100 insertions(+), 19 deletions(-) -- 2.5.5