Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6d6936e2 authored by Pavel Emelyanov's avatar Pavel Emelyanov Committed by John W. Linville
Browse files

Fix potential scheduling while atomic in mesh_path_add.



Calling synchronize_rcu() under write-lock-ed pathtbl_resize_lock may
result in this warning (and other side effects).

It looks safe just dropping this lock before calling synchronize_rcu.

Signed-off-by: default avatarPavel Emelyanov <xemul@openvz.org>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 0eb03d5a
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -220,9 +220,10 @@ int mesh_path_add(u8 *dst, struct net_device *dev)
			return -ENOMEM;
		}
		rcu_assign_pointer(mesh_paths, newtbl);
		write_unlock(&pathtbl_resize_lock);

		synchronize_rcu();
		mesh_table_free(oldtbl, false);
		write_unlock(&pathtbl_resize_lock);
	}
endadd2:
	return err;