Re: [LEDE-DEV] ath10k firmware crashes in mesh mode on QCA9880

2016-12-13 Thread Adrian Chadd
Hi! ok, thanks! I've seen some .. annoying rate control related firmware crashes if you aren't using 11ac / 11n rates (ie you're /really/ legacy, so I wondered if something similar is going on here. Thanks! -a On 13 December 2016 at 22:06, Alexis Green wrote: > Hi Adrian, > > I have not done

Re: [LEDE-DEV] ath10k firmware crashes in mesh mode on QCA9880

2016-12-13 Thread Alexis Green via Lede-dev
The sender domain has a DMARC Reject/Quarantine policy which disallows sending mailing list messages using the original "From" header. To mitigate this problem, the original message has been wrapped automatically by the mailing list software.--- Begin Message --- Hi Adrian, I have not done much t

Re: [LEDE-DEV] ath10k firmware crashes in mesh mode on QCA9880

2016-12-13 Thread Adrian Chadd
Hi! Hm! So is there a firmware bug if there are 11n only capable nodes in an 11s mesh? -adrian ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

[LEDE-DEV] [PATCH] libubox: Fix cppcheck warnings

2016-12-13 Thread Rosen Penev
Two formats and a memory leak. Signed-off by: Rosen Penev --- ulog.c | 2 +- usock.c | 2 +- utils.c | 3 +++ 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ulog.c b/ulog.c index 985d366..e7fb081 100644 --- a/ulog.c +++ b/ulog.c @@ -91,7 +91,7 @@ static void ulog_kmsg(int priori

[LEDE-DEV] [PATCH] libubox: replace strtok with strsep

2016-12-13 Thread Rosen Penev
strsep is re-entrant whereas strtok not necessarily so. Signed-off by: Rosen Penev --- ulog.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ulog.c b/ulog.c index 296605d..985d366 100644 --- a/ulog.c +++ b/ulog.c @@ -39,8 +39,8 @@ static const char *ulog_default_ident(vo

Re: [LEDE-DEV] ath10k firmware crashes in mesh mode on QCA9880

2016-12-13 Thread Alexis Green via Lede-dev
The sender domain has a DMARC Reject/Quarantine policy which disallows sending mailing list messages using the original "From" header. To mitigate this problem, the original message has been wrapped automatically by the mailing list software.--- Begin Message --- Thank you for your help Rajkumar,

Re: [LEDE-DEV] ath10k firmware crashes in mesh mode on QCA9880

2016-12-13 Thread Manoharan, Rajkumar
> Tested the 10.2.4.70.59-2 firmware and wpa_supplicant running WITHOUT > encryption and it still crashes. I suspect this means wpa_supplicant is > setting up > the interface incorrectly and/or transmitting a malformed packet that is > causing > the driver to crash. > Ben, IIRC mesh support was

Re: [LEDE-DEV] ath10k firmware crashes in mesh mode on QCA9880

2016-12-13 Thread Benjamin Morgan via Lede-dev
The sender domain has a DMARC Reject/Quarantine policy which disallows sending mailing list messages using the original "From" header. To mitigate this problem, the original message has been wrapped automatically by the mailing list software.--- Begin Message --- Tested the 10.2.4.70.59-2 firmware

[LEDE-DEV] [PATCH] map: Have cmake find libubus.h

2016-12-13 Thread Florian Fainelli
Update CMakeList.txt to look for libubus.h since we depend on it. Signed-off-by: Florian Fainelli --- package/network/ipv6/map/src/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package/network/ipv6/map/src/CMakeLists.txt b/package/network/ipv6/map/src/CMakeLists.txt inde

[LEDE-DEV] [PATCH mdns] cmake: Search for libjson-c

2016-12-13 Thread Florian Fainelli
Since we use libblobmsg_json which uses libjson-c internally, make sure we find this library. Signed-off-by: Florian Fainelli --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f191fa5c1716..4052bcdb80ad 100644 --- a/CMake

Re: [LEDE-DEV] [PATCH] hostapd: update to version 2016-12-12

2016-12-13 Thread Felix Fietkau
On 2016-12-13 18:04, Koen Vandeputte wrote: > Update to latest upstream HEAD: > > - Refreshed all > - Delete patches and parts which made it upstream > - Add new patch 480 which fixes a build error in the Mini config due to > missing macro's > > Compile tested Full & Mini configs > Run-tested Min

[LEDE-DEV] DMARC related mass bounces / disabled subscriptions

2016-12-13 Thread Jo-Philipp Wich
Hi list, a recent mailing list post from a DMARC enabled domain caused a large flood of bounces from various mail providers, causing an automatic disabling of about 190 subscriptions [1]. I re-enabled those subscriptions manually so there is no need for further action on your side. In order to m

Re: [LEDE-DEV] ath10k firmware crashes in mesh mode on QCA9880

2016-12-13 Thread Benjamin Morgan
Just tested the latest 10.2.4.70.59-2 firmware and it still crashes with wpa_supplicant encrypted mesh =( [ 85.201440] ath10k_pci :01:00.0: firmware crashed! (uuid b7f44483-0488-46af-8dff-db88f4b56327) [ 85.210573] ath10k_pci :01:00.0: qca988x hw2.0 target 0x4100016c chip_id 0x0432

[LEDE-DEV] [PATCH] mac80211: backport "cfg80211: limit scan results cache size"

2016-12-13 Thread Christian Lamparter
The patch commit states: "It's possible to make scanning consume almost arbitrary amounts of memory, e.g. by sending beacon frames with random BSSIDs at high rates while somebody is scanning. Limit the number of BSS table entries we're willing to cache to 1000, limiting maximum memory usage to may

[LEDE-DEV] [PATCH] hostapd: update to version 2016-12-12

2016-12-13 Thread Koen Vandeputte
Update to latest upstream HEAD: - Refreshed all - Delete patches and parts which made it upstream - Add new patch 480 which fixes a build error in the Mini config due to missing macro's Compile tested Full & Mini configs Run-tested Mini config Signed-off-by: Koen Vandeputte --- package/network

[LEDE-DEV] [PATCH] libubox: allow reading out the pid of uloop process in lua

2016-12-13 Thread Florian Eckert
Add Lua methode to get the forked pid of a uloop process Signed-off-by: Florian Eckert --- lua/uloop.c | 13 + 1 file changed, 13 insertions(+) diff --git a/lua/uloop.c b/lua/uloop.c index a78c2dc..1b0389f 100644 --- a/lua/uloop.c +++ b/lua/uloop.c @@ -288,8 +288,21 @@ static int ul

Re: [LEDE-DEV] Help on porting new device (DCS-933L)

2016-12-13 Thread John Crispin
On 13/12/2016 09:43, John Crispin wrote: > > > On 13/12/2016 09:17, Luiz Angelo Daros de Luca wrote: >> Hello, >> >> I'm trying to port LEDE to a new device DCS-933L. It's a dlink ip >> camera with 8MB Flash and 64 MB RAM. Currently my branch is published >> on https://github.com/luizluca/sourc

Re: [LEDE-DEV] Help on porting new device (DCS-933L)

2016-12-13 Thread John Crispin
On 13/12/2016 09:17, Luiz Angelo Daros de Luca wrote: > Hello, > > I'm trying to port LEDE to a new device DCS-933L. It's a dlink ip > camera with 8MB Flash and 64 MB RAM. Currently my branch is published > on https://github.com/luizluca/source/tree/add_dcs933lb1 > > It seems to be going well (

[LEDE-DEV] Help on porting new device (DCS-933L)

2016-12-13 Thread Luiz Angelo Daros de Luca
Hello, I'm trying to port LEDE to a new device DCS-933L. It's a dlink ip camera with 8MB Flash and 64 MB RAM. Currently my branch is published on https://github.com/luizluca/source/tree/add_dcs933lb1 It seems to be going well (as it is my first port) but I cannot see the webcam. I guess its camer

Re: [LEDE-DEV] [PATCH] libubus: initialize list member for ubus_auto_conn's timer

2016-12-13 Thread Alexandru Ardelean
On Tue, Dec 13, 2016 at 9:52 AM, Felix Fietkau wrote: > On 2016-12-13 08:41, Alexandru Ardelean wrote: >> Every once in a while, we'll get stacktrace: >> ``` >> (gdb) bt >> \#0 0xb7bc4668 in _list_del (entry=0x10015688 ) at >> /home/sandu/work/Wrt/openwrt/build_dir/target-powerpc_8540_uClibc-0.9