static void team_compute_features(struct team *team)
 {
-       spin_lock(&team->lock);
+       mutex_lock(&team->lock);
        __team_compute_features(team);
-       spin_unlock(&team->lock);
+       mutex_unlock(&team->lock);
 }
 
 static int team_port_enter(struct team *team, struct team_port *port)
        int i;
 
        team->dev = dev;
-       spin_lock_init(&team->lock);
+       mutex_init(&team->lock);
 
        team->pcpu_stats = alloc_percpu(struct team_pcpu_stats);
        if (!team->pcpu_stats)
        struct team_port *port;
        struct team_port *tmp;
 
-       spin_lock(&team->lock);
+       mutex_lock(&team->lock);
        list_for_each_entry_safe(port, tmp, &team->port_list, list)
                team_port_del(team, port->dev);
 
        __team_change_mode(team, NULL); /* cleanup */
        __team_options_unregister(team, team_options, ARRAY_SIZE(team_options));
-       spin_unlock(&team->lock);
+       mutex_unlock(&team->lock);
 }
 
 static void team_destructor(struct net_device *dev)
         * Alhough this is reader, it's guarded by team lock. It's not possible
         * to traverse list in reverse under rcu_read_lock
         */
-       spin_lock(&team->lock);
+       mutex_lock(&team->lock);
        list_for_each_entry(port, &team->port_list, list) {
                err = dev_set_mtu(port->dev, new_mtu);
                if (err) {
                        goto unwind;
                }
        }
-       spin_unlock(&team->lock);
+       mutex_unlock(&team->lock);
 
        dev->mtu = new_mtu;
 
 unwind:
        list_for_each_entry_continue_reverse(port, &team->port_list, list)
                dev_set_mtu(port->dev, dev->mtu);
-       spin_unlock(&team->lock);
+       mutex_unlock(&team->lock);
 
        return err;
 }
        struct team *team = netdev_priv(dev);
        int err;
 
-       spin_lock(&team->lock);
+       mutex_lock(&team->lock);
        err = team_port_add(team, port_dev);
-       spin_unlock(&team->lock);
+       mutex_unlock(&team->lock);
        return err;
 }
 
        struct team *team = netdev_priv(dev);
        int err;
 
-       spin_lock(&team->lock);
+       mutex_lock(&team->lock);
        err = team_port_del(team, port_dev);
-       spin_unlock(&team->lock);
+       mutex_unlock(&team->lock);
        return err;
 }
 
        }
 
        team = netdev_priv(dev);
-       spin_lock(&team->lock);
+       mutex_lock(&team->lock);
        return team;
 }
 
 static void team_nl_team_put(struct team *team)
 {
-       spin_unlock(&team->lock);
+       mutex_unlock(&team->lock);
        dev_put(team->dev);
 }
 
 {
        struct team *team = port->team;
 
-       spin_lock(&team->lock);
+       mutex_lock(&team->lock);
        __team_port_change_check(port, linkup);
-       spin_unlock(&team->lock);
+       mutex_unlock(&team->lock);
 }
 
 /************************************