From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ferruh Yigit Subject: Re: [PATCH 2/7] ethdev: fix port id storage Date: Fri, 1 Dec 2017 15:52:08 -0800 Message-ID: <61b4477c-afcb-9459-c132-3c2a45e227c0@intel.com> References: <20171201022957.64329-1-ferruh.yigit@intel.com> <20171201022957.64329-2-ferruh.yigit@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Cc: dev@dpdk.org, vladz@cloudius-systems.com, stable@dpdk.org, declan.doherty@intel.com, Boris Pismenny , Aviad Yehezkel , Radu Nicolau To: Thomas Monjalon Return-path: In-Reply-To: <20171201022957.64329-2-ferruh.yigit@intel.com> Content-Language: en-US List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 11/30/2017 6:29 PM, Ferruh Yigit wrote: > port_id is now 16bits, update function parameter according. > > Fixes: 4c270218aa26 ("ethdev: support security APIs") > Cc: stable@dpdk.org > Cc: declan.doherty@intel.com > > Signed-off-by: Ferruh Yigit > --- > Cc: Boris Pismenny > Cc: Aviad Yehezkel > Cc: Radu Nicolau > Cc: Declan Doherty > --- <...> > > void * > -rte_eth_dev_get_sec_ctx(uint8_t port_id); > +rte_eth_dev_get_sec_ctx(uint16_t port_id); Hi Declan, Since this is a public API, it needs API documentation. Can you please send a patch to add doxygen comments the the API? Thanks, ferruh > > struct rte_eth_dev_sriov { > uint8_t active; /**< SRIOV is active with 16, 32 or 64 pools */ >