From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pa0-f51.google.com (mail-pa0-f51.google.com [209.85.220.51]) by dpdk.org (Postfix) with ESMTP id 1C26EB3D6 for ; Tue, 26 May 2015 17:03:04 +0200 (CEST) Received: by paza2 with SMTP id a2so85587463paz.3 for ; Tue, 26 May 2015 08:03:03 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-type:content-transfer-encoding; bh=9jmYOOVP7YsfS/qVe1oQD9zauTUMf0sjmZ6POqlCLzs=; b=ZQKocr33/xVPb9DOJrHHEKZq35QXCuswbO+as1GSN1/OLqN1bdxEVsEoepI/x5qbEF nj0bh16WI0S10kMKB2dR6eXatMadDp8t+Iz5A9+ldDup2JgJZiqIWkxacHLphJBaiMTp PTl12/Y6dmsfpIZJEl3Mp3MOFYMfu4xxuJKhCrvG9ZBGOgkRN2HrGApbl9HTKWM3Zy4P 47/Ll//4g0zT6K7Fc+dlpnv6Hw/hMZSdrOYU+FNztpj2fMU+EB3UlExKJ20wzi9bZ1Rz rgAiW+qVBRPJZbBynDU1/tgltpAXJrEiXiN7IGwTEtJck8nP4JEWNtF+BLKNmibkAXiv AXyg== X-Gm-Message-State: ALoCoQnscAi6lnrKfmMwCUcnya3FsMeRyhfdeK2FV3kqnyUSe3gKGAPuv04uwKJ2swJ4FZpzoB+s X-Received: by 10.68.250.97 with SMTP id zb1mr49810003pbc.36.1432652583552; Tue, 26 May 2015 08:03:03 -0700 (PDT) Received: from urahara (static-50-53-82-155.bvtn.or.frontiernet.net. [50.53.82.155]) by mx.google.com with ESMTPSA id to6sm13344192pbc.19.2015.05.26.08.03.02 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 26 May 2015 08:03:03 -0700 (PDT) Date: Tue, 26 May 2015 08:03:07 -0700 From: Stephen Hemminger To: Marc Sune Message-ID: <20150526080307.50ce1077@urahara> In-Reply-To: <1431387946-29950-2-git-send-email-marc.sune@bisdn.de> References: <1431387946-29950-1-git-send-email-marc.sune@bisdn.de> <1431387946-29950-2-git-send-email-marc.sune@bisdn.de> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII 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:03:04 -0000 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.