]> git.baikalelectronics.ru Git - kernel.git/commit
Merge branch 'cpsw-emac-skb_put_padto'
authorDavid S. Miller <davem@davemloft.net>
Fri, 6 Aug 2021 09:26:55 +0000 (10:26 +0100)
committerDavid S. Miller <davem@davemloft.net>
Fri, 6 Aug 2021 09:26:55 +0000 (10:26 +0100)
commit7795ee20e375f4da468ece4e512bdff8eb37cb46
tree612beb2605dd8cd3264bd682b0782a0031ec3cc6
parenta9aa892158e8d6dfcec9793f2c1e8bf41fab4249
parentf3fdf4c3690d9e08d0847d2b1dc37249eab5e689
Merge branch 'cpsw-emac-skb_put_padto'

Grygorii Strashko says:

====================
net: ethernet: ti: cpsw/emac: switch to use skb_put_padto()

Now frame padding in TI TI CPSW/EMAC is implemented in a bit of entangled way as
frame SKB padded in drivers (without skb->len) while frame length fixed in CPDMA.
Things became even more confusing hence CPSW switcdev driver need to perform min
TX frame length correction in switch mode [1].

To avoid further confusion, make xmit path more clear and linear, and avoid
updating CPDMA configuration interface for min TX frame length correction
(which is not CPDMA job in general) this series switches TI CPSW/EMAC
drivers to skb_put_padto() instead of skb_padto() in their xmit path, so
skb->len also got updated properly and then removes TX frame length
fixup from CPDMA code.

[1] https://patchwork.kernel.org/project/netdevbpf/patch/20210611132732.10690-1-grygorii.strashko@ti.com/
====================

Signed-off-by: David S. Miller <davem@davemloft.net>