Re: [OpenWrt-Devel] Ethernet performance for transfers between VLANs (bcm47xx)

2014-03-06 Thread Will Sheppard
Hi, Did you manage to get any further with this? I have a seeming limit of 50Mbs with VLAN routed traffic on Download - ksoftirqd uses a lot of CPU. (Where the stock firmware was happy at 100Mbs and more. - router is F6D6230) Interestingly, Upload at 10Mbs, whilst less, shows no ksoftirqd at

[OpenWrt-Devel] [PATCH v1 0/7] Add custom TRX header option

2015-02-09 Thread Will Sheppard
are all compiled with the specified header. I have modified the kernel specifically for the brcm47xx based boards to ensure the mtd parser looks for the correct magic. NOTE: This function will, for other boards, fail. Will Sheppard (7): config: Add option to specify custom TRX header mtd: Add

[OpenWrt-Devel] [PATCH v1 7/7] mtd: Fix makefile to work with quilt as per wiki

2015-02-09 Thread Will Sheppard
Signed-off-by: Will Sheppard wshepp...@embedded-bits.co.uk --- package/system/mtd/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/package/system/mtd/Makefile b/package/system/mtd/Makefile index 91c4fac..5da27d1 100644 --- a/package/system/mtd/Makefile +++ b/package/system/mtd

[OpenWrt-Devel] [PATCH v1 4/7] trx: Add custom TRX option to trx firmware tool

2015-02-09 Thread Will Sheppard
Signed-off-by: Will Sheppard wshepp...@embedded-bits.co.uk --- tools/firmware-utils/Makefile | 4 tools/firmware-utils/src/trx.c | 10 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/tools/firmware-utils/Makefile b/tools/firmware-utils/Makefile index 83c51d7

[OpenWrt-Devel] [PATCH v1 1/7] config: Add option to specify custom TRX header

2015-02-09 Thread Will Sheppard
Signed-off-by: Will Sheppard wshepp...@embedded-bits.co.uk --- config/Config-images.in | 15 +++ 1 file changed, 15 insertions(+) diff --git a/config/Config-images.in b/config/Config-images.in index 5c2e79e..e4e4804 100644 --- a/config/Config-images.in +++ b/config/Config-images.in

[OpenWrt-Devel] [PATCH v1 5/7] mtd: Add debug showing header magic in use

2015-02-09 Thread Will Sheppard
Signed-off-by: Will Sheppard wshepp...@embedded-bits.co.uk --- package/system/mtd/src/trx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/system/mtd/src/trx.c b/package/system/mtd/src/trx.c index 1722cf2..776cb82 100644 --- a/package/system/mtd/src/trx.c +++ b

[OpenWrt-Devel] [PATCH v1 6/7] kernel: bcm47xx: Add custom TRX header option to kernel

2015-02-09 Thread Will Sheppard
Signed-off-by: Will Sheppard wshepp...@embedded-bits.co.uk --- .../patches-3.14/162-Belkin_custom_trx_magic.patch | 35 ++ 1 file changed, 35 insertions(+) create mode 100644 target/linux/brcm47xx/patches-3.14/162-Belkin_custom_trx_magic.patch diff --git a/target/linux

[OpenWrt-Devel] [PATCH v1 3/7] mtd: Fix: Use TRX_MAGIC define not hard-coded number

2015-02-09 Thread Will Sheppard
Signed-off-by: Will Sheppard wshepp...@embedded-bits.co.uk --- package/system/mtd/src/trx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/system/mtd/src/trx.c b/package/system/mtd/src/trx.c index 5d0f364..1722cf2 100644 --- a/package/system/mtd/src/trx.c +++ b

[OpenWrt-Devel] [PATCH v1 2/7] mtd: Add custom trx magic option to mtd tool

2015-02-09 Thread Will Sheppard
Signed-off-by: Will Sheppard wshepp...@embedded-bits.co.uk --- package/system/mtd/Makefile | 8 +++- package/system/mtd/src/trx.c | 6 ++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/package/system/mtd/Makefile b/package/system/mtd/Makefile index 8d7bb44..91c4fac 100644

Re: [OpenWrt-Devel] [PATCH v1 0/7] Add custom TRX header option

2015-02-09 Thread Will Sheppard
Hi - thanks for review; reply inline On 9 February 2015 at 20:52, Florian Fainelli flor...@openwrt.org wrote: On 09/02/15 08:29, Will Sheppard wrote: Patchset to essentially add custom TRX header to all firmware produced. This is most useful for the Belkin routers from my experience. I'm