From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH v3 1/4] ethdev: add firmware information get Date: Mon, 02 Jan 2017 16:38:55 +0100 Message-ID: <20053497.vNKJpYf1IB@xps13> References: <1481008582-69416-1-git-send-email-qiming.yang@intel.com> <1482841816-54143-1-git-send-email-qiming.yang@intel.com> <1482841816-54143-2-git-send-email-qiming.yang@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev@dpdk.org, remy.horton@intel.com, ferruh.yigit@intel.com To: Qiming Yang Return-path: Received: from mail-wj0-f173.google.com (mail-wj0-f173.google.com [209.85.210.173]) by dpdk.org (Postfix) with ESMTP id B5B352B8B for ; Mon, 2 Jan 2017 16:38:57 +0100 (CET) Received: by mail-wj0-f173.google.com with SMTP id tq7so189878880wjb.0 for ; Mon, 02 Jan 2017 07:38:57 -0800 (PST) In-Reply-To: <1482841816-54143-2-git-send-email-qiming.yang@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" 2016-12-27 20:30, Qiming Yang: > /** > + * Retrieve the firmware version of a device. > + * > + * @param port_id > + * The port identifier of the device. > + * @param fw_major > + * A array pointer to store the major firmware version of a device. > + * @param fw_minor > + * A array pointer to store the minor firmware version of a device. > + * @param fw_patch > + * A array pointer to store the firmware patch number of a device. > + * @param etrack_id > + * A array pointer to store the nvm version of a device. > + */ > +void rte_eth_dev_fw_info_get(uint8_t port_id, uint32_t *fw_major, > + uint32_t *fw_minor, uint32_t *fw_patch, uint32_t *etrack_id); I have a reserve about the naming etrack_id. Please could you point to a document explaining this ID? Is it known outside of Intel?