Re: [OpenWrt-Devel] [PATCH] AA: openssl: Support multi-threaded applications

2014-02-11 Thread Sujith Manoharan
Hi, Any hint on when this will be merged in AA ? Sujith Sujith Manoharan wrote: > From: Sujith Manoharan > > (This is a backport of r39048 from trunk). > > Allow multi-threaded applications to work properly by > removing the "no-threads" flag that is enabled by default. > > Signed-off-by: Su

Re: [OpenWrt-Devel] Move mwan to routing feed (was: Re: [PATCH] Add mwan in feeds.conf.default)

2014-02-11 Thread etienne . champetier
- Mail original - > De: "Aedan Reindeer" > À: "etienne champetier" > Envoyé: Mardi 11 Février 2014 23:12:36 > Objet: Re: Move mwan to routing feed (was: Re: [PATCH] Add mwan in > feeds.conf.default) > > > I'm okay with this. I have a few questions about how to get things to > be forma

[OpenWrt-Devel] Move mwan to routing feed (was: Re: [PATCH] Add mwan in feeds.conf.default)

2014-02-11 Thread etienne . champetier
Hi, - Mail original - > De: "Jo-Philipp Wich" > À: openwrt-devel@lists.openwrt.org > Envoyé: Mardi 11 Février 2014 15:02:35 > Objet: Re: [OpenWrt-Devel] [PATCH] Add mwan in feeds.conf.default > > Hi, > > I definitely support adding mwan3 to OpenWrt, but I think scope-wise > it > would f

Re: [OpenWrt-Devel] [RFC] mt7620 wifi

2014-02-11 Thread Mikko Hissa
Hello again! On 11 Feb 2014, at 19:12, Mikko Hissa wrote: > Hello! > > On 01 Feb 2014, at 02:08, Roman Yeryomin wrote: > >> Hello everybody! >> I'm trying to get mt7620 (ramips target, rt-n14u board) wifi working >> but no luck. I have ported init functions and channel setup from the >> origi

Re: [OpenWrt-Devel] [RFC] mt7620 wifi

2014-02-11 Thread Mikko Hissa
Hello! On 01 Feb 2014, at 02:08, Roman Yeryomin wrote: > Hello everybody! > I'm trying to get mt7620 (ramips target, rt-n14u board) wifi working > but no luck. I have ported init functions and channel setup from the > original (known to be working) driver. The original driver (and > datasheet) i

Re: [OpenWrt-Devel] [PATCH] Add mwan in feeds.conf.default

2014-02-11 Thread Jo-Philipp Wich
Hi, I definitely support adding mwan3 to OpenWrt, but I think scope-wise it would fit into the OpenWrt-Routing feed. It should be no problem merging the package there and grant commit access there. ~ Jow signature.asc Description: OpenPGP digital signature

Re: [OpenWrt-Devel] [PATCH 1/5] netifd : Disable netlink auto ack

2014-02-11 Thread Karl Vogel
On Tue, Feb 11, 2014 at 10:29:36AM +0100, Hans Dedecker wrote: > Disable netlink auto ack when doing a delete in the get callback > handler to avoid race conditions resulting into stalled message > on the netlink socket. > > Solves issue reported in https://dev.openwrt.org/ticket/14590 > > Signed

[OpenWrt-Devel] [PATCH 5/5] netifd : Fix ubus route src mask printing

2014-02-11 Thread Hans Dedecker
Fix printing of route src mask attribute when it contains 3 digits Signed-off-by: Hans Dedecker --- ubus.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ubus.c b/ubus.c index 22b75e4..d876824 100644 --- a/ubus.c +++ b/ubus.c @@ -497,7 +497,7 @@ interface_ip_dump_route

[OpenWrt-Devel] [PATCH 4/5] netifd: Fix bridge MTU setting

2014-02-11 Thread Hans Dedecker
Apply the bridge MTU setting after a bridge memeber as the kernel overrides the bridge MTU setting with the bridge member MTU setting Signed-off-by: Hans Dedecker --- bridge.c | 13 +++-- device.c |2 +- interface.c|2 +- system-dummy.c |2 +- system-linux.c

[OpenWrt-Devel] [PATCH 2/5] netifd: Link layer state awareness support on device level

2014-02-11 Thread Hans Dedecker
Device layer is informed by netlink events regarding the link layer status. Link layer status change results in a DEV_EVENT_LINK_UP/DEV_EVENT_LINK_DOWN broadcast event for a given device. Depends on uloop error callback patch. Solves issue reported in https://dev.openwrt.org/ticket/14590 Signed-

[OpenWrt-Devel] [PATCH 3/5] netifd: Link layer state awareness support on interface level

2014-02-11 Thread Hans Dedecker
The link layer state is monitored for a given interface; an interface will be setup when both enabled and link layer active. Likewise an interface will be teared down when either disabled or link layer down. Signed-off-by: Hans Dedecker --- alias.c | 16 +-- interface.c | 130 ++

[OpenWrt-Devel] [PATCH 1/5] netifd : Disable netlink auto ack

2014-02-11 Thread Hans Dedecker
Disable netlink auto ack when doing a delete in the get callback handler to avoid race conditions resulting into stalled message on the netlink socket. Solves issue reported in https://dev.openwrt.org/ticket/14590 Signed-off-by: Karl Vogel Acked-by: Hans Dedecker --- system-linux.c |5 +++-

[OpenWrt-Devel] [PATCH 1/5] system-linux : Disable netlink auto ack

2014-02-11 Thread Hans Dedecker
Disable netlink auto ack when doing a delete in the get callback handler to avoid race conditions resulting into stalled message on the netlink socket. Solves issue reported in https://dev.openwrt.org/ticket/14590 Signed-off-by: Karl Vogel Acked-by: Hans Dedecker --- system-linux.c |5 +++-

[OpenWrt-Devel] [PATCH] uloop: Add flag to allow callback to be called on error conditions.

2014-02-11 Thread Karl Vogel
In some conditions, an application is interested in errors happening on a file descriptor and might be able to resolve the issue in the callback function. This patch adds a flag to notify the uloop framework that errors should be passed to the callback function, instead of silently removing the f

[OpenWrt-Devel] [PATCH] ubus: Fix imbalance in lua stack push/pop of values.

2014-02-11 Thread Karl Vogel
The lua getglobal and rawgeti both push a value onto the lua stack, but they weren't being removed by the ubus_method_handler function, thus corrupting the lua stack. In case the specified method wasn't a function, the stack was also corrupted as the method name remained on the stack. Signed-off-