From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 44BA1A00BE; Sat, 13 Jun 2020 02:01:18 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 5501E1BFA1; Sat, 13 Jun 2020 02:01:08 +0200 (CEST) Received: from mail-pl1-f193.google.com (mail-pl1-f193.google.com [209.85.214.193]) by dpdk.org (Postfix) with ESMTP id 915271BF91 for ; Sat, 13 Jun 2020 02:01:05 +0200 (CEST) Received: by mail-pl1-f193.google.com with SMTP id t16so4380001plo.7 for ; Fri, 12 Jun 2020 17:01:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=zguNOvJCgIjIn2X8Inx/ogRrY1mp8GQJP0MVg7whO+E=; b=GKAzTstymOCunjn0s+WFIn/mNYo8AZF1O//5YHW0XUpL/yjtTYwomZ5dSgqf+jWp3c cvSa0qGOS5ylqcM+OcfdszBrmtfPj1Zmm0pURgs7u9yr8f4u7VqByvgyH7f/wObg7+Za vM5DzIVm4COS4GHsx6luJgPPPP/njRyz6EV4j65f39C6+ITlnCpqCO6udI+lfeno3qOL DXzHdA2NRYrerrG86rrxOH7G2DgEbdHksQwELjNaOOwvN/WpQjEW8haiI8nsTHfblKCz IvHb75hySWU6zF1KVU2hXX4UlnW1DC9IEelj6zXYbsuVAODEfDa5MxFCazSSIraWirg7 U7wg== 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:in-reply-to :references:mime-version:content-transfer-encoding; bh=zguNOvJCgIjIn2X8Inx/ogRrY1mp8GQJP0MVg7whO+E=; b=fESHw8/Vr0fKY+KyQeWn5gtsta0BFh85YpF6KzxaIizQCA03YgF32JkMi4lF7+uFLY /urfuuZSudK/p1g9u/fcWbOj1s1qR6vEO+zq65zMUf/ZdGLh8KkferfU+TCHGCyYM1VO T5x3LkS6m7hoR4UxuXovgwg0Zwr25nVRVP+gxzunD9LzcAYe9YfSURRm+LLTtFk9hoHL Kfs8zIKCUcLGoE7ddUcTL2atLQlNDGwpEUEBt650WEovg56/6YwpNWSs4SifLqweqhmS RsUjxH3SzmO6TTnr4hIQlWQNhXVWyjWA/aY/RHXN3OMj5baRo1bTRtEzs2Fsvuhk/dx8 bHsw== X-Gm-Message-State: AOAM530GwYoj6VJ3hnqTIxlb5bZIh+YcfHLx/b/+9bo3zY6yEmc21efc KM/n+aEgmaeT7BEuBxRDxJEoE1s1pUM= X-Google-Smtp-Source: ABdhPJyLqJ8uOPJVik2VLOtQckuIh0ggK6gvR/3QoI7EH4fLsB2wVKftC5BYFTOqCeIDGuMw6m7EWg== X-Received: by 2002:a17:902:a704:: with SMTP id w4mr13219078plq.208.1592006464317; Fri, 12 Jun 2020 17:01:04 -0700 (PDT) Received: from hermes.lan (204-195-22-127.wavecable.com. [204.195.22.127]) by smtp.gmail.com with ESMTPSA id 6sm7205921pfi.170.2020.06.12.17.01.02 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 12 Jun 2020 17:01:03 -0700 (PDT) From: Stephen Hemminger To: dev@dpdk.org Cc: Stephen Hemminger , Luca Boccassi Date: Fri, 12 Jun 2020 17:00:46 -0700 Message-Id: <20200613000055.7909-2-stephen@networkplumber.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200613000055.7909-1-stephen@networkplumber.org> References: <20200613000055.7909-1-stephen@networkplumber.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v3 01/10] rte_ethdev: change comment to rte_dev_eth_mac_addr_add 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" The comment used the term whitelist and was awkardly written. Replace it with simpler direct description of adding a new address. No code or API changes for this. Signed-off-by: Stephen Hemminger Acked-by: Luca Boccassi --- lib/librte_ethdev/rte_ethdev.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/librte_ethdev/rte_ethdev.h b/lib/librte_ethdev/rte_ethdev.h index a49242bcd286..8d19d7e36721 100644 --- a/lib/librte_ethdev/rte_ethdev.h +++ b/lib/librte_ethdev/rte_ethdev.h @@ -3274,8 +3274,7 @@ int rte_eth_dev_priority_flow_ctrl_set(uint16_t port_id, struct rte_eth_pfc_conf *pfc_conf); /** - * Add a MAC address to an internal array of addresses used to enable whitelist - * filtering to accept packets only if the destination MAC address matches. + * Add a MAC address to the set of addresses used for accepting incoming packets. * * @param port_id * The port identifier of the Ethernet device. -- 2.26.2