fix spellings that Lintian complains about
authorLuca Boccassi <luca.boccassi@microsoft.com>
Thu, 29 Oct 2020 13:36:33 +0000 (13:36 +0000)
committerThomas Monjalon <thomas@monjalon.net>
Wed, 4 Nov 2020 19:11:31 +0000 (20:11 +0100)
Fixes: 103809d032cd ("app/test-fib: add test application for FIB")
Fixes: 1265b5372d9d ("net/hns3: add some definitions for data structure and macro")
Fixes: a85e378cc606 ("net/ixgbe/base: add debug traces")
Fixes: 4861cde46116 ("i40e: new poll mode driver")
Fixes: 4e9c73e96e83 ("net/netvsc: add Hyper-V network device")
Fixes: 86a2265e59d7 ("qede: add SRIOV support")
Fixes: 1db4d2330bc8 ("net/virtio-user: check negotiated features before set")
Cc: stable@dpdk.org
Signed-off-by: Luca Boccassi <luca.boccassi@microsoft.com>
app/test-fib/main.c
drivers/net/hns3/hns3_ethdev.h
drivers/net/i40e/i40e_ethdev_vf.c
drivers/net/ixgbe/base/ixgbe_x540.c
drivers/net/netvsc/hn_rndis.c
drivers/net/qede/base/ecore_sriov.c
drivers/net/virtio/virtio_user/vhost_kernel_tap.c

index 9e6a4f2..b0a97b0 100644 (file)
@@ -629,10 +629,10 @@ print_usage(void)
                "[-s <shuffle randomly generated routes>]\n"
                "[-a <check nexthops for all ipv4 address space"
                "(only valid with -c)>]\n"
-               "[-b <fib algorithm>]\n\tavailible options for ipv4\n"
+               "[-b <fib algorithm>]\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"
index 63e0c2f..4c40df1 100644 (file)
@@ -169,7 +169,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 */
index 6e6eef5..c26b036 100644 (file)
@@ -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;
index 4cea16a..8efde46 100644 (file)
@@ -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));
index 66d1966..1ce260c 100644 (file)
@@ -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;
        }
 
index dac4cbe..ed8cc69 100644 (file)
@@ -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;
                }
index acddefa..79b8446 100644 (file)
@@ -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;
        }