Re: [tipc-discussion] [PATCH net-next 8/8] tipc: add hardware gso

2021-09-22 Thread Xin Long
On Fri, Sep 10, 2021 at 8:08 AM Jon Maloy wrote: > > > > On 06/07/2021 14:22, Xin Long wrote: > > Since there's no enough bit in netdev_features_t for > > NETIF_F_GSO_TIPC_BIT, and tipc is using the simliar > > code as sctp, this patch will reuse SKB_GSO_SCTP and > > NETIF_F_GSO_SCTP_BIT for

Re: [tipc-discussion] [PATCH net-next 8/8] tipc: add hardware gso

2021-09-09 Thread Jon Maloy
On 06/07/2021 14:22, Xin Long wrote: Since there's no enough bit in netdev_features_t for NETIF_F_GSO_TIPC_BIT, and tipc is using the simliar code as sctp, this patch will reuse SKB_GSO_SCTP and NETIF_F_GSO_SCTP_BIT for tipc. Signed-off-by: Xin Long --- include/linux/skbuff.h | 2 --

[tipc-discussion] [PATCH net-next 8/8] tipc: add hardware gso

2021-07-06 Thread Xin Long
Since there's no enough bit in netdev_features_t for NETIF_F_GSO_TIPC_BIT, and tipc is using the simliar code as sctp, this patch will reuse SKB_GSO_SCTP and NETIF_F_GSO_SCTP_BIT for tipc. Signed-off-by: Xin Long --- include/linux/skbuff.h | 2 -- net/tipc/node.c| 15 ++-