From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH v8 5/9] eal/bus: introduce support for bus probing Date: Wed, 18 Jan 2017 00:38:55 +0100 Message-ID: <4787403.dYBFJW0NQC@xps13> References: <1484647774-28984-1-git-send-email-shreyansh.jain@nxp.com> <1484660264-6531-1-git-send-email-shreyansh.jain@nxp.com> <1484660264-6531-6-git-send-email-shreyansh.jain@nxp.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev@dpdk.org To: Shreyansh Jain Return-path: Received: from mail-wm0-f49.google.com (mail-wm0-f49.google.com [74.125.82.49]) by dpdk.org (Postfix) with ESMTP id 8484311DE for ; Wed, 18 Jan 2017 00:38:57 +0100 (CET) Received: by mail-wm0-f49.google.com with SMTP id r144so248058145wme.1 for ; Tue, 17 Jan 2017 15:38:57 -0800 (PST) In-Reply-To: <1484660264-6531-6-git-send-email-shreyansh.jain@nxp.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" 2017-01-17 19:07, Shreyansh Jain: > + * This is called while iterating over each registered bus. Bus object is > + * passed along assuming this is wrapped around (embedded) by Implementation > + * specific bus object. > + * > + * @param bus > + * Generic bus object which was registered with EAL No param bus here. > + * > + * @return > + * 0 for successful probe > + * !0 for any error while probing > + */ > +typedef int (*rte_bus_probe_t)(void); >