Re: [PATCH 1/3] ath10k: update WMI 10.x service map

2015-11-24 Thread Peter Oh
I believe the robot report is false. Am I right? Thanks, Peter On 11/24/2015 01:19 PM, kbuild test robot wrote: Hi Peter, [auto build test WARNING on net-next/master] [also build test WARNING on v4.4-rc2 next-20151124] url: https://github.com/0day-ci/linux/commits/Peter-Oh/ath10k-introduce

[PATCH 04/10] staging: wilc1000: replace explicit NULL comparisons with !

2015-11-24 Thread Glen Lee
From: Leo Kim This patch replace explicit NULL comparison with ! operator to simplify code. Reported by checkpatch.pl for Comparison to NULL could be written !XXX" or "XXX". Signed-off-by: Leo Kim Signed-off-by: Glen Lee ---

[PATCH 01/10] staging: wilc1000: fix rmmod failure

2015-11-24 Thread Glen Lee
This patch fixes rmmod failure. wilc->firmware needs to be set to NULL because it is used again to check firmware is released when module exit. Fixes: 8b8ad7bc90bc ("staging: wilc1000: rename wilc_firmware in the struct wilc") Signed-off-by: Glen Lee ---

[PATCH 02/10] staging: wilc1000: wilc_wfi_cfgoperations.c: remove over-commenting

2015-11-24 Thread Glen Lee
From: Leo Kim There are over-commenting in the wilc_wfi_cfgoperations.c file and most of them are not helpful to explain what the code does and generate 80 ending line over warnings. So, all of comments are removed in this patch and the comments will later be added if

[PATCH 05/10] staging: wilc1000: fixes potential null dereference 'wid.val'

2015-11-24 Thread Glen Lee
From: Leo Kim This patch fixes the error reported by smatch. - Handle_ListenStateExpired() error: potential null dereference 'wid.val' If kmalloc failed, referenced to a NULL pointer. Signed-off-by: Leo Kim Signed-off-by: Glen Lee ---

[PATCH 06/10] staging: wilc1000: wilc_init(): fixes inconsistent returns

2015-11-24 Thread Glen Lee
From: Leo Kim This patch fixes the warning reported by smatch. - wilc_init() warn: inconsistent returns 'sem:_drv->sem_cfg_values' No need to up the sema here since down was not called before get here. Signed-off-by: Leo Kim Signed-off-by: Glen Lee

[PATCH 03/10] staging: wilc1000: fixes blank lines aren't necessary brace

2015-11-24 Thread Glen Lee
From: Leo Kim This patch fixes the checks reported by checkpatch.pl for Blank lines aren't necessary after an open brace '{' and Blank lines aren't necessary before a close brace '}'. Signed-off-by: Leo Kim Signed-off-by: Glen Lee ---

[PATCH 07/10] staging: wilc1000: wilc_deinit(): fixes inconsistent returns

2015-11-24 Thread Glen Lee
From: Leo Kim This patch fixes the warning reported by smatch. - wilc_deinit() warn: inconsistent returns 'sem:_drv->sem_cfg_values' This semaphore protect a cfg_values variable but cfg_values variables was not used here. So, just remove this line. Signed-off-by: Leo Kim

[PATCH 08/10] staging: wilc1000: Handle_AddBASession: remove unused function

2015-11-24 Thread Glen Lee
From: Leo Kim This patch removes unused a function Handle_AddBASession. And, removes the relation define. Signed-off-by: Leo Kim Signed-off-by: Glen Lee --- drivers/staging/wilc1000/host_interface.c | 69

[PATCH 10/10] staging: wilc1000: Handle_SetMulticastFilter(): fixes right shifting more than type allows

2015-11-24 Thread Glen Lee
From: Leo Kim This patch fixes the warning reported by smatch. - Handle_SetMulticastFilter() warn: right shifting more than type allows That is unnecessary action of boolean type. just assign 0. Signed-off-by: Leo Kim Signed-off-by: Glen Lee

[PATCH 09/10] staging: wilc1000: change if with else if

2015-11-24 Thread Glen Lee
From: Leo Kim The if statement should be else if since it is part of whole if condition. Signed-off-by: Leo Kim Signed-off-by: Glen Lee --- drivers/staging/wilc1000/host_interface.c | 11 +++ 1 file changed, 3 insertions(+), 8

Re: ATH10 firmware question

2015-11-24 Thread Michal Kazior
On 24 November 2015 at 22:29, Ben Greear wrote: > On 11/24/2015 10:07 AM, Cedric VONCKEN wrote: >> >> Hi, >> >> I have a simple test platform. >> One PC connected to an equipment. This equipment is set in AP >> mode. >> Another PC connected

Re: ATH10 firmware question

2015-11-24 Thread Ben Greear
On 11/24/2015 08:19 PM, Michal Kazior wrote: On 24 November 2015 at 22:29, Ben Greear wrote: On 11/24/2015 10:07 AM, Cedric VONCKEN wrote: Hi, I have a simple test platform. One PC connected to an equipment. This equipment is set in AP

Re: iw: add VHT80 support for 802.11s

2015-11-24 Thread Julian Calaby
Hi Sven, On Wed, Nov 25, 2015 at 4:42 AM, Sven Eckelmann wrote: > iw mesh supports non-HT and HT channel widths like HT20 or NOHT. But the > Linux 802.11s implementation also supports VHT80 which can be specified > during the mesh join. > > iw dev mesh0 mesh join

Re: [PATCH 1/3] ath10k: update WMI 10.x service map

2015-11-24 Thread kbuild test robot
Hi Peter, [auto build test WARNING on net-next/master] [also build test WARNING on v4.4-rc2 next-20151124] url: https://github.com/0day-ci/linux/commits/Peter-Oh/ath10k-introduce-Mesh-support-in-native-WiFi-mode-for-QCA988X/20151125-014059 config: m68k-allmodconfig (attached as .config

ATH10 firmware question

2015-11-24 Thread Cedric VONCKEN
Hi, I have a simple test platform. One PC connected to an equipment. This equipment is set in AP mode. Another PC connected to another equipment. This equipment is set in STA + WDS mode. Both equipment use the same openwrt Firmware (compat 2015-07-21), I

Re: ATH10 firmware question

2015-11-24 Thread Ben Greear
On 11/24/2015 10:07 AM, Cedric VONCKEN wrote: Hi, I have a simple test platform. One PC connected to an equipment. This equipment is set in AP mode. Another PC connected to another equipment. This equipment is set in STA + WDS mode. Both equipment use

[PATCH 2/3] ath10k: introduce new subtypes for proxy STA and Mesh

2015-11-24 Thread Peter Oh
QCA988X firmware starting from 10.2.4.70.12-2 supports new vdev subtypes for proxy STA and Mesh, hence add them to be used as needed. Signed-off-by: Peter Oh --- drivers/net/wireless/ath/ath10k/wmi.h | 2 ++ 1 file changed, 2 insertions(+) diff --git

[PATCH 3/3] ath10k: apply Mesh subtype when Mesh interface created.

2015-11-24 Thread Peter Oh
QCA988X firmware starting from 10.2.4.70.12-2 has capability to support Mesh Control Field Present bit in QoS field in native Wi-Fi mode. Hence apply Mesh subtype according to the WMI service map. Firmware will allows unicast, broadcast, multicast, and WDS frame (FromDS = 1 and ToDS = 1) to be

[PATCH 1/3] ath10k: update WMI 10.x service map

2015-11-24 Thread Peter Oh
Update WMI 10.x service map to sync with firmware 10.2.4.70.12-2 released on 11/11/2015 which is the latest QCA988X firmware as of 11/18/2015. Signed-off-by: Peter Oh --- drivers/net/wireless/ath/ath10k/wmi.h | 15 +++ 1 file changed, 15 insertions(+) diff

[PATCH 0/3] ath10k: introduce Mesh support in native WiFi mode for QCA988X

2015-11-24 Thread Peter Oh
QCA988X firmware has started supporting Mesh frame in native Wi-Fi mode by adding its subtype since 10.2.4.70.12-2. Hence update its WMI service map and vdev subtypes to be used for Mesh in native Wi-Fi mode. Peter Oh (3): ath10k: update WMI 10.x service map ath10k: introduce new subtypes for

iw: add VHT80 support for 802.11s

2015-11-24 Thread Sven Eckelmann
iw mesh supports non-HT and HT channel widths like HT20 or NOHT. But the Linux 802.11s implementation also supports VHT80 which can be specified during the mesh join. iw dev mesh0 mesh join "meshnet" freq 5180 80MHz Signed-off-by: Sven Eckelmann --- ibss.c | 33

Re: [PATCH 3/3] ath10k: apply Mesh subtype when Mesh interface created.

2015-11-24 Thread kbuild test robot
Hi Peter, [auto build test WARNING on net-next/master] [also build test WARNING on v4.4-rc2 next-20151124] url: https://github.com/0day-ci/linux/commits/Peter-Oh/ath10k-introduce-Mesh-support-in-native-WiFi-mode-for-QCA988X/20151125-014059 config: x86_64-randconfig-s5-11250138 (attached

[PATCH v2] ath10k: Fix write permission on few debugfs files

2015-11-24 Thread Mohammed Shafi Shajakhan
From: Mohammed Shafi Shajakhan Fix write permission for few of the debugfs entries which support write file operations as well. Signed-off-by: Mohammed Shafi Shajakhan --- drivers/net/wireless/ath/ath10k/debug.c | 12 ++-- 1 file

[PATCH v2] iw: add VHT80 support for 802.11s

2015-11-24 Thread Sven Eckelmann
iw mesh supports non-HT and HT channel widths like HT20 or NOHT. But the Linux 802.11s implementation also supports VHT80 which can be specified during the mesh join. iw dev mesh0 mesh join "meshnet" freq 5180 80MHz Signed-off-by: Sven Eckelmann --- v2: rebased from v4.3

Re: [PATCH 3/3] ath10k: apply Mesh subtype when Mesh interface created.

2015-11-24 Thread kbuild test robot
Hi Peter, [auto build test ERROR on net-next/master] [also build test ERROR on v4.4-rc2 next-20151124] url: https://github.com/0day-ci/linux/commits/Peter-Oh/ath10k-introduce-Mesh-support-in-native-WiFi-mode-for-QCA988X/20151125-014059 config: x86_64-randconfig-x006-11230704 (attached

Re: [PATCH 1/3] ath10k: update WMI 10.x service map

2015-11-24 Thread kbuild test robot
Hi Peter, [auto build test ERROR on net-next/master] [also build test ERROR on v4.4-rc2 next-20151124] url: https://github.com/0day-ci/linux/commits/Peter-Oh/ath10k-introduce-Mesh-support-in-native-WiFi-mode-for-QCA988X/20151125-014059 config: x86_64-randconfig-x006-11230704 (attached

[PATCH v2] libertas: check for NULL before use

2015-11-24 Thread Sudip Mukherjee
If kzalloc fails it will return NULL. Lets check for NULL first before using the pointer. Signed-off-by: Sudip Mukherjee --- v2: commit message changed drivers/net/wireless/marvell/libertas/cfg.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git

[PATCH] ath10k: stop abusing GFP_DMA

2015-11-24 Thread Felix Fietkau
Allocations from the DMA zone were originally added for legacy ISA stuff, or PCI devices that have specific limitations in their DMA addressing capabilities. It has no place in ath10k, which can do full 32-bit DMA. Fixes memory allocation errors on some platforms. Signed-off-by: Felix Fietkau

re: wireless: mwifiex: initial commit for Marvell mwifiex driver

2015-11-24 Thread Dan Carpenter
Hello Bing Zhao, The patch 5e6e3a92b9a4: "wireless: mwifiex: initial commit for Marvell mwifiex driver" from Mar 21, 2011, leads to the following static checker warning: drivers/net/wireless/marvell/mwifiex/sta_cmd.c:133 mwifiex_cmd_802_11_snmp_mib() warn: potential memory

re: wireless: mwifiex: initial commit for Marvell mwifiex driver

2015-11-24 Thread Dan Carpenter
Hello Bing Zhao, The patch 5e6e3a92b9a4: "wireless: mwifiex: initial commit for Marvell mwifiex driver" from Mar 21, 2011, leads to the following static checker warning: drivers/net/wireless/marvell/mwifiex/sta_event.c:634 mwifiex_process_sta_event() warn: inconsistent indenting

[PATCH] Fix memory leak if nla_put fails

2015-11-24 Thread Rahul Jain
From: Amit Khatri Signed-off-by: Amit Khatri Signed-off-by: Rahul Jain avoid memory leak because of nla_put_failure --- coalesce.c | 7 ++- wowlan.c | 28 ++-- 2 files changed, 28

re: Fix debugfs_create_*'s error checking method for wireless/rt2x00/

2015-11-24 Thread Dan Carpenter
Hello Zhaolei, The patch cfa3fa405a5e: "Fix debugfs_create_*'s error checking method for wireless/rt2x00/" from Oct 22, 2008, leads to the following static checker warning: drivers/net/wireless/ralink/rt2x00/rt2x00debug.c:674 rt2x00debug_register() warn: 'intf->driver_entry'

RE:

2015-11-24 Thread Amis, Ryann
​Our new web mail has been improved with a new messaging system from Owa/outlook which also include faster usage on email, shared calendar, web-documents and the new 2015 anti-spam version. Please use the link below to complete your update for our new Owa/outlook improved web mail. CLICK