svn commit: r306253 - stable/10/sys/dev/mlx5/mlx5_en
Hans Petter Selasky
hselasky at FreeBSD.org
Fri Sep 23 08:35:12 UTC 2016
Author: hselasky
Date: Fri Sep 23 08:35:11 2016
New Revision: 306253
URL: https://svnweb.freebsd.org/changeset/base/306253
Log:
MFC r305876:
mlx5en: Remove unused pdev pointer.
Sponsored by: Mellanox Technologies
Modified:
stable/10/sys/dev/mlx5/mlx5_en/en.h
stable/10/sys/dev/mlx5/mlx5_en/mlx5_en_main.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sys/dev/mlx5/mlx5_en/en.h
==============================================================================
--- stable/10/sys/dev/mlx5/mlx5_en/en.h Fri Sep 23 08:34:28 2016 (r306252)
+++ stable/10/sys/dev/mlx5/mlx5_en/en.h Fri Sep 23 08:35:11 2016 (r306253)
@@ -473,7 +473,6 @@ struct mlx5e_rq {
bus_dma_tag_t dma_tag;
u32 wqe_sz;
struct mlx5e_rq_mbuf *mbuf;
- struct device *pdev;
struct ifnet *ifp;
struct mlx5e_rq_stats stats;
struct mlx5e_cq cq;
@@ -542,7 +541,6 @@ struct mlx5e_sq {
struct ifnet *ifp;
u32 sqn;
u32 bf_buf_size;
- struct device *pdev;
u32 mkey_be;
/* control path */
@@ -563,7 +561,6 @@ struct mlx5e_channel {
/* data path */
struct mlx5e_rq rq;
struct mlx5e_sq sq[MLX5E_MAX_TX_NUM_TC];
- struct device *pdev;
struct ifnet *ifp;
u32 mkey_be;
u8 num_tc;
Modified: stable/10/sys/dev/mlx5/mlx5_en/mlx5_en_main.c
==============================================================================
--- stable/10/sys/dev/mlx5/mlx5_en/mlx5_en_main.c Fri Sep 23 08:34:28 2016 (r306252)
+++ stable/10/sys/dev/mlx5/mlx5_en/mlx5_en_main.c Fri Sep 23 08:35:11 2016 (r306253)
@@ -669,7 +669,6 @@ mlx5e_create_rq(struct mlx5e_channel *c,
wqe->data.byte_count = cpu_to_be32(byte_count | MLX5_HW_START_PADDING);
}
- rq->pdev = c->pdev;
rq->ifp = c->ifp;
rq->channel = c;
rq->ix = c->ix;
@@ -968,7 +967,6 @@ mlx5e_create_sq(struct mlx5e_channel *c,
if (err)
goto err_sq_wq_destroy;
- sq->pdev = c->pdev;
sq->mkey_be = c->mkey_be;
sq->ifp = priv->ifp;
sq->priv = priv;
@@ -1492,7 +1490,6 @@ mlx5e_open_channel(struct mlx5e_priv *pr
c->priv = priv;
c->ix = ix;
c->cpu = 0;
- c->pdev = &priv->mdev->pdev->dev;
c->ifp = priv->ifp;
c->mkey_be = cpu_to_be32(priv->mr.key);
c->num_tc = priv->num_tc;
More information about the svn-src-all
mailing list