From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr1-f66.google.com (mail-wr1-f66.google.com [209.85.221.66]) by dpdk.org (Postfix) with ESMTP id 375533DC for ; Tue, 28 Aug 2018 12:25:29 +0200 (CEST) Received: by mail-wr1-f66.google.com with SMTP id k5-v6so1049077wre.10 for ; Tue, 28 Aug 2018 03:25:29 -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=ggmkUutufJptD+6+b2YkxPt6hIt3l/a2ZbTHbfLJPjo=; b=QDK9wqw/NRPLCDuQsqEjiDs9tMG7LBQTCG9Ey4j4VZCWCAsBB2hnD1RO6ldXO7HI3E PR7o9mqLLX+fh0/sBbG8LcsreklMWP9Pj7ZSs/CTrYxRw77MAc+BhogRR6ozTnI3IH1g ajX5NOzmP4lUYQ7JcVUvRZ73aFctwkYFFc9nRYAHDte9zchH13oeTBNP7hGLaYBfwIAN 5Vyf9df/WaF7FqXEv83+Ej+jumozyiBmU9j7yaQCu6l8Yh0jxqCNE6dfJRpQi3x2/dB7 H5JMHBZd7NeHehWInGj8NL+O1tlb1TjYNGhKLb7oNIEsw5yqhQv5fOgE/1P3rJMFjTt/ C/iw== X-Gm-Message-State: APzg51DMX48FdoEAkEbiDJluTOUURfq3r3MJTC5nNxgcsf0cW0AI73rw dvOyzPuxSEj0O29ujGHWjKw/00wu X-Google-Smtp-Source: ANB0VdZoO9AUz/qAtvoWpaKg08G8rBPd5PFAAaiNooe0FDgdX5n8Y2w6CBXfCw6uWaz9c6dg9nQbFw== X-Received: by 2002:adf:e505:: with SMTP id j5-v6mr659800wrm.111.1535451928942; Tue, 28 Aug 2018 03:25:28 -0700 (PDT) Received: from localhost ([2001:1be0:110d:fcfe:41aa:5bfa:6cf3:7531]) by smtp.gmail.com with ESMTPSA id q135-v6sm2310617wmd.4.2018.08.28.03.25.27 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Tue, 28 Aug 2018 03:25:27 -0700 (PDT) From: Luca Boccassi To: Radu Nicolau Cc: Ferruh Yigit , dpdk stable Date: Tue, 28 Aug 2018 11:25:20 +0100 Message-Id: <20180828102522.14500-2-bluca@debian.org> X-Mailer: git-send-email 2.18.0 In-Reply-To: <20180828102522.14500-1-bluca@debian.org> References: <20180810090627.28295-1-luca.boccassi@gmail.com> <20180828102522.14500-1-bluca@debian.org> Subject: [dpdk-stable] patch 'test/virtual_pmd: add MAC address setting fake op' 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:29 -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 63c009e4f2ea9461b821dd949df1b7b2142b4cd6 Mon Sep 17 00:00:00 2001 From: Radu Nicolau Date: Thu, 1 Feb 2018 10:48:57 +0000 Subject: [PATCH] test/virtual_pmd: add MAC address setting fake op [ backported from commit c23fc36284e26fca9b52641118ad76a4da99d7af ] Needed if used with net/bonding Signed-off-by: Radu Nicolau Reviewed-by: Ferruh Yigit --- app/test/virtual_pmd.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app/test/virtual_pmd.c b/app/test/virtual_pmd.c index 65b44c64a3..02ac4851b0 100644 --- a/app/test/virtual_pmd.c +++ b/app/test/virtual_pmd.c @@ -241,6 +241,11 @@ static void virtual_ethdev_promiscuous_mode_disable(struct rte_eth_dev *dev __rte_unused) {} +static void +virtual_ethdev_mac_address_set(__rte_unused struct rte_eth_dev *dev, + __rte_unused struct ether_addr *addr) +{ +} static const struct eth_dev_ops virtual_ethdev_default_dev_ops = { .dev_configure = virtual_ethdev_configure_success, @@ -253,13 +258,13 @@ static const struct eth_dev_ops virtual_ethdev_default_dev_ops = { .rx_queue_release = virtual_ethdev_rx_queue_release, .tx_queue_release = virtual_ethdev_tx_queue_release, .link_update = virtual_ethdev_link_update_success, + .mac_addr_set = virtual_ethdev_mac_address_set, .stats_get = virtual_ethdev_stats_get, .stats_reset = virtual_ethdev_stats_reset, .promiscuous_enable = virtual_ethdev_promiscuous_mode_enable, .promiscuous_disable = virtual_ethdev_promiscuous_mode_disable }; - void virtual_ethdev_start_fn_set_success(uint8_t port_id, uint8_t success) { -- 2.18.0