You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
136 lines
6.1 KiB
136 lines
6.1 KiB
From d5a140965c323fce16afc0e91596eaa3480ea1f0 Mon Sep 17 00:00:00 2001
|
|
From: Alaa Hleihel <ahleihel@redhat.com>
|
|
Date: Mon, 1 Jun 2020 15:40:50 -0400
|
|
Subject: [PATCH 296/312] [netdrv] net/mlx5: Accel: fpga tls fix cast to __be64
|
|
and incorrect argument types
|
|
|
|
Message-id: <20200601154102.25980-28-ahleihel@redhat.com>
|
|
Patchwork-id: 315732
|
|
Patchwork-instance: patchwork
|
|
O-Subject: [RHEL8.3 BZ 1842258 27/39] net/mlx5: Accel: fpga tls fix cast to __be64 and incorrect argument types
|
|
Bugzilla: 1842258
|
|
RH-Acked-by: Honggang Li <honli@redhat.com>
|
|
RH-Acked-by: Kamal Heib <kheib@redhat.com>
|
|
RH-Acked-by: Marcelo Leitner <mleitner@redhat.com>
|
|
RH-Acked-by: Jarod Wilson <jarod@redhat.com>
|
|
|
|
Bugzilla: http://bugzilla.redhat.com/1842258
|
|
Upstream: git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git , branch: master
|
|
|
|
commit aee3e9c457f172870bdb87e675faf6c4528190b1
|
|
Author: Saeed Mahameed <saeedm@mellanox.com>
|
|
Date: Thu May 28 18:42:40 2020 -0700
|
|
|
|
net/mlx5: Accel: fpga tls fix cast to __be64 and incorrect argument types
|
|
|
|
tls handle and rcd_sn are actually big endian and not in host format.
|
|
Fix that.
|
|
|
|
Fix the following sparse warnings:
|
|
drivers/net/ethernet/mellanox/mlx5/core/en_accel/tls.c:177:21:
|
|
warning: cast to restricted __be64
|
|
|
|
drivers/net/ethernet/mellanox/mlx5/core/en_accel/tls.c:178:52:
|
|
warning: incorrect type in argument 2 (different base types)
|
|
expected unsigned int [usertype] handle
|
|
got restricted __be32 [usertype] handle
|
|
|
|
Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
|
|
|
|
Signed-off-by: Alaa Hleihel <ahleihel@redhat.com>
|
|
Signed-off-by: Frantisek Hrbata <fhrbata@redhat.com>
|
|
---
|
|
drivers/net/ethernet/mellanox/mlx5/core/accel/tls.c | 4 ++--
|
|
drivers/net/ethernet/mellanox/mlx5/core/accel/tls.h | 8 ++++----
|
|
drivers/net/ethernet/mellanox/mlx5/core/en_accel/tls.c | 2 +-
|
|
drivers/net/ethernet/mellanox/mlx5/core/fpga/tls.c | 4 ++--
|
|
drivers/net/ethernet/mellanox/mlx5/core/fpga/tls.h | 4 ++--
|
|
5 files changed, 11 insertions(+), 11 deletions(-)
|
|
|
|
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/accel/tls.c b/drivers/net/ethernet/mellanox/mlx5/core/accel/tls.c
|
|
index cab708af3422..cbf3d76c05a8 100644
|
|
--- a/drivers/net/ethernet/mellanox/mlx5/core/accel/tls.c
|
|
+++ b/drivers/net/ethernet/mellanox/mlx5/core/accel/tls.c
|
|
@@ -56,8 +56,8 @@ void mlx5_accel_tls_del_flow(struct mlx5_core_dev *mdev, u32 swid,
|
|
mlx5_fpga_tls_del_flow(mdev, swid, GFP_KERNEL, direction_sx);
|
|
}
|
|
|
|
-int mlx5_accel_tls_resync_rx(struct mlx5_core_dev *mdev, u32 handle, u32 seq,
|
|
- u64 rcd_sn)
|
|
+int mlx5_accel_tls_resync_rx(struct mlx5_core_dev *mdev, __be32 handle,
|
|
+ u32 seq, __be64 rcd_sn)
|
|
{
|
|
return mlx5_fpga_tls_resync_rx(mdev, handle, seq, rcd_sn);
|
|
}
|
|
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/accel/tls.h b/drivers/net/ethernet/mellanox/mlx5/core/accel/tls.h
|
|
index e09bc3858d57..aefea467f7b3 100644
|
|
--- a/drivers/net/ethernet/mellanox/mlx5/core/accel/tls.h
|
|
+++ b/drivers/net/ethernet/mellanox/mlx5/core/accel/tls.h
|
|
@@ -109,8 +109,8 @@ int mlx5_accel_tls_add_flow(struct mlx5_core_dev *mdev, void *flow,
|
|
bool direction_sx);
|
|
void mlx5_accel_tls_del_flow(struct mlx5_core_dev *mdev, u32 swid,
|
|
bool direction_sx);
|
|
-int mlx5_accel_tls_resync_rx(struct mlx5_core_dev *mdev, u32 handle, u32 seq,
|
|
- u64 rcd_sn);
|
|
+int mlx5_accel_tls_resync_rx(struct mlx5_core_dev *mdev, __be32 handle,
|
|
+ u32 seq, __be64 rcd_sn);
|
|
bool mlx5_accel_is_tls_device(struct mlx5_core_dev *mdev);
|
|
u32 mlx5_accel_tls_device_caps(struct mlx5_core_dev *mdev);
|
|
int mlx5_accel_tls_init(struct mlx5_core_dev *mdev);
|
|
@@ -125,8 +125,8 @@ mlx5_accel_tls_add_flow(struct mlx5_core_dev *mdev, void *flow,
|
|
bool direction_sx) { return -ENOTSUPP; }
|
|
static inline void mlx5_accel_tls_del_flow(struct mlx5_core_dev *mdev, u32 swid,
|
|
bool direction_sx) { }
|
|
-static inline int mlx5_accel_tls_resync_rx(struct mlx5_core_dev *mdev, u32 handle,
|
|
- u32 seq, u64 rcd_sn) { return 0; }
|
|
+static inline int mlx5_accel_tls_resync_rx(struct mlx5_core_dev *mdev, __be32 handle,
|
|
+ u32 seq, __be64 rcd_sn) { return 0; }
|
|
static inline bool mlx5_accel_is_tls_device(struct mlx5_core_dev *mdev)
|
|
{
|
|
return mlx5_accel_is_ktls_device(mdev);
|
|
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en_accel/tls.c b/drivers/net/ethernet/mellanox/mlx5/core/en_accel/tls.c
|
|
index fba561ffe1d4..c01c17a5c6de 100644
|
|
--- a/drivers/net/ethernet/mellanox/mlx5/core/en_accel/tls.c
|
|
+++ b/drivers/net/ethernet/mellanox/mlx5/core/en_accel/tls.c
|
|
@@ -167,7 +167,7 @@ static int mlx5e_tls_resync(struct net_device *netdev, struct sock *sk,
|
|
struct tls_context *tls_ctx = tls_get_ctx(sk);
|
|
struct mlx5e_priv *priv = netdev_priv(netdev);
|
|
struct mlx5e_tls_offload_context_rx *rx_ctx;
|
|
- u64 rcd_sn = *(u64 *)rcd_sn_data;
|
|
+ __be64 rcd_sn = *(__be64 *)rcd_sn_data;
|
|
|
|
if (WARN_ON_ONCE(direction != TLS_OFFLOAD_CTX_DIR_RX))
|
|
return -EINVAL;
|
|
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/fpga/tls.c b/drivers/net/ethernet/mellanox/mlx5/core/fpga/tls.c
|
|
index 22a2ef111514..29b7339ebfa3 100644
|
|
--- a/drivers/net/ethernet/mellanox/mlx5/core/fpga/tls.c
|
|
+++ b/drivers/net/ethernet/mellanox/mlx5/core/fpga/tls.c
|
|
@@ -194,8 +194,8 @@ static void mlx5_fpga_tls_flow_to_cmd(void *flow, void *cmd)
|
|
MLX5_GET(tls_flow, flow, direction_sx));
|
|
}
|
|
|
|
-int mlx5_fpga_tls_resync_rx(struct mlx5_core_dev *mdev, u32 handle, u32 seq,
|
|
- u64 rcd_sn)
|
|
+int mlx5_fpga_tls_resync_rx(struct mlx5_core_dev *mdev, __be32 handle,
|
|
+ u32 seq, __be64 rcd_sn)
|
|
{
|
|
struct mlx5_fpga_dma_buf *buf;
|
|
int size = sizeof(*buf) + MLX5_TLS_COMMAND_SIZE;
|
|
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/fpga/tls.h b/drivers/net/ethernet/mellanox/mlx5/core/fpga/tls.h
|
|
index 3b2e37bf76fe..5714cf391d1b 100644
|
|
--- a/drivers/net/ethernet/mellanox/mlx5/core/fpga/tls.h
|
|
+++ b/drivers/net/ethernet/mellanox/mlx5/core/fpga/tls.h
|
|
@@ -68,7 +68,7 @@ static inline u32 mlx5_fpga_tls_device_caps(struct mlx5_core_dev *mdev)
|
|
return mdev->fpga->tls->caps;
|
|
}
|
|
|
|
-int mlx5_fpga_tls_resync_rx(struct mlx5_core_dev *mdev, u32 handle, u32 seq,
|
|
- u64 rcd_sn);
|
|
+int mlx5_fpga_tls_resync_rx(struct mlx5_core_dev *mdev, __be32 handle,
|
|
+ u32 seq, __be64 rcd_sn);
|
|
|
|
#endif /* __MLX5_FPGA_TLS_H__ */
|
|
--
|
|
2.13.6
|
|
|