• Jiri Pirko's avatar
    devlink: change per-devlink netdev notifier to static one · e93c9378
    Jiri Pirko authored
    The commit 565b4824 ("devlink: change port event netdev notifier
    from per-net to global") changed original per-net notifier to be
    per-devlink instance. That fixed the issue of non-receiving events
    of netdev uninit if that moved to a different namespace.
    That worked fine in -net tree.
    
    However, later on when commit ee75f1fc ("net/mlx5e: Create
    separate devlink instance for ethernet auxiliary device") and
    commit 72ed5d56 ("net/mlx5: Suspend auxiliary devices only in
    case of PCI device suspend") were merged, a deadlock was introduced
    when removing a namespace with devlink instance with another nested
    instance.
    
    Here there is the bad flow example resulting in deadlock with mlx5:
    net_cleanup_work -> cleanup_net (takes down_read(&pernet_ops_rwsem) ->
    devlink_pernet_pre_exit() -> devlink_reload() ->
    mlx5_devlink_reload_down() -> mlx5_unload_one_devl_locked() ->
    mlx5_detach_device() -> del_adev() -> mlx5e_remove() ->
    mlx5e_destroy_devlink() -> ...
    e93c9378
devl_internal.h 8.12 KB