[LEDE-DEV] [PATCH] mac80211.sh: adjust HT40 control channel

2017-04-20 Thread Eduardo Abinader
update ht40_capab, if only one of these configs is allowed (+ or -). Signed-off-by: Eduardo Abinader --- .../mac80211/files/lib/netifd/wireless/mac80211.sh | 20 1 file changed, 20 insertions(+) diff --git a/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh b

[LEDE-DEV] [PATCH] netifd: remove wireless device when device fails to setup

2016-06-30 Thread Eduardo Abinader
Ensure wireless device struct is removed, when it fails to be set up, due to a invalid configuration, hence enabling the wireless dev to be set up again, when a new valid configuration is set. Signed-off-by: Eduardo Abinader --- wireless.c | 4 1 file changed, 4 insertions(+) diff --git a

[LEDE-DEV] [PATCH] netifd: remove wireless device when device fails to setup

2016-06-30 Thread Eduardo Abinader
Ensure wireless device struct is removed, when it fails to be set up, due to a invalid configuration, hence enabling the wireless dev to be set up again, when a new valid configuration is set. Signed-off-by: Eduardo Abinader --- wireless.c | 4 1 file changed, 4 insertions(+) diff --git a

Re: [LEDE-DEV] [PATCH] netifd: remove wireless device when device fails to setup

2016-07-01 Thread Eduardo Abinader
01.07.2016 00:14, Felix Fietkau wrote: > On 2016-06-30 16:18, Eduardo Abinader wrote: >> Ensure wireless device struct is removed, when it fails to be set up, >> due to a invalid configuration, hence enabling the wireless dev >> to be set up again, when a new valid configuration is set

Re: [LEDE-DEV] [PATCH] netifd: remove wireless device when device fails to setup

2016-07-03 Thread Eduardo Abinader
Thanks for the feedback, Felix. I will submit another patch(es) with the changes you commented. Ok? Eduardo From: Felix Fietkau [n...@nbd.name] Sent: Saturday, July 02, 2016 10:25 AM To: Eduardo Abinader; openwrt-de...@lists.openwrt.org; lede-dev

[LEDE-DEV] [PATCH 0/1] reload wireless device when config changes

2016-07-25 Thread Eduardo Abinader
was loaded. Hence I isolated what is reload and normal interface autostart, when dev is created. Eduardo Abinader (1): netifd: reload wireless device when config changes wireless.c | 9 ++--- 1 file changed, 6 insertions(+), 3 deletions(-) -- 2.5.0

[LEDE-DEV] [PATCH 1/1] netifd: reload wireless device when config changes

2016-07-25 Thread Eduardo Abinader
Based on config_state to reload, triggered by config changes, make netifd to proceed accordingly, either started via wdev up or netifd reload. Thus the restart of wdev would be based on actual config changes, letting autostart aside from this. Signed-off-by: Eduardo Abinader --- wireless.c | 9

[LEDE-DEV] [PATCH 0/1 V3] track when wdev setup fails

2016-08-11 Thread Eduardo Abinader
From: Eduardo Abinader Hi Felix, Regarding the changes you requested: https://patchwork.ozlabs.org/patch/652273/ I added a flag to wdev, in order to track when a new setup should be allowed during reload of config. I also set the wireless_start_pending to setup when autostart and the wdev is

[LEDE-DEV] [PATCH 1/1 V3] netifd: track when wdev setup fails

2016-08-11 Thread Eduardo Abinader
not applied. Signed-off-by: Eduardo Abinader --- wireless.c | 26 -- wireless.h | 1 + 2 files changed, 21 insertions(+), 6 deletions(-) diff --git a/wireless.c b/wireless.c index 34dd328..1212a77 100644 --- a/wireless.c +++ b/wireless.c @@ -287,7 +287,7

[LEDE-DEV] [PATCH 0/1 V3] track when wdev setup fails

2016-08-11 Thread Eduardo Abinader
Hi Felix, Regarding the changes you requested: https://patchwork.ozlabs.org/patch/652273/ I added a flag to wdev, in order to track when a new setup should be allowed during reload of config. I also set the wireless_start_pending to setup when autostart and the wdev is down. Eduardo Abinader

[LEDE-DEV] [PATCH 1/1 V3] netifd: track when wdev setup fails

2016-08-11 Thread Eduardo Abinader
not applied. Signed-off-by: Eduardo Abinader --- wireless.c | 26 -- wireless.h | 1 + 2 files changed, 21 insertions(+), 6 deletions(-) diff --git a/wireless.c b/wireless.c index 34dd328..1212a77 100644 --- a/wireless.c +++ b/wireless.c @@ -287,7 +287,7

Re: [LEDE-DEV] [PATCH 1/1 V3] netifd: track when wdev setup fails

2016-08-11 Thread Eduardo Abinader
On 11.08.2016 14:16, Felix Fietkau wrote: > On 2016-08-11 14:02, Eduardo Abinader wrote: >> When netifd failed to load a valid configuration, after an invalid one, >> it was not possible to setup the wireless device. This patch >> aims to track this situation and behave a

[LEDE-DEV] [PATCH V4] netifd: track when wdev setup fails

2016-08-11 Thread Eduardo Abinader
not applied. Signed-off-by: Eduardo Abinader --- wireless.c | 19 --- wireless.h | 1 + 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/wireless.c b/wireless.c index 34dd328..67c87f6 100644 --- a/wireless.c +++ b/wireless.c @@ -287,6 +287,12

Re: [LEDE-DEV] [PATCH V4] netifd: track when wdev setup fails

2016-08-11 Thread Eduardo Abinader
On Thu, Aug 11, 2016 at 7:27 PM, Felix Fietkau wrote: > On 2016-08-11 17:22, Eduardo Abinader wrote: >> When netifd failed to load a valid configuration, after an invalid one, >> it was not possible to setup the wireless device. This patch >> aims to track this situation and

[LEDE-DEV] [PATCH v5] netifd: track when wdev setup fails

2016-08-11 Thread Eduardo Abinader
From: Eduardo Abinader When netifd failed to load a valid configuration, after an invalid one, it was not possible to setup the wireless device. This patch aims to track this situation and behave acordingly, by keeping track of failed setup without affecting autostart behavior. Also block the

[LEDE-DEV] [PATCH][netifd] wireless: add retry_setup_failed to status notification

2016-08-24 Thread Eduardo Abinader
As autostart is now more aligned to user intention of automatic starting the wdev, to add retry_setup_failed to status msg may be of a help for current stating how setup is proceeding. Signed-off-by: Eduardo Abinader --- wireless.c | 1 + 1 file changed, 1 insertion(+) diff --git a/wireless.c

[LEDE-DEV] [PATCH] wireless: remove config_autostart

2016-08-25 Thread Eduardo Abinader
just a cleanup for an unused member. Signed-off-by: Eduardo Abinader --- wireless.c | 3 +-- wireless.h | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/wireless.c b/wireless.c index 2ce5774..be94c34 100644 --- a/wireless.c +++ b/wireless.c @@ -690,8 +690,7

[LEDE-DEV] [PATCH] check: upgrade to 0.10.0

2016-09-21 Thread Eduardo Abinader
updated new package url and solved some issues: https://github.com/libcheck/check/releases/tag/0.10.0 Signed-off-by: Eduardo Abinader --- libs/check/Makefile | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libs/check/Makefile b/libs/check/Makefile index eb735ee

[LEDE-DEV] [PATCH v2] check: upgrade to 0.10.0

2016-09-21 Thread Eduardo Abinader
updated new package url and solved some issues: https://github.com/libcheck/check/releases/tag/0.10.0 Signed-off-by: Eduardo Abinader --- libs/check/Makefile | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libs/check/Makefile b/libs/check/Makefile index eb735ee

Re: [LEDE-DEV] [PATCH v2] check: upgrade to 0.10.0

2016-09-26 Thread Eduardo Abinader
Done. Thanks, John. On Mon, Sep 26, 2016 at 5:58 PM, John Crispin wrote: > Hi Eduardo, > > patches against the packages feed need to be sent via a PR on github -> > https://github.com/openwrt/packages > > John > > On 21/09/2016 17:23, Eduardo Abinader wrote: