|
@@ -488,24 +488,24 @@ static ssize_t store_mesh_iface(struct kobject *kobj, struct attribute *attr,
|
|
(strncmp(hard_iface->soft_iface->name, buff, IFNAMSIZ) == 0))
|
|
(strncmp(hard_iface->soft_iface->name, buff, IFNAMSIZ) == 0))
|
|
goto out;
|
|
goto out;
|
|
|
|
|
|
|
|
+ if (!rtnl_trylock()) {
|
|
|
|
+ ret = -ERESTARTSYS;
|
|
|
|
+ goto out;
|
|
|
|
+ }
|
|
|
|
+
|
|
if (status_tmp == IF_NOT_IN_USE) {
|
|
if (status_tmp == IF_NOT_IN_USE) {
|
|
- rtnl_lock();
|
|
|
|
hardif_disable_interface(hard_iface);
|
|
hardif_disable_interface(hard_iface);
|
|
- rtnl_unlock();
|
|
|
|
- goto out;
|
|
|
|
|
|
+ goto unlock;
|
|
}
|
|
}
|
|
|
|
|
|
/* if the interface already is in use */
|
|
/* if the interface already is in use */
|
|
- if (hard_iface->if_status != IF_NOT_IN_USE) {
|
|
|
|
- rtnl_lock();
|
|
|
|
|
|
+ if (hard_iface->if_status != IF_NOT_IN_USE)
|
|
hardif_disable_interface(hard_iface);
|
|
hardif_disable_interface(hard_iface);
|
|
- rtnl_unlock();
|
|
|
|
- }
|
|
|
|
|
|
|
|
- rtnl_lock();
|
|
|
|
ret = hardif_enable_interface(hard_iface, buff);
|
|
ret = hardif_enable_interface(hard_iface, buff);
|
|
- rtnl_unlock();
|
|
|
|
|
|
|
|
|
|
+unlock:
|
|
|
|
+ rtnl_unlock();
|
|
out:
|
|
out:
|
|
hardif_free_ref(hard_iface);
|
|
hardif_free_ref(hard_iface);
|
|
return ret;
|
|
return ret;
|