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 BF3B8A0540; Tue, 14 Jul 2020 07:39:41 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 673BF1C436; Tue, 14 Jul 2020 07:39:33 +0200 (CEST) Received: from mail-pj1-f66.google.com (mail-pj1-f66.google.com [209.85.216.66]) by dpdk.org (Postfix) with ESMTP id 5116F1C2B8 for ; Tue, 14 Jul 2020 07:39:31 +0200 (CEST) Received: by mail-pj1-f66.google.com with SMTP id mn17so1037930pjb.4 for ; Mon, 13 Jul 2020 22:39:31 -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=FFQeLtwAGDDYdy3sJs7Xd9NEkE4okZijJclAf+9ClGo=; b=uQO+sBCVff9QlCxSUPnvCUuSKmN768gIKPISXDXvW/K3IA2cQwo/BYufLO+ueXqFhh zwHq12cQV0jL+ib4pU6mcZU+2pFCeU6bG7XueQK6CC7CUWGriQ25ZOODsDh/oe27KOS6 jYnyGsFe1WVC4wW/tDXC378x3H2GuEx5evIcVN61Ux/uaaPqrvHOOmy3qINSDjfb9YFK 11iaXG93rN4mWs2DILMwZGnqcfuEMucd1Ls+1txYYNHtmWw84wfjmP901lxqsuGMUrLz /0r/8KoW/d04qAJ5KHF/dO/S1OEvW78Ld61UfViRlNaGlkI0BZp/3yb787OcPO3oYt6x 7cew== 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=FFQeLtwAGDDYdy3sJs7Xd9NEkE4okZijJclAf+9ClGo=; b=WQnX6mFljsbN9sQzl/PkuVyPwWoQcWy7LaXSngE91uZydmtHvrgktuqenqhOa/7uPL 0B3HarAoBUh7do0A/5NRhde4jePOggRY9AgsMHnxK7wIPfCjwf3ZW7eGORqaiyuMmmgP +wuGmoL7SgEpPTqU7qrBgcwCgZy0kZqv2iRQcpCrtU6YKAko73f1oWCQp2piXfKtWPVG BJAbFiVR1m9iAqP1oQILXBSMvmCoHeSuJU9NumGkhUrucBvHr/tIPOq5Tf1tDvjchY1Z 5JazqVOccE51SO9kcib+3+AE5m09nqiKTlAGisR9TBet9ZfkvDXw8B67C4XoxHBais6y t9lA== X-Gm-Message-State: AOAM532tY4DI9K3IAVxBjPffEr6NLcNMb9RH8q4gV/u7N/XPT5wAfqWm ftH/9eCGLIRvJwmQ6DmGn4onDRraGMrYFQ== X-Google-Smtp-Source: ABdhPJxOr3fqNjVOCNr0cLe7TyvTDsVZOrzjCbX9L7F2KsVsbcj3shQpMWDYiqmxMFXTakcAtPlIeA== X-Received: by 2002:a17:90a:8a07:: with SMTP id w7mr2876316pjn.219.1594705169998; Mon, 13 Jul 2020 22:39:29 -0700 (PDT) Received: from hermes.corp.microsoft.com (204-195-22-127.wavecable.com. [204.195.22.127]) by smtp.gmail.com with ESMTPSA id h9sm15810259pfk.155.2020.07.13.22.39.28 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 13 Jul 2020 22:39:28 -0700 (PDT) From: Stephen Hemminger To: dev@dpdk.org Cc: Stephen Hemminger , Luca Boccassi Date: Mon, 13 Jul 2020 22:39:09 -0700 Message-Id: <20200714053919.5609-2-stephen@networkplumber.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200714053919.5609-1-stephen@networkplumber.org> References: <20200613000055.7909-1-stephen@networkplumber.org> <20200714053919.5609-1-stephen@networkplumber.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v4 01/11] 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 57e4a6ca58fd..cde6a9645360 100644 --- a/lib/librte_ethdev/rte_ethdev.h +++ b/lib/librte_ethdev/rte_ethdev.h @@ -3387,8 +3387,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 an set of addresses used for accepting incoming packets. * * @param port_id * The port identifier of the Ethernet device. -- 2.26.2