Re: [OpenWrt-Devel] [PATCH] ncurses: Fix building with gcc 5.1

2015-06-02 Thread Hauke Mehrtens
On 05/24/2015 06:32 PM, Martin Blumenstingl wrote: This patch is taken from the gentoo guys who extracted this from a large upstream commit (with many unrelated changes). Signed-off-by: Martin Blumenstingl martin.blumensti...@googlemail.com --- package/libs/ncurses/Makefile

Re: [OpenWrt-Devel] Regarding bridge multicast-to-unicast patch

2015-06-02 Thread Linus Lüssing
On Fri, Oct 24, 2014 at 06:35:27PM +0200, Felix Fietkau wrote: I'd like to get back to suppressing forwarding IGMPv2/MLDv1 reports: I just learned that we can avoid changing mac80211 at all for this. If we disable forwarding between stations in mac80211 and enable hairpin mode on the bridge

Re: [OpenWrt-Devel] Regarding bridge multicast-to-unicast patch

2015-06-02 Thread Steven Barth
Do you by chance remember what was the behavior of the Linux kernel's intenral querier was. I mean does it use the usual L3-address of the bridge as source? How does it behave in the presence of other queriers either on WiFi stas or other bridge ports? Thanks, Steven

Re: [OpenWrt-Devel] [PATCH 1/4] kernel: mips jump only works with memory less then 256mb. when enable HIGHMEM use long jump

2015-06-02 Thread John Crispin
Hi, do you plan to send the fixed version of this series ? John On 07/05/2015 04:25, wengbj wrote: Signed-off-by: wengbj fl.serv...@t-firefly.com --- .../patches-3.18/305-mips_module_reloc.patch |7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git

[OpenWrt-Devel] Bump up to olsrd v0.6.8 on Barrier Breaker?

2015-06-02 Thread Ben West
Would it be possible to push olsrd on Barrier Breaker up to to v0.6.8, i.e. same as in trunk/CC? The current version 0.6.6.2 is now EOL. https://github.com/openwrt-routing/packages/blob/for-14.07/olsrd/Makefile -- Forwarded message -- From: Ferry Huberts maili...@hupie.com Date:

[OpenWrt-Devel] [PATCH] [ 4/5] ramips: add xmit_more support

2015-06-02 Thread michael lee
use pktgen to verify on rt3662. can improve transmit rate. pkt_size 1500 burst 1 : 807Mb/sec burst 8 : 984Mb/sec pkt_size 60 burst 1 : 57Mb/sec burst 8 : 236Mb/sec Signed-off-by: michael lee igv...@gmail.com --- .../drivers/net/ethernet/ralink/ralink_soc_eth.c | 51 +-

[OpenWrt-Devel] [PATCH] [ 2/5] ramips: change ethernet napi interrupt sequence

2015-06-02 Thread michael lee
when open device. first ready napi software rx. then enable hardware interrupt. final start software tx queue to send data. Signed-off-by: michael lee igv...@gmail.com --- .../ramips/files/drivers/net/ethernet/ralink/ralink_soc_eth.c| 9 - 1 file changed, 4 insertions(+), 5

[OpenWrt-Devel] [PATCH] [ 1/5] ramips: fix ethernet vlan tx offload support check when delete

2015-06-02 Thread michael lee
Signed-off-by: michael lee igv...@gmail.com --- target/linux/ramips/files/drivers/net/ethernet/ralink/ralink_soc_eth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/ramips/files/drivers/net/ethernet/ralink/ralink_soc_eth.c

[OpenWrt-Devel] [PATCH] [ 5/5] ramips: collect rx related members to fe_rx_ring struct

2015-06-02 Thread michael lee
Signed-off-by: michael lee igv...@gmail.com --- .../drivers/net/ethernet/ralink/ralink_ethtool.c | 4 +- .../drivers/net/ethernet/ralink/ralink_soc_eth.c | 105 +++-- .../drivers/net/ethernet/ralink/ralink_soc_eth.h | 18 ++-- 3 files changed, 69 insertions(+), 58

[OpenWrt-Devel] [PATCH] [ 3/5] ramips: improve tx clean up and add fe_tx_ring struct

2015-06-02 Thread michael lee
if there is any new tx need to clean up. do it in next napi poll. collect tx related members to fe_tx_ring struct. for better cache usage and more readable. Signed-off-by: michael lee igv...@gmail.com --- .../drivers/net/ethernet/ralink/ralink_ethtool.c | 4 +-