From mboxrd@z Thu Jan 1 00:00:00 1970 From: Radu Nicolau Subject: [RFC PATCH 2/5] ethdev: added security ops struct pointer Date: Fri, 25 Aug 2017 15:57:23 +0100 Message-ID: <1503673046-30651-3-git-send-email-radu.nicolau@intel.com> References: <1503673046-30651-1-git-send-email-radu.nicolau@intel.com> Cc: Radu Nicolau To: dev@dpdk.org Return-path: Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 14C937D57 for ; Fri, 25 Aug 2017 17:01:17 +0200 (CEST) In-Reply-To: <1503673046-30651-1-git-send-email-radu.nicolau@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Signed-off-by: Radu Nicolau --- lib/librte_ether/rte_ethdev.h | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/librte_ether/rte_ethdev.h b/lib/librte_ether/rte_ethdev.h index 0adf327..b4a02d7 100644 --- a/lib/librte_ether/rte_ethdev.h +++ b/lib/librte_ether/rte_ethdev.h @@ -1649,6 +1649,7 @@ struct rte_eth_dev { */ struct rte_eth_rxtx_callback *pre_tx_burst_cbs[RTE_MAX_QUEUES_PER_PORT]; enum rte_eth_dev_state state; /**< Flag indicating the port state */ + struct rte_security_ops *sec_ops; /**< Security ops */ } __rte_cache_aligned; struct rte_eth_dev_sriov { -- 2.7.5