Re: [PATCH RESEND iproute2-next] devlink: Add optional controller user input
From: Yunsheng Lin <hidden>
Date: 2021-06-07 03:31:54
On 2021/6/6 15:10, Parav Pandit wrote:
Hi Yunsheng,quoted
From: Yunsheng Lin <redacted> Sent: Friday, June 4, 2021 7:05 AM On 2021/6/3 19:19, Parav Pandit wrote:quoted
A user optionally provides the external controller number when user wants to create devlink port for the external controller.Hi, Parav I was planing to use controller id to solve the devlink instance representing problem for multi-function which shares common resource in the same ASIC, see [1]. It seems the controller id used here is to differentiate the function used in different host?That’s correct. Controller holds one or more PCI functions (PF,VF,SF).
I am not sure I understand the exact usage of controller and why controller id is in "devlink_port_*_attrs". Let's consider a simplified case where there is two PF(supposing both have VF enabled), and each PF has different controller and each PF corresponds to a different physical port(Or it is about multi-host case multi PF may sharing the same physical port?): 1. I suppose each PF has it's devlink instance for mlx case(I suppose each VF can not have it's own devlink instance for VF shares the same physical port with PF, right?). 2. each PF's devlink instance has three types of port, which is FLAVOUR_PHYSICAL, FLAVOUR_PCI_PF and FLAVOUR_PCI_VF(supposing I understand port flavour correctly). If I understand above correctly, all ports in the same devlink instance should have the same controller id, right? If yes, why not put the controller id in the devlink instance?
In your case if there is single devlink instance representing ASIC, it is better to have health reporters under this single instance. Devlink parameters do not span multiple devlink instance.
Yes, that is what I try to do: shared status/parameters in devlink instance, physical port specific status/parameters in devlink port instance.
So if you need to control devlink instance parameters of each function byitself, you likely need devlink instance for each. And still continue to have ASIC wide health reporters under single instance that represents whole ASIC.
I do not think each function need a devlink instance if there is a devlink instance representing a whole ASIC, using the devlink port instance to represent the function seems enough?
quoted
1. https://lkml.org/lkml/2021/5/31/296