From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jiri Pirko Subject: Re: [patch net-next 02/10] devlink: Add support for resource abstraction Date: Wed, 20 Dec 2017 21:01:09 +0100 Message-ID: <20171220200109.GC1760@nanopsycho> References: <20171220115821.22171-1-jiri@resnulli.us> <20171220115821.22171-3-jiri@resnulli.us> <20171220.144358.1892414104907740492.davem@davemloft.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: netdev@vger.kernel.org, arkadis@mellanox.com, mlxsw@mellanox.com, andrew@lunn.ch, vivien.didelot@savoirfairelinux.com, f.fainelli@gmail.com, michael.chan@broadcom.com, ganeshgr@chelsio.com, saeedm@mellanox.com, matanb@mellanox.com, leonro@mellanox.com, idosch@mellanox.com, jakub.kicinski@netronome.com, ast@kernel.org, daniel@iogearbox.net, simon.horman@netronome.com, pieter.jansenvanvuuren@netronome.com, john.hurley@netronome.com, alexander.h.duyck@intel.com, linville@tuxdriver.com, gospo@broadcom.com, steven.lin1@broadcom.com, yuvalm@mellanox.com, ogerlitz@mellanox.com, dsa@cumulusnetworks.com, roopa@cumulusnetworks.com To: David Miller Return-path: Received: from mail-wr0-f194.google.com ([209.85.128.194]:35164 "EHLO mail-wr0-f194.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756627AbdLTUBL (ORCPT ); Wed, 20 Dec 2017 15:01:11 -0500 Received: by mail-wr0-f194.google.com with SMTP id l19so10934019wrc.2 for ; Wed, 20 Dec 2017 12:01:10 -0800 (PST) Content-Disposition: inline In-Reply-To: <20171220.144358.1892414104907740492.davem@davemloft.net> Sender: netdev-owner@vger.kernel.org List-ID: Wed, Dec 20, 2017 at 08:43:58PM CET, davem@davemloft.net wrote: >From: Jiri Pirko >Date: Wed, 20 Dec 2017 12:58:13 +0100 > >> From: Arkadi Sharshevsky >> >> Add support for hardware resource abstraction over devlink. Each resource >> is identified via id, furthermore it contains information regarding its >> size and its related sub resources. Each resource can also provide its >> current occupancy. >> >> In some cases the sizes of some resources can be changed, yet for those >> changes to take place a hot driver reload may be needed. The reload >> capability will be introduced in the next patch. >> >> Signed-off-by: Arkadi Sharshevsky >> Signed-off-by: Jiri Pirko > >In what units are these sizes? If it depends upon the resource, it would >be great to have a way to introspect the units given a resource. In this case the unit is "item". But you have a point. We'll figure this out. > >> + struct devlink_resource_ops *resource_ops; > >Const? > >> +static inline int >> +devlink_resource_register(struct devlink *devlink, >> + const char *resource_name, >> + bool top_hierarchy, >> + u64 resource_size, >> + u64 resource_id, >> + u64 parent_resource_id, >> + struct devlink_resource_ops *resource_ops) > >Const for resource_ops? > >> +int devlink_resource_register(struct devlink *devlink, >> + const char *resource_name, >> + bool top_hierarchy, >> + u64 resource_size, >> + u64 resource_id, >> + u64 parent_resource_id, >> + struct devlink_resource_ops *resource_ops) > >Likewise. Ok, thanks!