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 54E3FA0353; Thu, 6 Aug 2020 19:20:34 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 201F51C0C6; Thu, 6 Aug 2020 19:20:05 +0200 (CEST) Received: from mail-pl1-f196.google.com (mail-pl1-f196.google.com [209.85.214.196]) by dpdk.org (Postfix) with ESMTP id 802A61C0B8 for ; Thu, 6 Aug 2020 19:20:02 +0200 (CEST) Received: by mail-pl1-f196.google.com with SMTP id f10so3109752plj.8 for ; Thu, 06 Aug 2020 10:20:02 -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=yRS5EX28Q2QeWiBu2t0QCmPakOZkRfkujDorY6viupM=; b=J1iDgHqn25B8OyhlE4yg43HXRlbrA4kaFcJD2nUO01mp5oWYKIBL9S4T6yE/L67uu+ XjPA0QOjPIo0tUxo7xRJRf5pOir0tIpAlppGiPIFEdtpgRL0/rCTrtZgCrDwPKYxKTPi w/VTYsI1zJZf6h9ZUqnY8V1viiI3rwt6gyiumNvHQd02eijTrZOIhrxddKd7jVwFmY0a dOjZLEJ1j1ksoRDXYmErpHNvuBraP6DdTEveVQKwMId9c0/URw8riewjvAVXmbbuzm9x wwqUr2aS5tK1KWQ6+3IxeZC9wQGpSCG4qK/fh4vN5w2fHDHPibSJ3Qxv/wDdflkZnHr9 TEXg== 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=yRS5EX28Q2QeWiBu2t0QCmPakOZkRfkujDorY6viupM=; b=C83jwn9jcTzCCp4ENeomkrbkiEKSSbqzcOWSEBhypTkOjZtbO4uzqryXFZrgNTdb5I 13GlhdTlKd5f/mqq87h78L+4pEYmCGhTXdRALq6pjmP1EYa/JZchYwwO3uCsufy2kHYy Gzh3/oA7Qe4iOOh36o+y2LzlO+WtLNy0oroaFWduo6oVf/VxRA/OEOZ8YuvghGeWUn1b xZqcPgruHGL89uyFkyTaiNeI41cZ1lqP/1sYGMbtvR4jO5ElkQuiOaklekEAqGiKp6tE DQK7YkyembUrbKZVciOG7O0oh0R5fEOwg+a3IPrh10WpgD1kaW67vziDQUVLbaP2f1Jk EwOA== X-Gm-Message-State: AOAM530cr+rEdlhsh44n9l2IJygwPfECA0k/xoAwgmtqkGAl9mZVN9rn DJ4S0Whe8tWniJbz2Kky/n7AqCcMYr0= X-Google-Smtp-Source: ABdhPJyGQI0bEW7nwNPebpus5Z9r1smbeLxLt7nlc0MdoXJD+LcHZA3S2QrAttcLJ762J7bIwwDw6g== X-Received: by 2002:a17:90a:22a3:: with SMTP id s32mr9541708pjc.49.1596734401383; Thu, 06 Aug 2020 10:20:01 -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 h15sm9042821pfo.192.2020.08.06.10.20.00 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 06 Aug 2020 10:20:00 -0700 (PDT) From: Stephen Hemminger To: dev@dpdk.org Cc: Stephen Hemminger , Luca Boccassi Date: Thu, 6 Aug 2020 10:19:46 -0700 Message-Id: <20200806171947.6609-6-stephen@networkplumber.org> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20200806171947.6609-1-stephen@networkplumber.org> References: <20200604210200.25405-1-stephen@networkplumber.org> <20200806171947.6609-1-stephen@networkplumber.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v3 20.08 5/6] 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 d29930fd847e..70295d7ab7a2 100644 --- a/lib/librte_ethdev/rte_ethdev.h +++ b/lib/librte_ethdev/rte_ethdev.h @@ -3379,8 +3379,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 used for filtering incoming packets. * * @param port_id * The port identifier of the Ethernet device. -- 2.27.0