aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/mlx5
diff options
context:
space:
mode:
authorKonstantin Belousov <konstantinb@nvidia.com>2021-04-06 03:30:09 +0000
committerKonstantin Belousov <kib@FreeBSD.org>2021-07-12 09:34:37 +0000
commit1b36b3869f3be722dd15760ddcb4598b6dfe7cf7 (patch)
tree64acb419d282399001f37927ad8b9ed5ad02f6c8 /sys/dev/mlx5
parent16816f968917f15ba69fe56faafe4564439c6d47 (diff)
downloadsrc-1b36b3869f3be722dd15760ddcb4598b6dfe7cf7.tar.gz
src-1b36b3869f3be722dd15760ddcb4598b6dfe7cf7.zip
mlx5en: eliminate magic constant
Use sizeof(struct udphdr) where appropriate Reviewed by: hselasky Sponsored by: Mellanox Technologies/NVidia Networking MFC after: 1 week
Diffstat (limited to 'sys/dev/mlx5')
-rw-r--r--sys/dev/mlx5/mlx5_en/mlx5_en_tx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/mlx5/mlx5_en/mlx5_en_tx.c b/sys/dev/mlx5/mlx5_en/mlx5_en_tx.c
index 124d2afe414c..1ba47e44ae96 100644
--- a/sys/dev/mlx5/mlx5_en/mlx5_en_tx.c
+++ b/sys/dev/mlx5/mlx5_en/mlx5_en_tx.c
@@ -277,7 +277,7 @@ mlx5e_get_full_header_size(const struct mbuf *mb, const struct tcphdr **ppth)
goto tcp_packet;
case IPPROTO_UDP:
ip_hlen = ip->ip_hl << 2;
- eth_hdr_len += ip_hlen + 8;
+ eth_hdr_len += ip_hlen + sizeof(struct udphdr);
th = NULL;
goto udp_packet;
default:
@@ -293,7 +293,7 @@ mlx5e_get_full_header_size(const struct mbuf *mb, const struct tcphdr **ppth)
eth_hdr_len += sizeof(*ip6);
goto tcp_packet;
case IPPROTO_UDP:
- eth_hdr_len += sizeof(*ip6) + 8;
+ eth_hdr_len += sizeof(*ip6) + sizeof(struct udphdr);
th = NULL;
goto udp_packet;
default: