From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr1-f67.google.com (mail-wr1-f67.google.com [209.85.221.67]) by dpdk.org (Postfix) with ESMTP id A67673DC for ; Tue, 28 Aug 2018 12:25:27 +0200 (CEST) Received: by mail-wr1-f67.google.com with SMTP id j26-v6so1065936wre.2 for ; Tue, 28 Aug 2018 03:25:27 -0700 (PDT) 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; bh=wN6/xD092BAX8qJbosSVjPEP8xcFSVmdxiWqFBpCaro=; b=qMaTdF+OJrXjc22vAkkdDD8rHBmhn65TKKaD2SKXo7RqGVA/EriobNdd0BSbIu0nhi gnqWfVyfTuBE1mzGW3JEq5piWNZeZ97sFiRZt9UTO7NvohwNnWE2I99KqLVwKccmxBKq 9EWp2EqjZvpbyBVSc3qhI0YYytYAQUkZxXTrhjpi5oY1UEDWT2u6LVPq9OKHFcY1puB7 48Ct0YQ9Qz4vKdDGmO6HHjaNpy6jO2O92Wa/2R4Pu8S0HAH3dLD9gk4FXqKLkwLsfAK9 z8+zYxwvBKPPz67B/tKpzoZFaikUiJrO/v51AI8PkKFjxreUTWmaxVZTrAa8PQTtylAr iVYQ== X-Gm-Message-State: APzg51BuDp/bAvKhr9hogzOZmwMjpq5I++wl2ipOtFwPQnW4d6KmPFfb ytHNT9nUphBzEtr7/hLl0vQ= X-Google-Smtp-Source: ANB0VdZGc87DEB9BzxNUgKm1EgLPcXiaBzux/AJjdOFLnbCsxwozb/xAx3yZXlEi7YGQkSMzsVUATg== X-Received: by 2002:a5d:4401:: with SMTP id z1-v6mr717004wrq.227.1535451927371; Tue, 28 Aug 2018 03:25:27 -0700 (PDT) Received: from localhost ([2001:1be0:110d:fcfe:41aa:5bfa:6cf3:7531]) by smtp.gmail.com with ESMTPSA id i125-v6sm1882862wmd.23.2018.08.28.03.25.26 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Tue, 28 Aug 2018 03:25:26 -0700 (PDT) From: Luca Boccassi To: Radu Nicolau Cc: Ferruh Yigit , dpdk stable Date: Tue, 28 Aug 2018 11:25:19 +0100 Message-Id: <20180828102522.14500-1-bluca@debian.org> X-Mailer: git-send-email 2.18.0 In-Reply-To: <20180810090627.28295-1-luca.boccassi@gmail.com> References: <20180810090627.28295-1-luca.boccassi@gmail.com> Subject: [dpdk-stable] patch 'net/null: add MAC address setting fake operation' has been queued to LTS release 16.11.8 X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Aug 2018 10:25:27 -0000 Hi, FYI, your patch has been queued to LTS release 16.11.8 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 08/29/18. So please shout if anyone has objections. Also note that after the patch there's a diff of the upstream commit vs the patch applied to the branch. If the code is different (ie: not only metadata diffs), due for example to a change in context or macro names, please double check it. Thanks. Luca Boccassi --- >>From df9ce0455772f1f3b4250e81a64d2183fd8200ec Mon Sep 17 00:00:00 2001 From: Radu Nicolau Date: Thu, 1 Feb 2018 10:47:07 +0000 Subject: [PATCH] net/null: add MAC address setting fake operation [ backported from commit c5ac7748fd6bfd86b6fb4432b6792733cf32c94c ] Needed if used with net/bonding Signed-off-by: Radu Nicolau Reviewed-by: Ferruh Yigit --- drivers/net/null/rte_eth_null.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/drivers/net/null/rte_eth_null.c b/drivers/net/null/rte_eth_null.c index 067ee29392..620f09a550 100644 --- a/drivers/net/null/rte_eth_null.c +++ b/drivers/net/null/rte_eth_null.c @@ -462,6 +462,12 @@ eth_rss_hash_conf_get(struct rte_eth_dev *dev, return 0; } +static void +eth_mac_address_set(__rte_unused struct rte_eth_dev *dev, + __rte_unused struct ether_addr *addr) +{ +} + static const struct eth_dev_ops ops = { .dev_start = eth_dev_start, .dev_stop = eth_dev_stop, @@ -472,6 +478,7 @@ static const struct eth_dev_ops ops = { .rx_queue_release = eth_queue_release, .tx_queue_release = eth_queue_release, .link_update = eth_link_update, + .mac_addr_set = eth_mac_address_set, .stats_get = eth_stats_get, .stats_reset = eth_stats_reset, .reta_update = eth_rss_reta_update, -- 2.18.0