]> git.droids-corp.org - dpdk.git/commitdiff
net/mlx5: fix typos in comments
authorDekel Peled <dekelp@mellanox.com>
Thu, 18 Jul 2019 19:40:52 +0000 (22:40 +0300)
committerFerruh Yigit <ferruh.yigit@intel.com>
Tue, 23 Jul 2019 12:31:36 +0000 (14:31 +0200)
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>
drivers/net/mlx5/mlx5.h
drivers/net/mlx5/mlx5_flow.c
drivers/net/mlx5/mlx5_rxq.c
drivers/net/mlx5/mlx5_txq.c

index 2bd2aa6d54a6d2579f93fc44299ff6091de881b3..62303713567be2f449837ded23e2909296a0c858 100644 (file)
@@ -232,7 +232,7 @@ struct mlx5_dev_config {
 };
 
 /**
- * Type of objet being allocated.
+ * Type of object being allocated.
  */
 enum mlx5_verbs_alloc_type {
        MLX5_VERBS_ALLOC_TYPE_NONE,
index 710998554da290d02566f916296f9e783003ccc1..e082cbbd40fb31dad1f0a5a97acc6c56f5ed5428 100644 (file)
@@ -473,7 +473,7 @@ mlx5_flow_item_acceptable(const struct rte_flow_item *item,
  *   Item hash fields.
  *
  * @return
- *   The hash fileds that should be used.
+ *   The hash fields that should be used.
  */
 uint64_t
 mlx5_flow_hashfields_adjust(struct mlx5_flow *dev_flow,
index 3e82f71e34189245daf3a11f7c2c8e7de2d3c301..39b8b7a8f7e32d67f4acb7ca60907d7b0aea10c2 100644 (file)
@@ -1122,7 +1122,7 @@ mlx5_mprq_free_mp(struct rte_eth_dev *dev)
                dev->data->port_id, mp->name);
        /*
         * 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
         * creates and destroys with holding Rx packets, this can happen.
         *
index 77410955f1123cf5d8f59386f53a0a28d383b233..82493d7cb261e97d55f10f83d2721c7ad9ee74c0 100644 (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.
  *