From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx.bisdn.de (mx.bisdn.de [185.27.182.31]) by dpdk.org (Postfix) with ESMTP id BDB12E62 for ; Tue, 26 May 2015 17:09:28 +0200 (CEST) Received: from [172.16.250.156] (unknown [172.16.250.156]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mx.bisdn.de (Postfix) with ESMTPSA id 68BC5A3378; Tue, 26 May 2015 17:09:28 +0200 (CEST) Message-ID: <55648CA5.6080706@bisdn.de> Date: Tue, 26 May 2015 17:09:25 +0200 From: Marc Sune User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Icedove/31.6.0 MIME-Version: 1.0 To: Stephen Hemminger References: <1431387946-29950-1-git-send-email-marc.sune@bisdn.de> <1431387946-29950-2-git-send-email-marc.sune@bisdn.de> <20150526080307.50ce1077@urahara> In-Reply-To: <20150526080307.50ce1077@urahara> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [RFC PATCH 1/2] Added ETH_SPEED_CAP bitmap in rte_eth_dev_info X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 May 2015 15:09:29 -0000 On 26/05/15 17:03, Stephen Hemminger wrote: > On Tue, 12 May 2015 01:45:45 +0200 > Marc Sune wrote: > >> +/** >> + * Ethernet device information >> + */ >> struct rte_eth_dev_info { >> struct rte_pci_device *pci_dev; /**< Device PCI information. */ >> const char *driver_name; /**< Device Driver name. */ >> @@ -924,6 +947,7 @@ struct rte_eth_dev_info { >> uint16_t vmdq_queue_base; /**< First queue ID for VMDQ pools. */ >> uint16_t vmdq_queue_num; /**< Queue number for VMDQ pools. */ >> uint16_t vmdq_pool_base; /**< First ID of VMDQ pools. */ >> + uint16_t speed_capa; /**< Supported speeds bitmap. */ >> }; >> > Since you are changing size of key structure, this is an ABI change. Yes. This means target would be 2.2? I will send the new version anyway to further discuss, and will rebase again once necessary. Marc