From patchwork Fri Jun 12 00:20:30 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Hemminger X-Patchwork-Id: 71308 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 74B5DA00BE; Fri, 12 Jun 2020 02:20:57 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id C3F1529CB; Fri, 12 Jun 2020 02:20:52 +0200 (CEST) Received: from mail-pg1-f194.google.com (mail-pg1-f194.google.com [209.85.215.194]) by dpdk.org (Postfix) with ESMTP id 9F2ED1023 for ; Fri, 12 Jun 2020 02:20:49 +0200 (CEST) Received: by mail-pg1-f194.google.com with SMTP id e18so3277782pgn.7 for ; Thu, 11 Jun 2020 17:20:49 -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=qZjsaZFNml3wgOdOZ1yamYvJdCOSg46jx9Ic8aWSJ+s=; b=DxZxwrbSRXXR+qdoP0vaQCKZ4FKYcjlPkpevxUKNO3rUexsYu+ie6XjQDEVFq5zOyA cLO+sU7HBqGcDXU4mzHuTPskTS3IbQIzkPSTF/5PyzXy5/hFZbVwMnV1r+pwfJ/SEGzD 5EWpro8135CpXqbEZsg+jNNzK4YtQMMY/ip6CBKT3Jxhbc2Wx1c5Hsw9mov0M6LRTq/c vwKQh6gT+zeMpwvd6+doAp9t3trh6g9AwePQFaDXwBgBE9Jr1tnq/m05r/zWYAHPRolh TOZbtlT64hP9Gmt+t7DESTlGfatw8QPIXghrdlPctyvUin5LPmXPqVIQ3M36DZ64Yxje Om2g== 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=qZjsaZFNml3wgOdOZ1yamYvJdCOSg46jx9Ic8aWSJ+s=; b=UOOczOaKQWdqM6+AOvA8D0ARLWp7A/V//qi9KWe0lioe4PXgUMNYp2KPx48kjAr55k CRhISMsudpiH37pXFLZuR4a8p9TmjCHUF9qsMPZmJxtu1lv+zKb5QMEZlryMr3I/ubSh qbUM3VmP9vnpjYEg4zUQLKCtSLZ4U1j9dQ9dT2Bm84nXfOo7aehLe14s7eeJZxp0erFC WWpwPc/fjmQIo+I+MzWnn0PZ+WAsLFc7AKhsvfvefLm+HKprvCucONiCdbGi41VFRp/i JI0mRmw95pXVth7cbDlpoux35Gm2pXA8ef5zomzQEKJry2pdbAhoWFFH7JsecgCLmvld wnzQ== X-Gm-Message-State: AOAM532A4FtUJuSC3F0JLxHsBfiXskxkSUZkKEFr8vgm6smiM2cLOnHM //w4nPurdHGmScEVf+luOH4CjaCmuaM= X-Google-Smtp-Source: ABdhPJxGQszvm+TlWKZIWx8/OmcsC27ZVYD4VaDx6BT/zRZ3RH1ctIHnP82WMGFtyYr8p57+lQ7d5g== X-Received: by 2002:a62:7695:: with SMTP id r143mr9449081pfc.31.1591921248343; Thu, 11 Jun 2020 17:20:48 -0700 (PDT) Received: from hermes.lan (204-195-22-127.wavecable.com. [204.195.22.127]) by smtp.gmail.com with ESMTPSA id l63sm4395273pfd.122.2020.06.11.17.20.47 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 11 Jun 2020 17:20:47 -0700 (PDT) From: Stephen Hemminger To: dev@dpdk.org Cc: Stephen Hemminger Date: Thu, 11 Jun 2020 17:20:30 -0700 Message-Id: <20200612002039.17450-2-stephen@networkplumber.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200612002039.17450-1-stephen@networkplumber.org> References: <20200612002039.17450-1-stephen@networkplumber.org> MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH v2 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 --- 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 an set of addresses used for accepting incoming packets. * * @param port_id * The port identifier of the Ethernet device.