Julian Anastasov <[email protected]> wrote: > + *valp = val; > + if (rcu_dereference_protected(ipvs->conn_tab, 1)) > + mod_delayed_work(system_unbound_wq, > + &ipvs->conn_resize_work, 0);
Can I change this to rcu_access_pointer()? rcu_dereference_protected( ... , 1) ... always looks like a bug to me, even though its fine here.
