From patchwork Thu Oct 29 13:36:33 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luca Boccassi X-Patchwork-Id: 82776 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id BBC60A04B5; Thu, 29 Oct 2020 14:36:40 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id D899FCD62; Thu, 29 Oct 2020 14:36:38 +0100 (CET) Received: from mail-wr1-f68.google.com (mail-wr1-f68.google.com [209.85.221.68]) by dpdk.org (Postfix) with ESMTP id 30FB4CA16 for ; Thu, 29 Oct 2020 14:36:38 +0100 (CET) Received: by mail-wr1-f68.google.com with SMTP id m13so2799074wrj.7 for ; Thu, 29 Oct 2020 06:36:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:subject:date:message-id:mime-version :content-transfer-encoding; bh=e1caTib3ToY593OL9kIEr+sHgBVLbIYX0TP4D4gVkzo=; b=ZUqyQ4ftXNRwO/ceyt6V8mP0dHQkg+7iOfrRTdHmZgzSw/8TktlsuUDkVZQQNaMZSC GyNhtFTyhTWcd8WEpHGMDnS/YRX/Q8vO3XTQ2ZXRHPEGTS8onhkPrStzulPwgkqlEInK gtg9wqipoz4MFOpHLcZtIe1AXrxlBQUq1njZqFShOBTV7JiztctPCmTq8TvF+8r7ZEJs x9Ak0KK/iIxBDbSECxVpr/K03tgaHUgX8ZiD95VQcqrhMHkZWwyZxosGny6mjztB7IA2 0Kj4JzQCVeZJRtC3iCliFdJb04hHQ9S26Re2sq+ifIVFLpBRy3CMqLcvdJeuaXFFuh1P Fzyw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:subject:date:message-id:mime-version :content-transfer-encoding; bh=e1caTib3ToY593OL9kIEr+sHgBVLbIYX0TP4D4gVkzo=; b=oD961ZxiUdfEhaPJ9mSTIzQu8HPyvOMXmTFZWngmNrPS+sbbwe6550f0rtqZbHcu/y pmh6n0X5YrrA6mJxBfjt1AxqXA54YTzywUUaAsDs30OcVCPXLv048qclTGiJ7Gx6KXaM 3VfAL4aYNCp/+cgK2oGuOvZBWjM7O+22gEpC05iFPyy3WHGGmJBVcL7sO/5fH4gKvSTy MD08W/NkcLSmi/2Z1g4Sg3sAsFu+LI1FGshn/94wD/82+QY7gHlIilNlHIHxC+DzGf+F dRenWO2v8TJwJUemfe3vmxfAdEPM+dUsegdrRjNpBz1dNFjPHpeFykXtngci2xFHKssy S5XQ== X-Gm-Message-State: AOAM533HiZQbfCx6G1SBOga0Fi2X7KjhFhSpJDNlUymLYhpYFGHoFw9m ehiXOBwLt4Tl7fIqLhhkmnsn+X85upkALw83 X-Google-Smtp-Source: ABdhPJzhDQih1qVGH0uEylIA9aeovwVYuOkw7vXdsOrIIVS482T/KyMdMwE9UwNC8aJyEaEicWlYDA== X-Received: by 2002:a05:6000:36f:: with SMTP id f15mr5674413wrf.78.1603978596552; Thu, 29 Oct 2020 06:36:36 -0700 (PDT) Received: from localhost ([88.98.246.218]) by smtp.gmail.com with ESMTPSA id g17sm5366343wrw.37.2020.10.29.06.36.35 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 29 Oct 2020 06:36:35 -0700 (PDT) From: luca.boccassi@gmail.com To: dev@dpdk.org Date: Thu, 29 Oct 2020 13:36:33 +0000 Message-Id: <20201029133633.3733075-1-luca.boccassi@gmail.com> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH] Fix spelling errors that Lintian complains about X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" From: Luca Boccassi Signed-off-by: Luca Boccassi --- Would be really great to hook up some spell checkers to the CI, so that I'm not the only one who gets nagged by automated tools :-) app/test-fib/main.c | 4 ++-- drivers/net/hns3/hns3_ethdev.h | 2 +- drivers/net/i40e/i40e_ethdev_vf.c | 2 +- drivers/net/ixgbe/base/ixgbe_x540.c | 2 +- drivers/net/netvsc/hn_rndis.c | 2 +- drivers/net/qede/base/ecore_sriov.c | 2 +- drivers/net/virtio/virtio_user/vhost_kernel_tap.c | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/app/test-fib/main.c b/app/test-fib/main.c index 9e6a4f2231..b0a97b0d7e 100644 --- a/app/test-fib/main.c +++ b/app/test-fib/main.c @@ -629,10 +629,10 @@ print_usage(void) "[-s ]\n" "[-a ]\n" - "[-b ]\n\tavailible options for ipv4\n" + "[-b ]\n\tavailable options for ipv4\n" "\t\trib - RIB based FIB\n" "\t\tdir - DIR24_8 based FIB\n" - "\tavailible options for ipv6:\n" + "\tavailable options for ipv6:\n" "\t\trib - RIB based FIB\n" "\t\ttrie - TRIE based FIB\n" "defaults are: dir for ipv4 and trie for ipv6\n" diff --git a/drivers/net/hns3/hns3_ethdev.h b/drivers/net/hns3/hns3_ethdev.h index da8aead2f3..8392da8f15 100644 --- a/drivers/net/hns3/hns3_ethdev.h +++ b/drivers/net/hns3/hns3_ethdev.h @@ -166,7 +166,7 @@ enum hns3_media_type { struct hns3_mac { uint8_t mac_addr[RTE_ETHER_ADDR_LEN]; - bool default_addr_setted; /* whether default addr(mac_addr) is setted */ + bool default_addr_setted; /* whether default addr(mac_addr) is set */ uint8_t media_type; uint8_t phy_addr; uint8_t link_duplex : 1; /* ETH_LINK_[HALF/FULL]_DUPLEX */ diff --git a/drivers/net/i40e/i40e_ethdev_vf.c b/drivers/net/i40e/i40e_ethdev_vf.c index 53154c3ef3..1139312331 100644 --- a/drivers/net/i40e/i40e_ethdev_vf.c +++ b/drivers/net/i40e/i40e_ethdev_vf.c @@ -260,7 +260,7 @@ i40evf_read_pfmsg(struct rte_eth_dev *dev, struct i40evf_arq_msg_info *data) case VIRTCHNL_EVENT_RESET_IMPENDING: vf->vf_reset = true; vf->pend_msg |= PFMSG_RESET_IMPENDING; - PMD_DRV_LOG(INFO, "vf is reseting"); + PMD_DRV_LOG(INFO, "vf is resetting"); break; case VIRTCHNL_EVENT_PF_DRIVER_CLOSE: vf->dev_closed = true; diff --git a/drivers/net/ixgbe/base/ixgbe_x540.c b/drivers/net/ixgbe/base/ixgbe_x540.c index 4cea16a817..8efde4645a 100644 --- a/drivers/net/ixgbe/base/ixgbe_x540.c +++ b/drivers/net/ixgbe/base/ixgbe_x540.c @@ -784,7 +784,7 @@ s32 ixgbe_acquire_swfw_sync_X540(struct ixgbe_hw *hw, u32 mask) * bits in the SW_FW_SYNC register. */ if (ixgbe_get_swfw_sync_semaphore(hw)) { - DEBUGOUT("Failed to get NVM sempahore and register semaphore while forcefully ignoring FW sempahore bit(s) and setting SW semaphore bit(s), returning IXGBE_ERR_SWFW_SYNC\n"); + DEBUGOUT("Failed to get NVM semaphore and register semaphore while forcefully ignoring FW semaphore bit(s) and setting SW semaphore bit(s), returning IXGBE_ERR_SWFW_SYNC\n"); return IXGBE_ERR_SWFW_SYNC; } swfw_sync = IXGBE_READ_REG(hw, IXGBE_SWFW_SYNC_BY_MAC(hw)); diff --git a/drivers/net/netvsc/hn_rndis.c b/drivers/net/netvsc/hn_rndis.c index 66d1966f29..1ce260c89b 100644 --- a/drivers/net/netvsc/hn_rndis.c +++ b/drivers/net/netvsc/hn_rndis.c @@ -276,7 +276,7 @@ static int hn_nvs_send_rndis_ctrl(struct vmbus_channel *chan, sg.len = reqlen; if (sg.ofs + reqlen > PAGE_SIZE) { - PMD_DRV_LOG(ERR, "RNDIS request crosses page bounary"); + PMD_DRV_LOG(ERR, "RNDIS request crosses page boundary"); return -EINVAL; } diff --git a/drivers/net/qede/base/ecore_sriov.c b/drivers/net/qede/base/ecore_sriov.c index dac4cbee86..ed8cc695fe 100644 --- a/drivers/net/qede/base/ecore_sriov.c +++ b/drivers/net/qede/base/ecore_sriov.c @@ -4077,7 +4077,7 @@ ecore_iov_execute_vf_flr_cleanup(struct ecore_hwfn *p_hwfn, rc = ecore_iov_enable_vf_access(p_hwfn, p_ptt, p_vf); if (rc) { /* TODO - again, a mess... */ - DP_ERR(p_hwfn, "Failed to re-enable VF[%d] acces\n", + DP_ERR(p_hwfn, "Failed to re-enable VF[%d] access\n", vfid); return rc; } diff --git a/drivers/net/virtio/virtio_user/vhost_kernel_tap.c b/drivers/net/virtio/virtio_user/vhost_kernel_tap.c index acddefa33d..79b8446f8e 100644 --- a/drivers/net/virtio/virtio_user/vhost_kernel_tap.c +++ b/drivers/net/virtio/virtio_user/vhost_kernel_tap.c @@ -39,7 +39,7 @@ vhost_kernel_tap_set_offload(int fd, uint64_t features) /* Check if our kernel supports TUNSETOFFLOAD */ if (ioctl(fd, TUNSETOFFLOAD, 0) != 0 && errno == EINVAL) { - PMD_DRV_LOG(ERR, "Kernel does't support TUNSETOFFLOAD\n"); + PMD_DRV_LOG(ERR, "Kernel doesn't support TUNSETOFFLOAD\n"); return -ENOTSUP; }