Re: [PATCH net-next RFC 01/13] devlink: Add reload level option to devlink reload command

From: Jacob Keller
Date: Tue Jul 28 2020 - 15:18:34 EST




On 7/28/2020 11:44 AM, Jakub Kicinski wrote:
> On Tue, 28 Jul 2020 09:47:00 -0700 Jacob Keller wrote:
>> On 7/28/2020 6:58 AM, Jiri Pirko wrote:
>>> But this is needed to maintain the existing behaviour which is different
>>> for different drivers.
>>
>> Which drivers behave differently here?
>
> I think Jiri refers to mlxsw vs mlx5.
>
> mlxsw loads firmware on probe, by default at least. So reloading the
> driver implies a FW reset. NIC drivers OTOH don't generally load FW
> so they didn't reset FW.
>

Ok.

> Now since we're redefining the API from "do a reload so that driverinit
> params are applied" (or "so that all netdevs get spawned in a new
> netns") to "do a reset of depth X" we have to change the paradigm.
>
> What I was trying to suggest is that we should not have to re-define
> the API like this.

Ok.

>
> From user perspective what's important is what the reset achieves (and
> perhaps how destructive it is). We can define the reset levels as:
>
> $ devlink dev reload pci/0000:82:00.0 net-ns-respawn
> $ devlink dev reload pci/0000:82:00.0 driver-param-init
> $ devlink dev reload pci/0000:82:00.0 fw-activate
>
> combining should be possible when user wants multiple things to happen:
>
> $ devlink dev reload pci/0000:82:00.0 fw-activate driver-param-init
>

Where today "driver-param-init" is the default behavior. But didn't we
just say that mlxsw also does the equivalent of fw-activate?

>
> Then we have the use case of a "live reset" which is slightly
> under-defined right now IMHO, but we can extend it as:
>
> $ devlink dev reload pci/0000:82:00.0 fw-activate --live
>

Yea, I think live fw patching things aren't quite as defined yet.

>
> We can also add the "reset level" specifier - for the cases where
> device is misbehaving:
>
> $ devlink dev reload pci/0000:82:00.0 level [driver|fw|hardware]
>

I guess I don't quite see how level fits in? This is orthogonal to the
other settings?

>
> But I don't think that we can go from the current reload command
> cleanly to just a level reset. The driver-specific default is a bad
> smell which indicates we're changing semantics from what user wants
> to what the reset depth is. Our semantics with the patch as it stands
> are in fact:
> - if you want to load new params or change netns, don't pass the level
> - the "driver default" workaround dictates the right reset level for
> param init;
> - if you want to activate new firmware - select the reset level you'd
> like from the reset level options.
>

I think I agree, having the "what gets reloaded" as a separate vector
makes sense and avoids confusion. For example for ice hardware,
"fw-activate" really does mean "Do an EMP reset" rather than just a
"device reset" which could be interpreted differently. ice can do
function level reset, or core device reset also. Neither of those two
resets activates firmware.

Additionally the current function load process in ice doesn't support
driver-init at all. That's something I'd like to see happen but is quite
a significant refactor for how the driver loads. We need to refactor
everything out so that devlink is created early on and factor out
load/unload into handlers that can be called by the devlink reload. As I
have primarily been focused on flash update I sort of left that for the
future because it was a huge task to solve.