net/mlx5: fix typos in comments

Some spelling mistakes were found in comments.
This patch fixes them.

Fixes: d10b09db0a45 ("net/mlx5: fix allocation when no memory on device NUMA node")
Fixes: fc2c498ccb94 ("net/mlx5: add Direct Verbs translate items")
Fixes: 7d6bf6b866b8 ("net/mlx5: add Multi-Packet Rx support")
Fixes: f6d9ab4e769f ("net/mlx5: check Tx queue size overflow")
Cc: stable@dpdk.org

Signed-off-by: Dekel Peled <dekelp@mellanox.com>
Acked-by: Viacheslav Ovsiienko <viacheslavo@mellanox.com>
This commit is contained in:
Dekel Peled 2019-07-18 22:40:52 +03:00 committed by Ferruh Yigit
parent 187ec068d5
commit 42280dd91b
4 changed files with 4 additions and 4 deletions

View File

@ -232,7 +232,7 @@ struct mlx5_dev_config {
}; };
/** /**
* Type of objet being allocated. * Type of object being allocated.
*/ */
enum mlx5_verbs_alloc_type { enum mlx5_verbs_alloc_type {
MLX5_VERBS_ALLOC_TYPE_NONE, MLX5_VERBS_ALLOC_TYPE_NONE,

View File

@ -473,7 +473,7 @@ mlx5_flow_item_acceptable(const struct rte_flow_item *item,
* Item hash fields. * Item hash fields.
* *
* @return * @return
* The hash fileds that should be used. * The hash fields that should be used.
*/ */
uint64_t uint64_t
mlx5_flow_hashfields_adjust(struct mlx5_flow *dev_flow, mlx5_flow_hashfields_adjust(struct mlx5_flow *dev_flow,

View File

@ -1122,7 +1122,7 @@ mlx5_mprq_free_mp(struct rte_eth_dev *dev)
dev->data->port_id, mp->name); dev->data->port_id, mp->name);
/* /*
* If a buffer in the pool has been externally attached to a mbuf and it * If a buffer in the pool has been externally attached to a mbuf and it
* is still in use by application, destroying the Rx qeueue can spoil * is still in use by application, destroying the Rx queue can spoil
* the packet. It is unlikely to happen but if application dynamically * the packet. It is unlikely to happen but if application dynamically
* creates and destroys with holding Rx packets, this can happen. * creates and destroys with holding Rx packets, this can happen.
* *

View File

@ -669,7 +669,7 @@ mlx5_txq_ibv_verify(struct rte_eth_dev *dev)
} }
/** /**
* Calcuate the total number of WQEBB for Tx queue. * Calculate the total number of WQEBB for Tx queue.
* *
* Simplified version of calc_sq_size() in rdma-core. * Simplified version of calc_sq_size() in rdma-core.
* *