Re: [PATCH v2 6/6] sched: Annotate perf_domain pointer with __rcu

2019-02-25 Thread Paul E. McKenney
On Sat, Feb 23, 2019 at 01:34:34AM -0500, Joel Fernandes (Google) wrote: > This fixes the following sparse errors in sched/fair.c: > > fair.c:6506:14: error: incompatible types in comparison expression > fair.c:8642:21: error: incompatible types in comparison expression > > Using __rcu will also

[PATCH v2 6/6] sched: Annotate perf_domain pointer with __rcu

2019-02-22 Thread Joel Fernandes (Google)
This fixes the following sparse errors in sched/fair.c: fair.c:6506:14: error: incompatible types in comparison expression fair.c:8642:21: error: incompatible types in comparison expression Using __rcu will also help sparse catch any future bugs. Signed-off-by: Joel Fernandes (Google) ---