From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr1-f65.google.com (mail-wr1-f65.google.com [209.85.221.65]) by dpdk.org (Postfix) with ESMTP id 7BAE614EC for ; Fri, 18 Jan 2019 13:46:08 +0100 (CET) Received: by mail-wr1-f65.google.com with SMTP id x10so14867448wrs.8 for ; Fri, 18 Jan 2019 04:46:08 -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=ewMBlNVGts73R5sxyQzMC3uScWIwHaYCXrr2eIWCgt8=; b=UW+YxtGuUiU8droTHzzzPF7bXx1vo9PaOdRTgMVvMJHNdQoc1Fca/eAfi4EEtCobv8 /JPlVIW6AsElzNc7ERuAuA82VdrMgHVR5IMb+Jwos1KjJAJa5ZD3OxUo9pU+cfeem3hP zkC5OXdt9sqvyARhYuyrgjQdHqHKLQl60nLJwDh+KKTeqFOQkniY+PXa8zDpmx5gu1LH P4IjybH4J49pDWhI3hPOlhV4X5XBDLVL4Xq3/ZhlZrEgGaogXVB2awPvxiH5H97IqPBm si7t3QHxlQFIZSEwbC0znbKAu7yw66T0mA3vz0LRKq1cnB6Vofk39fhaDaoCmx/3Tl+L RDYQ== 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=ewMBlNVGts73R5sxyQzMC3uScWIwHaYCXrr2eIWCgt8=; b=pKG76tlSUv43S2rGQPKmTdghZrdBpIljgAxyx5F1hAfErEAZovaVrzSTqfqtd49Pin VDqVlUs+qjPjwwtPZCnRWSNsFMHXn4NeQvyRQoEic2xUUenEeRx2jX3jPr7aOCNueAIV hK5mrOzacb42H1ED/8tFGejjX4wBioyZGgFhYG/UR/46KBEu+whdgOUkofzioAnw4ZJu gYbWkyIommEUXQumlk+rXARpKtCdoDJghNnJjX4f+MeeyGbELrZpoK6O2JL6AI9BrYWq zQ0FstVOQTtgvOeyEZxNvsBVjcmGwjQ2dabjjGNlULyzEeOYhgPzvB2co+zYGLWKtmvI 2jCQ== X-Gm-Message-State: AJcUukdlEi1zaEksqCQah/NE/p4WB1CZFqHYAs4/huFCHK9loN4dJhsj WODlh199d4COOe3lkVRiDqqe/g5AVT4= X-Google-Smtp-Source: ALg8bN7+1+3lpskoKQvRq6+CXtgT8M+/difhHZWz5DtRRzoFOSJMRzDI4PShGqmI/EVFXRUxLi/HDQ== X-Received: by 2002:adf:e3d0:: with SMTP id k16mr17123618wrm.223.1547815567953; Fri, 18 Jan 2019 04:46:07 -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 m6sm65137143wrv.24.2019.01.18.04.46.07 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Fri, 18 Jan 2019 04:46:07 -0800 (PST) From: Rami Rosen To: dts@dpdk.org Cc: Rami Rosen Date: Fri, 18 Jan 2019 14:46:00 +0200 Message-Id: <20190118124600.7715-1-ramirose@gmail.com> X-Mailer: git-send-email 2.19.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dts] [PATCH] framework/crb: 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:46:08 -0000 Signed-off-by: Rami Rosen --- framework/crb.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/crb.py b/framework/crb.py index e15fd77..0a2fa80 100644 --- a/framework/crb.py +++ b/framework/crb.py @@ -582,7 +582,7 @@ class Crb(object): def remove_hyper_core(self, core_list, key=None): """ - Remove hyperthread locre for core list. + Remove hyperthread lcore for core list. """ found = set() for core in core_list: @@ -633,7 +633,7 @@ class Crb(object): def get_core_list(self, config, socket=-1): """ Get lcore array according to the core config like "all", "1S/1C/1T". - We can specify the physical CPU socket by paramter "socket". + We can specify the physical CPU socket by the "socket" parameter. """ if config == 'all': cores = [] -- 2.19.2