Re: [PATCH] cgroup: properly init u64_stats

2017-11-28 Thread Tejun Heo
On Tue, Nov 28, 2017 at 01:59:25PM +0100, Lucas Stach wrote: > Lockdep complains that the stats update is trying to register a non-static > key. This is because u64_stats are using a seqlock on 32bit arches, which > needs to be initialized before usage. > > Fixes: 041cd640b2f3 (cgroup: Implement c

[PATCH] cgroup: properly init u64_stats

2017-11-28 Thread Lucas Stach
Lockdep complains that the stats update is trying to register a non-static key. This is because u64_stats are using a seqlock on 32bit arches, which needs to be initialized before usage. Fixes: 041cd640b2f3 (cgroup: Implement cgroup2 basic CPU usage accounting) Signed-off-by: Lucas Stach --- ker