On 2/16/22 11:24, Jon Doron wrote:
+ qemu_mutex_lock(&synic->sint_routes_mutex); + QLIST_INSERT_HEAD_RCU(&synic->sint_routes, sint_route, link); + qemu_mutex_unlock(&synic->sint_routes_mutex);
Hi,I don't see any access to sint_routes outside hyperv_sint_route_new and hyperv_sint_route_unref. Am I missing something or is this just for debugging? If so, using the _RCU functions is not necessary.
Otherwise everything looks good, thanks! Paolo