Re: Regression in v4.20 with net phy soft reset changes

2019-01-09 Thread Keerthy
On Thursday 10 January 2019 10:36 AM, Keerthy wrote: > > > On Thursday 10 January 2019 03:06 AM, Tony Lindgren wrote: >> Hi, >> >> * Heiner Kallweit [190109 19:28]: >>> On 09.01.2019 20:06, Tony Lindgren wrote: >>>> Commit 6e2d85ec0559 (&q

Re: AM43x boot broken on linux-next

2018-01-10 Thread Keerthy
On Wednesday 10 January 2018 03:47 PM, Keerthy wrote: > > > On Tuesday 09 January 2018 03:22 PM, Keerthy wrote: >> On Tuesday 09 January 2018 02:03 PM, Keerthy wrote: >>> Hi, >> >> Adding netdev@vger.kernel.org >> >>> >>> Seems l

Re: AM43x boot broken on linux-next

2018-01-10 Thread Keerthy
On Tuesday 09 January 2018 03:22 PM, Keerthy wrote: > On Tuesday 09 January 2018 02:03 PM, Keerthy wrote: >> Hi, > > Adding netdev@vger.kernel.org > >> >> Seems like AM437x boot is broken on latest linux-next. >> Log here: >> >> https://pastebi

Re: AM43x boot broken on linux-next

2018-01-09 Thread Keerthy
On Tuesday 09 January 2018 02:03 PM, Keerthy wrote: > Hi, Adding netdev@vger.kernel.org > > Seems like AM437x boot is broken on latest linux-next. > Log here: > > https://pastebin.ubuntu.com/26351906/ > > "Unable to handle kernel paging request at virtual address

Re: [PATCH] net: ethernet: ti: cpsw: Push the request_irq function to the end of probe

2017-07-20 Thread Keerthy
On Friday 21 July 2017 04:14 AM, Grygorii Strashko wrote: > > > On 07/20/2017 05:28 PM, David Miller wrote: >> From: Grygorii Strashko >> Date: Thu, 20 Jul 2017 11:08:09 -0500 >> >>> In general patch looks good to me, but it's really unexpected to >>> receive IRQs while CPSW is probing ;( >> >

[PATCH] net: ethernet: ti: cpsw: Push the request_irq function to the end of probe

2017-07-20 Thread Keerthy
to n->poll being NULL which is called as part of net_rx_action function. Suggested-by: Sekhar Nori Signed-off-by: Keerthy --- drivers/net/ethernet/ti/cpsw.c | 49 +- 1 file changed, 25 insertions(+), 24 deletions(-) diff --git a/drivers/net/ethernet

[PATCH v2] net: netcp: correct netcp_get_stats function signature

2017-01-10 Thread Keerthy
: error: initialization from incompatible pointer type .ndo_get_stats64= netcp_get_stats, Hence correct netcp_get_stats function signature as per the latest definition. Signed-off-by: Keerthy Fixes: 6a8162e99ef344fc("net: netcp: store network statistics in 64 bits") --- Cha

Re: [PATCH] net: netcp: correct netcp_get_stats function signature

2017-01-10 Thread Keerthy
On Tuesday 10 January 2017 10:22 PM, David Miller wrote: From: Keerthy Date: Tue, 10 Jan 2017 16:56:25 +0530 @@ -1909,7 +1909,7 @@ static int netcp_setup_tc(struct net_device *dev, u32 handle, __be16 proto, return 0; } -static struct rtnl_link_stats64 * +void netcp_get_stats

[PATCH] net: netcp: correct netcp_get_stats function signature

2017-01-10 Thread Keerthy
: error: initialization from incompatible pointer type .ndo_get_stats64= netcp_get_stats, Hence correct netcp_get_stats function signature as per the latest definition. Signed-off-by: Keerthy Fixes: 6a8162e99ef344fc("net: netcp: store network statistics in 64 bits") --- This is d