Skip to content

Commit

Permalink
fix various typos found by Lintian
Browse files Browse the repository at this point in the history
[ upstream commit 611faa5 ]

Signed-off-by: Luca Boccassi <bluca@debian.org>
  • Loading branch information
bluca authored and kevintraynor committed May 27, 2020
1 parent b1f89a7 commit b54911b
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions app/test-pmd/cmdline.c
Expand Up @@ -101,7 +101,7 @@ static void cmd_help_brief_parsed(__attribute__((unused)) void *parsed_result,
" help ports : Configuring ports.\n"
" help registers : Reading and setting port registers.\n"
" help filters : Filters configuration help.\n"
" help traffic_management : Traffic Management commmands.\n"
" help traffic_management : Traffic Management commands.\n"
" help all : All of the above sections.\n\n"
);

Expand Down Expand Up @@ -4932,7 +4932,7 @@ cmd_gso_size_parsed(void *parsed_result,

if (test_done == 0) {
printf("Before setting GSO segsz, please first"
" stop fowarding\n");
" stop forwarding\n");
return;
}

Expand Down
2 changes: 1 addition & 1 deletion drivers/compress/octeontx/otx_zip_pmd.c
Expand Up @@ -406,7 +406,7 @@ zip_pmd_qp_setup(struct rte_compressdev *dev, uint16_t qp_id,

qp->name = name;

/* Create completion queue upto max_inflight_ops */
/* Create completion queue up to max_inflight_ops */
qp->processed_pkts = zip_pmd_qp_create_processed_pkts_ring(qp,
max_inflight_ops, socket_id);
if (qp->processed_pkts == NULL)
Expand Down
2 changes: 1 addition & 1 deletion drivers/event/dpaa2/dpaa2_eventdev.c
Expand Up @@ -379,7 +379,7 @@ dpaa2_eventdev_info_get(struct rte_eventdev *dev,
dev_info->max_event_priority_levels =
DPAA2_EVENT_MAX_EVENT_PRIORITY_LEVELS;
dev_info->max_event_ports = rte_fslmc_get_device_count(DPAA2_IO);
/* we only support dpio upto number of cores*/
/* we only support dpio up to number of cores */
if (dev_info->max_event_ports > rte_lcore_count())
dev_info->max_event_ports = rte_lcore_count();
dev_info->max_event_port_dequeue_depth =
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/bnxt/bnxt_ethdev.c
Expand Up @@ -1111,7 +1111,7 @@ static int bnxt_rss_hash_conf_get_op(struct rte_eth_dev *eth_dev,
}
if (hash_types) {
PMD_DRV_LOG(ERR,
"Unknwon RSS config from firmware (%08x), RSS disabled",
"Unknown RSS config from firmware (%08x), RSS disabled",
vnic->hash_type);
return -ENOTSUP;
}
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/cxgbe/cxgbe_flow.c
Expand Up @@ -156,7 +156,7 @@ ch_rte_parsetype_port(const void *dmask, const struct rte_flow_item *item,
if (val->index > 0x7)
return rte_flow_error_set(e, EINVAL, RTE_FLOW_ERROR_TYPE_ITEM,
item,
"port index upto 0x7 is supported");
"port index up to 0x7 is supported");

CXGBE_FILL_FS(val->index, mask->index, iport);

Expand Down
2 changes: 1 addition & 1 deletion drivers/net/qede/qede_ethdev.c
Expand Up @@ -1046,7 +1046,7 @@ static int qede_dev_start(struct rte_eth_dev *eth_dev)
qede_reset_queue_stats(qdev, true);

/* Newer SR-IOV PF driver expects RX/TX queues to be started before
* enabling RSS. Hence RSS configuration is deferred upto this point.
* enabling RSS. Hence RSS configuration is deferred up to this point.
* Also, we would like to retain similar behavior in PF case, so we
* don't do PF/VF specific check here.
*/
Expand Down

0 comments on commit b54911b

Please sign in to comment.