From patchwork Mon Oct 30 07:03:01 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Pavel Shirshov X-Patchwork-Id: 31019 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id EB3AB1B308; Mon, 30 Oct 2017 08:03:45 +0100 (CET) Received: from mail-pf0-f196.google.com (mail-pf0-f196.google.com [209.85.192.196]) by dpdk.org (Postfix) with ESMTP id A50611B307 for ; Mon, 30 Oct 2017 08:03:44 +0100 (CET) Received: by mail-pf0-f196.google.com with SMTP id t188so10268480pfd.10 for ; Mon, 30 Oct 2017 00:03:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:subject:date:message-id; bh=YOLD7wxp1udR0PahLvibNCj4ndIomoMGiRYfTyLHYL8=; b=fBoBSBqJoc9ddpP+abERQwdjBJv6R+wyeav38nFSkc6HZenBg+QX5VOSV0kBos2w1i 0PoJVt+Mje56vSdeG4nZj6fKYzXYXHCLymF/xZDG3NM221sDyOvQEge6QXVIAScvzarR 4jKF1Nipw5kSHOqS214Mj8LEG3Ixo/aPTiH8mHQ3j5H5rcZYGjw3LJEANAWkhZ6wthM1 skc1x7++VjsqPohnkOMIG5kXjIvZCKoa9Cjt20wVINtleji8+FMa/OWxBjg8/ENXLGLj behKVwFoMLQb5R7Nsr/qF8NcwzaT77FYeDv5fenj5p/f0vx1G1YV4BNC1BaGxhSz73/V VwPA== 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; bh=YOLD7wxp1udR0PahLvibNCj4ndIomoMGiRYfTyLHYL8=; b=AQcvbJ+TzluujXkGroND3AQVPW/MrtH+RkEQMCjq17w4e9MZ9i7fSZI5usORt7qK2B 5QYe9XuxHrFc5wxWUR59FuF8+sfimXogl0tKl4lq5SWm7VYnJ48jLW6bjfOXWAx1ZjQn Ztuws5iRnHHjnqr32jtgvjeyr8okT2LypvXveZJQ/MCIUNghdJAvdFbXQNuEVC9r9J7i 84TLF2kmw0w+VHSYP6sD74zxysWDGNKFt3oTSq98L8jNDEO2uLWKwxsf2OCS3+FxHBFm pWggFdF18u819ZJf2b2+loMNtRfYyRNulFWCnZyYuQOFhK075e892uL051eDuwHpbX33 h/XQ== X-Gm-Message-State: AMCzsaVWQd3DArDcFiWa4zt53Ir0hV0gi2rtrVofV4w6PmSBgsDVnyJ2 g0ly1ZPtNgggHg3z0mKsY3YBDA== X-Google-Smtp-Source: ABhQp+TQdewqeBf5EaNOOUN9rEtxqG1L5lpUDT7aVXdoFgxahjAYBuZOZHQskDMX9GnF0H0O3jsQdA== X-Received: by 10.98.212.91 with SMTP id u27mr7828552pfl.201.1509347023735; Mon, 30 Oct 2017 00:03:43 -0700 (PDT) Received: from localhost.localdomain ([50.35.88.106]) by smtp.gmail.com with ESMTPSA id h186sm23234718pfe.66.2017.10.30.00.03.43 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 30 Oct 2017 00:03:43 -0700 (PDT) From: Pavel Shirshov To: dev@dpdk.org Date: Mon, 30 Oct 2017 00:03:01 -0700 Message-Id: <1509346981-31294-1-git-send-email-pavel.shirshov@gmail.com> X-Mailer: git-send-email 2.7.4 Subject: [dpdk-dev] [PATCH] lib/librte_distributor: Fix a couple typos 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" Signed-off-by: Pavel Shirshov --- lib/librte_distributor/rte_distributor.c | 2 +- lib/librte_distributor/rte_distributor_v20.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/librte_distributor/rte_distributor.c b/lib/librte_distributor/rte_distributor.c index 20ba9ff..57ad339 100644 --- a/lib/librte_distributor/rte_distributor.c +++ b/lib/librte_distributor/rte_distributor.c @@ -432,7 +432,7 @@ rte_distributor_process_v1705(struct rte_distributor *d, next_value = (((int64_t)(uintptr_t)next_mb) << RTE_DISTRIB_FLAG_BITS); /* - * User is advocated to set tag vaue for each + * User is advocated to set tag value for each * mbuf before calling rte_distributor_process. * User defined tags are used to identify flows, * or sessions. diff --git a/lib/librte_distributor/rte_distributor_v20.c b/lib/librte_distributor/rte_distributor_v20.c index b09abec..9adda52 100644 --- a/lib/librte_distributor/rte_distributor_v20.c +++ b/lib/librte_distributor/rte_distributor_v20.c @@ -244,7 +244,7 @@ rte_distributor_process_v20(struct rte_distributor_v20 *d, next_value = (((int64_t)(uintptr_t)next_mb) << RTE_DISTRIB_FLAG_BITS); /* - * User is advocated to set tag vaue for each + * User is advocated to set tag value for each * mbuf before calling rte_distributor_process. * User defined tags are used to identify flows, * or sessions.