From patchwork Thu Jun 17 08:14:48 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ferruh Yigit X-Patchwork-Id: 94315 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id F3E3FA0C4D; Thu, 17 Jun 2021 10:15:07 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 21A3E410E8; Thu, 17 Jun 2021 10:15:00 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by mails.dpdk.org (Postfix) with ESMTP id 01E00410E8 for ; Thu, 17 Jun 2021 10:14:58 +0200 (CEST) IronPort-SDR: IT2vgVUxAMYxtoGxRxKHu1Jg3QZcQen5/ASjD8HgLZ0HmDecpN+cEJYtMYIsZbtsS18fDZtF1b 4qo0k/ACJleA== X-IronPort-AV: E=McAfee;i="6200,9189,10017"; a="206361081" X-IronPort-AV: E=Sophos;i="5.83,280,1616482800"; d="scan'208";a="206361081" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jun 2021 01:14:58 -0700 IronPort-SDR: sXgxDQfaYVNIeOxhycrRNlqLwM1RnG445k3gKd2VMYchqTBJRMD6iinLezh53uMuxrFP63XG4N xoYtXDxz8UgA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.83,280,1616482800"; d="scan'208";a="488573267" Received: from silpixa00399752.ir.intel.com (HELO silpixa00399752.ger.corp.intel.com) ([10.237.222.27]) by fmsmga002.fm.intel.com with ESMTP; 17 Jun 2021 01:14:57 -0700 From: Ferruh Yigit To: dev@dpdk.org Cc: Ferruh Yigit Date: Thu, 17 Jun 2021 09:14:48 +0100 Message-Id: <20210617081449.2045195-3-ferruh.yigit@intel.com> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20210617081449.2045195-1-ferruh.yigit@intel.com> References: <20210617081449.2045195-1-ferruh.yigit@intel.com> MIME-Version: 1.0 Subject: [dpdk-dev] [RFC 3/4] test/virtual_pmd: enable updating device flags X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 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" To be able to test various dev_flags. Signed-off-by: Ferruh Yigit --- app/test/virtual_pmd.c | 10 ++++++++++ app/test/virtual_pmd.h | 4 ++++ 2 files changed, 14 insertions(+) diff --git a/app/test/virtual_pmd.c b/app/test/virtual_pmd.c index 17f28c5a304c..615243e19aed 100644 --- a/app/test/virtual_pmd.c +++ b/app/test/virtual_pmd.c @@ -629,3 +629,13 @@ virtual_ethdev_ops_get(uint16_t port_id) return dev_ops; } + +int +virtual_ethdev_set_dev_flags(uint16_t port_id, uint32_t dev_flags) +{ + struct rte_eth_dev *eth_dev = &rte_eth_devices[port_id]; + + eth_dev->data->dev_flags = dev_flags; + + return 0; +} diff --git a/app/test/virtual_pmd.h b/app/test/virtual_pmd.h index 517dd0d2efa6..80d5d343579a 100644 --- a/app/test/virtual_pmd.h +++ b/app/test/virtual_pmd.h @@ -76,6 +76,10 @@ virtual_ethdev_tx_burst_fn_set_tx_pkt_fail_count(uint16_t port_id, struct eth_dev_ops * virtual_ethdev_ops_get(uint16_t port_id); +/* For application to be able to alter the device flags */ +int +virtual_ethdev_set_dev_flags(uint16_t port_id, uint32_t dev_flags); + #ifdef __cplusplus } #endif