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) {
> > +
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(
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