Re: [PATCH v2 0/5] net: qrtr: Add distant node support

2020-11-11 Thread Manivannan Sadhasivam
On Tue, Nov 10, 2020 at 09:44:27AM -0800, Jakub Kicinski wrote: > On Tue, 10 Nov 2020 10:03:29 +0100 Loic Poulain wrote: > > On Mon, 9 Nov 2020 at 19:39, Jakub Kicinski wrote: > > > > > > On Mon, 9 Nov 2020 09:49:24 +0100 Loic Poulain wrote: > > > > > Looks like patch 1 is a bug fix and patches

Re: [PATCH v2 0/5] net: qrtr: Add distant node support

2020-11-11 Thread Jakub Kicinski
On Tue, 10 Nov 2020 09:44:27 -0800 Jakub Kicinski wrote: > Thanks! Sounds like net-next will work just fine, but won't you need > these changes in mhi-next, then? In which case you should send a pull > request based on Linus' tree so that both Mani and netdev can pull it > in. > > Mani, WDYT? App

Re: [PATCH v2 0/5] net: qrtr: Add distant node support

2020-11-10 Thread Jakub Kicinski
On Tue, 10 Nov 2020 10:03:29 +0100 Loic Poulain wrote: > On Mon, 9 Nov 2020 at 19:39, Jakub Kicinski wrote: > > > > On Mon, 9 Nov 2020 09:49:24 +0100 Loic Poulain wrote: > > > > Looks like patch 1 is a bug fix and patches 2-5 add a new feature. > > > > Is that correct? > > > > > > That's corre

Re: [PATCH v2 0/5] net: qrtr: Add distant node support

2020-11-10 Thread Loic Poulain
Hi Jakub, On Mon, 9 Nov 2020 at 19:39, Jakub Kicinski wrote: > > On Mon, 9 Nov 2020 09:49:24 +0100 Loic Poulain wrote: > > > Looks like patch 1 is a bug fix and patches 2-5 add a new feature. > > > Is that correct? > > > > That's correct, though strictly speaking 2-5 are also bug fix since remote

Re: [PATCH v2 0/5] net: qrtr: Add distant node support

2020-11-09 Thread Jakub Kicinski
On Mon, 9 Nov 2020 09:49:24 +0100 Loic Poulain wrote: > > Looks like patch 1 is a bug fix and patches 2-5 add a new feature. > > Is that correct? > > That's correct, though strictly speaking 2-5 are also bug fix since remote > node > communication is supposed to be supported in QRTR to be compa

Re: [PATCH v2 0/5] net: qrtr: Add distant node support

2020-11-09 Thread Loic Poulain
Hi Jakub, On Sun, 8 Nov 2020 at 01:26, Jakub Kicinski wrote: > > On Fri, 6 Nov 2020 18:33:25 +0100 Loic Poulain wrote: > > QRTR protocol allows a node to communicate with an other non-immediate > > node via an intermdediate immediate node acting as a 'bridge': > > > > node-0 <=> node-1 <=> node-

Re: [PATCH v2 0/5] net: qrtr: Add distant node support

2020-11-07 Thread Jakub Kicinski
On Fri, 6 Nov 2020 18:33:25 +0100 Loic Poulain wrote: > QRTR protocol allows a node to communicate with an other non-immediate > node via an intermdediate immediate node acting as a 'bridge': > > node-0 <=> node-1 <=> node-2 > > This is currently not supported in this upstream version and this

[PATCH v2 0/5] net: qrtr: Add distant node support

2020-11-06 Thread Loic Poulain
QRTR protocol allows a node to communicate with an other non-immediate node via an intermdediate immediate node acting as a 'bridge': node-0 <=> node-1 <=> node-2 This is currently not supported in this upstream version and this series aim to fix that. This series is V2 because changes 1, 2 and