Re: [LEDE-DEV] ieee80211 phy0: rt2x00queue_write_tx_frame: Error - Dropping frame due to full tx queue...?

2018-05-14 Thread Kristian Evensen
Hi, On Mon, May 14, 2018 at 9:03 AM, Jamie Stuart wrote: > Hi Everyone, > Just wondering if anyone had made any progress into integrating this in trunk > OpenWRT. > It’s out of my skillset unfortunately! I don't know if the patch mentioned in the original email is in

Re: [LEDE-DEV] [PATCH] kernel: bump 4.14 to 4.14.40

2018-05-14 Thread Koen Vandeputte
Hi Stijn, This commit introduces regression due to upstream commit:  "USB: serial: option: reimplement interface masking"   CC [M]  drivers/usb/serial/option.o drivers/usb/serial/option.c:1923:35: error: 'cinterion_rmnet2_blacklist' undeclared here (not in a function)    .driver_info =

Re: [LEDE-DEV] [PATCH] kernel: bump 4.14 to 4.14.40

2018-05-14 Thread Koen Vandeputte
On 2018-05-14 15:14, Koen Vandeputte wrote: Hi Stijn, This commit introduces regression due to upstream commit:  "USB: serial: option: reimplement interface masking"   CC [M]  drivers/usb/serial/option.o drivers/usb/serial/option.c:1923:35: error: 'cinterion_rmnet2_blacklist' undeclared

Re: [LEDE-DEV] [PATCH] Add support for Flexible I/O Tester

2018-05-14 Thread John Crispin
On 13/05/18 20:58, Dragan Stancevic wrote: A lot of SoC boards come with integrated SATA it would be nice to be able to use fio to test performance of those boards. ___ Lede-dev mailing list Lede-dev@lists.infradead.org

Re: [LEDE-DEV] [OpenWrt-Devel] Wifi-related kernel-oops on mt7621 after 4.14 update

2018-05-14 Thread Kristian Evensen
Hello, On Wed, Apr 18, 2018 at 11:34 AM, Kristian Evensen wrote: > I will keep an eye on this router, just in case, but it seems the > problem is gone. Thanks for fixing it so fast! The router (WG3526) has been running fine for a while now, but after changing

[LEDE-DEV] patchwork pre 2018

2018-05-14 Thread John Crispin
Hi, I'd like to close everything in patchwork from 2017 and ask people to resubmit in case they still think its applicable. a few patches are still delegated. please remove your delegation if you do not plan to handle the patches in the coming days. I'll close everything on the weekend that

Re: [LEDE-DEV] [PATCH] Add support for Flexible I/O Tester

2018-05-14 Thread Dragan Stancevic
On 05/14/2018 08:52 AM, John Crispin wrote: > Hi Dragan, > > please propose this as a PR on the packages feed on github Hi John, thanks for the clarification, I looked at the github openwrt repo and it said that it's just a mirror of [https://git.openwrt.org/openwrt/openwrt.git] but admittedly

Re: [LEDE-DEV] patchwork pre 2018

2018-05-14 Thread Rosen Penev
On Mon, May 14, 2018 at 8:10 AM, John Crispin wrote: > Hi, > > I'd like to close everything in patchwork from 2017 and ask people to > resubmit in case they still think its applicable. a few patches are still > delegated. please remove your delegation if you do not plan to

[LEDE-DEV] [PATCH 2/5] ramips: pci: sync with staging driver

2018-05-14 Thread Rosen Penev
This is an amagalmation of two upstream commits dealing with whitespace and dead code removal. I'm synching instead of having two separate commits as they go out of order compared to previous commits here. Tested on GnuBee PC1. Signed-off-by: Rosen Penev ---

[LEDE-DEV] [PATCH 5/5] staging: mt7621-eth: fix return value check in mt7621_gsw_probe()

2018-05-14 Thread Rosen Penev
From: Wei Yongjun In case of error, the function devm_ioremap_resource() returns ERR_PTR() and never returns NULL. The NULL test in the return value check should be replaced with IS_ERR(). Fixes: f079b6406348 ("staging: mt7621-eth: add gigabit switch driver (GSW)")

[LEDE-DEV] [PATCH 4/5] staging: mt7621-eth: fix return value check in mtk_connect_phy_node()

2018-05-14 Thread Rosen Penev
From: Wei Yongjun In case of error, the function of_phy_connect() returns NULL pointer not ERR_PTR(). The IS_ERR() test in the return value check should be replaced with NULL test. Fixes: e3cbf478f846 ("staging: mt7621-eth: add the drivers core files") Signed-off-by: Wei

[LEDE-DEV] [PATCH 3/5] staging: mt7621-eth: fix return value check in mtk_probe()

2018-05-14 Thread Rosen Penev
From: Wei Yongjun In case of error, the function devm_ioremap_resource() returns ERR_PTR() and never returns NULL. The NULL test in the return value check should be replaced with IS_ERR(). Fixes: e3cbf478f846 ("staging: mt7621-eth: add the drivers core files")

[LEDE-DEV] SPI on Omega2p

2018-05-14 Thread Lev
Dear list, I'm playing with an omega2p hardware with OpenWRT 17.01.4 on it. I installed the kmod-spi-dev package to control the SPI interface of the device. I get this on the console, when the module is loaded: [9.114921] spidev spi32766.1: buggy DT: spidev listed directly in DT [

Re: [LEDE-DEV] Enable DCO check on Github OpenWrt organisation

2018-05-14 Thread Stijn Tintel
On 09-05-18 03:03, Etienne Champetier wrote: > Hi All, > > 2018-01-18 13:59 GMT-08:00 Etienne Champetier : >> Hi All, >> >> Could someone enable this https://github.com/integration/dco on the >> whole OpenWrt github org? (or at least on the packages repo) > Friendly

Re: [LEDE-DEV] [PATCH] fstools: add middle layer (original root overlay) to overlayfs when pivot the /overlay to the USB disk.

2018-05-14 Thread John Crispin
On 11/05/18 11:18, Andrzej Lossowsk wrote: Currently after pivot to the USB disk (extroot), configuration and data from original root overlay are gone. Still accessible, but all previous configuration steps must be repeated (or data from original root overlay must be copied to new USB disk