On Fri, May 29, 2020 at 11:10 AM Davide Caratti <dcara...@redhat.com> wrote: > > this is caused by hrtimer_cancel(), running before hrtimer_init(). Fix it > ensuring to call hrtimer_cancel() only if clockid is valid, and the timer > has been initialized. After fixing this splat, the same error path causes > another problem:
Hmm, but hrtimer_init() should not be called for an existing action either, right? If so, we need to move it under ACT_P_CREATED too, and you do not need to touch tcf_gate_cleanup() any more. Thanks.