From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marc Sune Subject: Re: [RFC PATCH 1/2] Added ETH_SPEED_CAP bitmap in rte_eth_dev_info Date: Tue, 26 May 2015 10:41:44 +0200 Message-ID: <556431C8.6050404@bisdn.de> References: <1431387946-29950-1-git-send-email-marc.sune@bisdn.de> <1431387946-29950-2-git-send-email-marc.sune@bisdn.de> <20150525104649.06f1916c@urahara> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Cc: dev@dpdk.org To: Stephen Hemminger Return-path: Received: from mx.bisdn.de (mx.bisdn.de [185.27.182.31]) by dpdk.org (Postfix) with ESMTP id 8FA2B1396 for ; Tue, 26 May 2015 10:41:45 +0200 (CEST) In-Reply-To: <20150525104649.06f1916c@urahara> 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" On 25/05/15 19:46, 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 likely to run out of 16 bits in future, why not 32 bits now? Indeed, why not. I will convert it to uint32_t when I send the new version. Thanks marc