Re: [PATCH net-next v2 1/3] net: mhi: Add RX/TX fixup callbacks

2021-02-03 Thread Loic Poulain
Hi Jakub, On Thu, 4 Feb 2021 at 00:08, Jakub Kicinski wrote: > > Please put the maintainers or the list thru which you expect the patch > to be applied in the To: field of your emails. > > On Mon, 1 Feb 2021 22:05:40 +0100 Loic Poulain wrote: > > + if (proto && proto->tx_fixup) { > > +

Re: [PATCH net-next v2 1/3] net: mhi: Add RX/TX fixup callbacks

2021-02-03 Thread Jakub Kicinski
Please put the maintainers or the list thru which you expect the patch to be applied in the To: field of your emails. On Mon, 1 Feb 2021 22:05:40 +0100 Loic Poulain wrote: > + if (proto && proto->tx_fixup) { > + skb = proto->tx_fixup(mhi_netdev, skb); > + if (unlikely(

[PATCH net-next v2 1/3] net: mhi: Add RX/TX fixup callbacks

2021-02-01 Thread Loic Poulain
MHI can transport different protocols, some are handled at upper level, like IP and QMAP(rmnet/netlink), but others will need to be inside MHI net driver, like mbim. This change adds support for protocol rx/tx fixup callbacks registration, that can be used to encode/decode the targeted protocol. S