* [PATCH] net: hip04: use 16-bit byte order for HI13X1 TX fields
@ 2026-09-05 13:29 hpp.iscas
2026-09-08 13:11 ` Simon Horman
2026-09-09 11:25 ` Jijie Shao
0 siblings, 2 replies; 3+ messages in thread
From: hpp.iscas @ 2026-09-05 13:29 UTC (permalink / raw)
To: Jian Shen
Cc: hpp.iscas, Jijie Shao, Andrew Lunn, David S. Miller,
Eric Dumazet, Jakub Kicinski, Paolo Abeni, netdev, linux-kernel,
Jiangfeng Xiao
The HI13X1 transmit descriptor stores send_size and data_offset in u16
fields, but hip04_mac_start_xmit() converts both values with
cpu_to_be32() before assigning them. On little-endian systems the
assignment truncates the converted value, leaving neither field with the
intended 16-bit big-endian representation.
Use cpu_to_be16() for the two HI13X1 fields. Keep the original 32-bit
conversion for the other descriptor format.
Fixes: d413779cdd93 ("net: hisilicon: Add an tx_desc to adapt HI13X1_GMAC")
Signed-off-by: hpp.iscas <hppiscas@163.com>
---
drivers/net/ethernet/hisilicon/hip04_eth.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/drivers/net/ethernet/hisilicon/hip04_eth.c b/drivers/net/ethernet/hisilicon/hip04_eth.c
index fc2c47d..2920985 100644
--- a/drivers/net/ethernet/hisilicon/hip04_eth.c
+++ b/drivers/net/ethernet/hisilicon/hip04_eth.c
@@ -527,13 +527,14 @@ hip04_mac_start_xmit(struct sk_buff *skb, struct net_device *ndev)
priv->tx_skb[tx_head] = skb;
priv->tx_phys[tx_head] = phys;
- desc->send_size = (__force u32)cpu_to_be32(skb->len);
#if defined(CONFIG_HI13X1_GMAC)
+ desc->send_size = (__force u16)cpu_to_be16(skb->len);
desc->cfg = (__force u32)cpu_to_be32(TX_CLEAR_WB | TX_FINISH_CACHE_INV
| TX_RELEASE_TO_PPE | priv->port << TX_POOL_SHIFT);
- desc->data_offset = (__force u32)cpu_to_be32(phys & SOC_CACHE_LINE_MASK);
+ desc->data_offset = (__force u16)cpu_to_be16(phys & SOC_CACHE_LINE_MASK);
desc->send_addr = (__force u32)cpu_to_be32(phys & ~SOC_CACHE_LINE_MASK);
#else
+ desc->send_size = (__force u32)cpu_to_be32(skb->len);
desc->cfg = (__force u32)cpu_to_be32(TX_CLEAR_WB | TX_FINISH_CACHE_INV);
desc->send_addr = (__force u32)cpu_to_be32(phys);
#endif
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] net: hip04: use 16-bit byte order for HI13X1 TX fields
2026-09-05 13:29 [PATCH] net: hip04: use 16-bit byte order for HI13X1 TX fields hpp.iscas
@ 2026-09-08 13:11 ` Simon Horman
2026-09-09 11:25 ` Jijie Shao
1 sibling, 0 replies; 3+ messages in thread
From: Simon Horman @ 2026-09-08 13:11 UTC (permalink / raw)
To: hpp.iscas
Cc: Jian Shen, Jijie Shao, Andrew Lunn, David S. Miller,
Eric Dumazet, Jakub Kicinski, Paolo Abeni, netdev, linux-kernel,
Jiangfeng Xiao
On Sat, Sep 05, 2026 at 09:29:58PM +0800, hpp.iscas wrote:
> The HI13X1 transmit descriptor stores send_size and data_offset in u16
> fields, but hip04_mac_start_xmit() converts both values with
> cpu_to_be32() before assigning them. On little-endian systems the
> assignment truncates the converted value, leaving neither field with the
> intended 16-bit big-endian representation.
>
> Use cpu_to_be16() for the two HI13X1 fields. Keep the original 32-bit
> conversion for the other descriptor format.
I am curious to know a) how this bug was found b) how it seems to have
gone otherwise unnoticed since 2019.
> Fixes: d413779cdd93 ("net: hisilicon: Add an tx_desc to adapt HI13X1_GMAC")
> Signed-off-by: hpp.iscas <hppiscas@163.com>
Please consider using your name in the From field and the Signed-off-by tag.
The fix itself looks good to me:
Reviewed-by: Simon Horman <horms@kernel.org>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] net: hip04: use 16-bit byte order for HI13X1 TX fields
2026-09-05 13:29 [PATCH] net: hip04: use 16-bit byte order for HI13X1 TX fields hpp.iscas
2026-09-08 13:11 ` Simon Horman
@ 2026-09-09 11:25 ` Jijie Shao
1 sibling, 0 replies; 3+ messages in thread
From: Jijie Shao @ 2026-09-09 11:25 UTC (permalink / raw)
To: hpp.iscas, Jian Shen
Cc: shaojijie, Andrew Lunn, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, netdev, linux-kernel,
Jiangfeng Xiao
on 2026/9/5 21:29, hpp.iscas wrote:
> The HI13X1 transmit descriptor stores send_size and data_offset in u16
>
> fields, but hip04_mac_start_xmit() converts both values with
>
> cpu_to_be32() before assigning them. On little-endian systems the
>
> assignment truncates the converted value, leaving neither field with the
>
> intended 16-bit big-endian representation.
>
>
>
> Use cpu_to_be16() for the two HI13X1 fields. Keep the original 32-bit
>
> conversion for the other descriptor format.
>
>
>
> Fixes: d413779cdd93 ("net: hisilicon: Add an tx_desc to adapt HI13X1_GMAC")
>
> Signed-off-by: hpp.iscas <hppiscas@163.com>
Thanks!
Reviewed-by: Jijie Shao <shaojijie@huawei.com>
>
> ---
>
> drivers/net/ethernet/hisilicon/hip04_eth.c | 5 +++--
>
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
>
>
> diff --git a/drivers/net/ethernet/hisilicon/hip04_eth.c b/drivers/net/ethernet/hisilicon/hip04_eth.c
>
> index fc2c47d..2920985 100644
>
> --- a/drivers/net/ethernet/hisilicon/hip04_eth.c
>
> +++ b/drivers/net/ethernet/hisilicon/hip04_eth.c
>
> @@ -527,13 +527,14 @@ hip04_mac_start_xmit(struct sk_buff *skb, struct net_device *ndev)
>
> priv->tx_skb[tx_head] = skb;
>
> priv->tx_phys[tx_head] = phys;
>
>
>
> - desc->send_size = (__force u32)cpu_to_be32(skb->len);
>
> #if defined(CONFIG_HI13X1_GMAC)
>
> + desc->send_size = (__force u16)cpu_to_be16(skb->len);
>
> desc->cfg = (__force u32)cpu_to_be32(TX_CLEAR_WB | TX_FINISH_CACHE_INV
>
> | TX_RELEASE_TO_PPE | priv->port << TX_POOL_SHIFT);
>
> - desc->data_offset = (__force u32)cpu_to_be32(phys & SOC_CACHE_LINE_MASK);
>
> + desc->data_offset = (__force u16)cpu_to_be16(phys & SOC_CACHE_LINE_MASK);
>
> desc->send_addr = (__force u32)cpu_to_be32(phys & ~SOC_CACHE_LINE_MASK);
>
> #else
>
> + desc->send_size = (__force u32)cpu_to_be32(skb->len);
>
> desc->cfg = (__force u32)cpu_to_be32(TX_CLEAR_WB | TX_FINISH_CACHE_INV);
>
> desc->send_addr = (__force u32)cpu_to_be32(phys);
>
> #endif
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-09-09 11:25 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-05 13:29 [PATCH] net: hip04: use 16-bit byte order for HI13X1 TX fields hpp.iscas
2026-09-08 13:11 ` Simon Horman
2026-09-09 11:25 ` Jijie Shao
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®