From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH 3/6] ethdev: extend struct to support flow director in VFs Date: Fri, 12 Jun 2015 18:45:29 +0200 Message-ID: <6248554.R1XBHJxJp6@xps13> References: <1431315990-3067-1-git-send-email-jingjing.wu@intel.com> <1431315990-3067-4-git-send-email-jingjing.wu@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev@dpdk.org, neil.horman@tuxdriver.com To: Jingjing Wu Return-path: Received: from mail-wi0-f180.google.com (mail-wi0-f180.google.com [209.85.212.180]) by dpdk.org (Postfix) with ESMTP id 1F5A35A0A for ; Fri, 12 Jun 2015 18:46:27 +0200 (CEST) Received: by wifx6 with SMTP id x6so22394972wif.0 for ; Fri, 12 Jun 2015 09:46:27 -0700 (PDT) In-Reply-To: <1431315990-3067-4-git-send-email-jingjing.wu@intel.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 2015-05-11 11:46, Jingjing Wu: > This patch extends struct rte_eth_fdir_flow_ext to support flow > director in VFs. > > Signed-off-by: Jingjing Wu > --- a/lib/librte_ether/rte_eth_ctrl.h > +++ b/lib/librte_ether/rte_eth_ctrl.h > @@ -394,6 +394,8 @@ struct rte_eth_fdir_flow_ext { > uint16_t vlan_tci; > uint8_t flexbytes[RTE_ETH_FDIR_MAX_FLEXLEN]; > /**< It is filled by the flexible payload to match. */ > + uint8_t is_vf; /**< 1 for VF, 0 for port dev */ > + uint16_t dst_id; /**< VF ID, available when is_vf is 1*/ > }; Isn't it breaking the ABI?