From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm1-f67.google.com (mail-wm1-f67.google.com [209.85.128.67]) by dpdk.org (Postfix) with ESMTP id 7472C2082 for ; Fri, 18 Jan 2019 13:47:54 +0100 (CET) Received: by mail-wm1-f67.google.com with SMTP id y139so4354845wmc.5 for ; Fri, 18 Jan 2019 04:47:54 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=Qxv3rpDWE9e8Uw0wCdKow9L4tmvlc3BmTd5gPiQ/Ofc=; b=Q9mXWLh79jNupryuZPWDpnDc+hiSAzc8DSrhguRDmWwNJkcsAkwoLYzALhBtZTvAgJ GKFyoKJHGh0HM/7RrhesPpvlYOmVK3mdkRHkKwpbjC9Ym4BydooAluVXKlPP2gHunl1L kdJlKmQbz/f6VlK8XIvieR7wyzX4YZ3M6zsUy81JWhk3Y2KXYLrxp3KZRrqCx+Nrsv2z rbfeGxNxzZ1IjqbWeW40WT95wyxjk8Vv/uKNUxbeUPhQ0Co5bl9GGTU4IlZ75ZmgYfqT hrlfgFiJqMk1SJjwF4HU9loML32t8QvfrkuXaqwL1SxpGyI3Tsv3evg7lWR7Dh1JBpvd TnmQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=Qxv3rpDWE9e8Uw0wCdKow9L4tmvlc3BmTd5gPiQ/Ofc=; b=Lj0MkXY7fr5oBhEZFJWnh14vmpLppwsANBQ3oR1H/WTSL1NGBSxuzX6jzvoEgC16ZH /SZJhutgSgct1CIWfSqEnb/kt8TVGSStDZCVWT5pR6EuhZRqMH9aNVmiXVWaepE4+q/Q /QcGafy3YvQtl+kYcB3jhq6qR0BOVctJrtvleNpNRMusCIP00N/onJjgVTrboq99xcCl CH+TKTxj0XuvTiF6+2hYCyzkvtvJY3u5fVOsg7jvGAwjPGiy75AzkV45nRU/CWmFrFf9 fICr8bdwIY0tMqS5P3MuSAtQw/MSWFKWpScJRJw/Lzj0q9b/3heFjNa01rV7HBGKKSUI U7lQ== X-Gm-Message-State: AJcUukezSKkzE6Ah/SjbIDknF+whpTKk1/LWynf5S6Ayd8TvR108HYQF 3wHLRVE9JxkiYrEzLtE6pMeLD7VcnI8= X-Google-Smtp-Source: ALg8bN5o6u5xfzd0hNH3FTSQFRwk0llALNYysKGXEenm5HhrNnCzMbJHW1A3T0kjQKaPihNsIRsehw== X-Received: by 2002:a7b:cc86:: with SMTP id p6mr15084565wma.19.1547815673890; Fri, 18 Jan 2019 04:47:53 -0800 (PST) Received: from localhost.localdomain (bzq-109-66-107-204.red.bezeqint.net. [109.66.107.204]) by smtp.gmail.com with ESMTPSA id e9sm70724205wro.16.2019.01.18.04.47.52 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Fri, 18 Jan 2019 04:47:53 -0800 (PST) From: Rami Rosen To: dts@dpdk.org Cc: Rami Rosen Date: Fri, 18 Jan 2019 14:47:47 +0200 Message-Id: <20190118124747.7965-1-ramirose@gmail.com> X-Mailer: git-send-email 2.19.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dts] [PATCH] framework/dut: fix typos X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Jan 2019 12:47:54 -0000 Signed-off-by: Rami Rosen --- framework/dut.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/framework/dut.py b/framework/dut.py index 8bf3a3e..ab0eb32 100644 --- a/framework/dut.py +++ b/framework/dut.py @@ -601,7 +601,7 @@ class Dut(Crb): def rescan_ports_uncached(self): """ - rescan ports and update port's mac adress, intf, ipv6 address. + rescan ports and update port's mac address, intf, ipv6 address. """ rescan_ports_uncached = getattr(self, 'rescan_ports_uncached_%s' % self.get_os_type()) return rescan_ports_uncached() @@ -709,14 +709,14 @@ class Dut(Crb): def scan_ports_uncached(self): """ - Scan ports and collect port's pci id, mac adress, ipv6 address. + Scan ports and collect port's pci id, mac address, ipv6 address. """ scan_ports_uncached = getattr(self, 'scan_ports_uncached_%s' % self.get_os_type()) return scan_ports_uncached() def scan_ports_uncached_linux(self): """ - Scan Linux ports and collect port's pci id, mac adress, ipv6 address. + Scan Linux ports and collect port's pci id, mac address, ipv6 address. """ self.ports_info = [] @@ -764,7 +764,7 @@ class Dut(Crb): def scan_ports_uncached_freebsd(self): """ - Scan Freebsd ports and collect port's pci id, mac adress, ipv6 address. + Scan Freebsd ports and collect port's pci id, mac address, ipv6 address. """ self.ports_info = [] @@ -817,7 +817,7 @@ class Dut(Crb): def generate_sriov_vfs_by_port(self, port_id, vf_num, driver='default'): """ - Generate SRIOV VFs with default driver it is bound now or specifid driver. + Generate SRIOV VFs with default driver it is bound now or specified driver. """ port = self.ports_info[port_id]['port'] port_driver = port.get_nic_driver() -- 2.19.2