net/mlx5: fix typos in comments
Fixes: 299d7dc28c
("net/mlx5: add representor recognition on Linux 5.x")
Signed-off-by: Viacheslav Ovsiienko <viacheslavo@mellanox.com>
Acked-by: Shahaf Shuler <shahafs@mellanox.com>
This commit is contained in:
parent
c1656328db
commit
ae4eb7dc79
@ -155,7 +155,7 @@ static pthread_mutex_t mlx5_ibv_list_mutex = PTHREAD_MUTEX_INITIALIZER;
|
||||
* port dedicated IB device, the context will be used by only given
|
||||
* port due to unification.
|
||||
*
|
||||
* Routine first searches the context for the spesified IB device name,
|
||||
* Routine first searches the context for the specified IB device name,
|
||||
* if found the shared context assumed and reference counter is incremented.
|
||||
* If no context found the new one is created and initialized with specified
|
||||
* IB device context and parameters.
|
||||
@ -185,7 +185,7 @@ mlx5_alloc_shared_ibctx(const struct mlx5_dev_spawn_data *spawn)
|
||||
goto exit;
|
||||
}
|
||||
}
|
||||
/* No device found, we have to create new sharted context. */
|
||||
/* No device found, we have to create new shared context. */
|
||||
assert(spawn->max_port);
|
||||
sh = rte_zmalloc("ethdev shared ib context",
|
||||
sizeof(struct mlx5_ibv_shared) +
|
||||
@ -305,7 +305,7 @@ mlx5_free_shared_ibctx(struct mlx5_ibv_shared *sh)
|
||||
/**
|
||||
* Initialize DR related data within private structure.
|
||||
* Routine checks the reference counter and does actual
|
||||
* resources creation/iniialization only if counter is zero.
|
||||
* resources creation/initialization only if counter is zero.
|
||||
*
|
||||
* @param[in] priv
|
||||
* Pointer to the private device data structure.
|
||||
@ -1353,7 +1353,7 @@ mlx5_dev_spawn(struct rte_device *dpdk_dev,
|
||||
* Currently we support single E-Switch per PF configurations
|
||||
* only and vport_id field contains the vport index for
|
||||
* associated VF, which is deduced from representor port name.
|
||||
* For exapmple, let's have the IB device port 10, it has
|
||||
* For example, let's have the IB device port 10, it has
|
||||
* attached network device eth0, which has port name attribute
|
||||
* pf0vf2, we can deduce the VF number as 2, and set vport index
|
||||
* as 3 (2+1). This assigning schema should be changed if the
|
||||
@ -1595,7 +1595,7 @@ mlx5_dev_spawn(struct rte_device *dpdk_dev,
|
||||
mlx5_set_link_up(eth_dev);
|
||||
/*
|
||||
* Even though the interrupt handler is not installed yet,
|
||||
* interrupts will still trigger on the asyn_fd from
|
||||
* interrupts will still trigger on the async_fd from
|
||||
* Verbs context returned by ibv_open_device().
|
||||
*/
|
||||
mlx5_link_update(eth_dev, 0);
|
||||
@ -1772,7 +1772,7 @@ mlx5_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
|
||||
}
|
||||
ibv_match[nd] = NULL;
|
||||
if (!nd) {
|
||||
/* No device macthes, just complain and bail out. */
|
||||
/* No device matches, just complain and bail out. */
|
||||
mlx5_glue->free_device_list(ibv_list);
|
||||
DRV_LOG(WARNING,
|
||||
"no Verbs device matches PCI device " PCI_PRI_FMT ","
|
||||
@ -1805,7 +1805,7 @@ mlx5_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
|
||||
|
||||
if (np > 1) {
|
||||
/*
|
||||
* Signle IB device with multiple ports found,
|
||||
* Single IB device with multiple ports found,
|
||||
* it may be E-Switch master device and representors.
|
||||
* We have to perform identification trough the ports.
|
||||
*/
|
||||
|
@ -2916,7 +2916,7 @@ flow_tcf_translate_action_count(struct rte_eth_dev *dev __rte_unused,
|
||||
* VXLAN VNI in 24-bit wire format.
|
||||
*
|
||||
* @return
|
||||
* VXLAN VNI as a 32-bit integer value in network endian.
|
||||
* VXLAN VNI as a 32-bit integer value in network endianness.
|
||||
*/
|
||||
static inline rte_be32_t
|
||||
vxlan_vni_as_be32(const uint8_t vni[3])
|
||||
@ -4051,7 +4051,7 @@ flow_tcf_nl_ack(struct mlx5_flow_tcf_context *tcf,
|
||||
nlh->nlmsg_flags |= NLM_F_ACK;
|
||||
ret = mnl_socket_sendto(tcf->nl, nlh, nlh->nlmsg_len);
|
||||
if (ret <= 0) {
|
||||
/* Message send error occurres. */
|
||||
/* Message send error occurred. */
|
||||
rte_errno = errno;
|
||||
return -rte_errno;
|
||||
}
|
||||
@ -4307,7 +4307,7 @@ flow_tcf_collect_local_cb(const struct nlmsghdr *nlh, void *arg)
|
||||
* @param[in] tcf
|
||||
* Context object initialized by mlx5_flow_tcf_context_create().
|
||||
* @param[in] ifindex
|
||||
* Network inferface index to perform cleanup.
|
||||
* Network interface index to perform cleanup.
|
||||
*/
|
||||
static void
|
||||
flow_tcf_encap_local_cleanup(struct mlx5_flow_tcf_context *tcf,
|
||||
@ -4343,7 +4343,7 @@ flow_tcf_encap_local_cleanup(struct mlx5_flow_tcf_context *tcf,
|
||||
}
|
||||
|
||||
/**
|
||||
* Collect neigh permament rules on specified network device.
|
||||
* Collect neigh permanent rules on specified network device.
|
||||
* This is callback routine called by libmnl mnl_cb_run() in loop for
|
||||
* every message in received packet.
|
||||
*
|
||||
@ -4392,7 +4392,7 @@ flow_tcf_collect_neigh_cb(const struct nlmsghdr *nlh, void *arg)
|
||||
}
|
||||
if (!na_mac || !na_ip)
|
||||
return 1;
|
||||
/* Neigh rule with permenent attribute found. */
|
||||
/* Neigh rule with permanent attribute found. */
|
||||
size = MNL_ALIGN(sizeof(struct nlmsghdr)) +
|
||||
MNL_ALIGN(sizeof(struct ndmsg)) +
|
||||
SZ_NLATTR_DATA_OF(ETHER_ADDR_LEN) +
|
||||
@ -4431,7 +4431,7 @@ flow_tcf_collect_neigh_cb(const struct nlmsghdr *nlh, void *arg)
|
||||
* @param[in] tcf
|
||||
* Context object initialized by mlx5_flow_tcf_context_create().
|
||||
* @param[in] ifindex
|
||||
* Network inferface index to perform cleanup.
|
||||
* Network interface index to perform cleanup.
|
||||
*/
|
||||
static void
|
||||
flow_tcf_encap_neigh_cleanup(struct mlx5_flow_tcf_context *tcf,
|
||||
@ -4599,7 +4599,7 @@ flow_tcf_encap_iface_cleanup(struct mlx5_flow_tcf_context *tcf,
|
||||
* Note that an implicit route is maintained by the kernel due to the
|
||||
* presence of a peer address (IFA_ADDRESS).
|
||||
*
|
||||
* These rules are used for encapsultion only and allow to assign
|
||||
* These rules are used for encapsulation only and allow to assign
|
||||
* the outer tunnel source IP address.
|
||||
*
|
||||
* @param[in] tcf
|
||||
@ -5018,7 +5018,7 @@ flow_tcf_encap_irule_acquire(struct mlx5_flow_tcf_context *tcf,
|
||||
|
||||
/**
|
||||
* Releases VXLAN encap rules container by pointer. Decrements the
|
||||
* reference cointer and deletes the container if counter is zero.
|
||||
* reference counter and deletes the container if counter is zero.
|
||||
*
|
||||
* @param[in] irule
|
||||
* VXLAN rule container pointer to release.
|
||||
@ -5042,7 +5042,7 @@ flow_tcf_encap_irule_release(struct tcf_irule *iface)
|
||||
* @param[in] tcf
|
||||
* Context object initialized by mlx5_flow_tcf_context_create().
|
||||
* @param[in] vtep
|
||||
* Object represinting the network device to delete. Memory
|
||||
* Object representing the network device to delete. Memory
|
||||
* allocated for this object is freed by routine.
|
||||
*/
|
||||
static void
|
||||
@ -5268,7 +5268,7 @@ flow_tcf_decap_vtep_acquire(struct mlx5_flow_tcf_context *tcf,
|
||||
}
|
||||
|
||||
/**
|
||||
* Aqcuire target interface index for VXLAN tunneling encapsulation.
|
||||
* Acquire target interface index for VXLAN tunneling encapsulation.
|
||||
*
|
||||
* @param[in] tcf
|
||||
* Context object initialized by mlx5_flow_tcf_context_create().
|
||||
@ -5601,7 +5601,7 @@ flow_tcf_remove(struct rte_eth_dev *dev, struct rte_flow *flow)
|
||||
/**
|
||||
* Fetch the applied rule handle. This is callback routine called by
|
||||
* libmnl mnl_cb_run() in loop for every message in received packet.
|
||||
* When the NLM_F_ECHO flag i sspecified the kernel sends the created
|
||||
* When the NLM_F_ECHO flag is specified the kernel sends the created
|
||||
* rule descriptor back to the application and we can retrieve the
|
||||
* actual rule handle from updated descriptor.
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user