Any questions? On 2022/04/30 19:25, Tetsuo Handa wrote: > Flushing system-wide workqueues is dangerous and will be forbidden. > Replace system_wq with local rtc_wq. > > While we are at it, remove unused rtc_dev_exit(). > > Link: https://lkml.kernel.org/r/49925af7-78a8-a3dd-bce6-cfc02e1a9236@xxxxxxxxxxxxxxxxxxx > Signed-off-by: Tetsuo Handa <penguin-kernel@xxxxxxxxxxxxxxxxxxx> > --- > Changes in v2: > Remove unused rtc_dev_exit(). > > Since rtc_dev_init() is built into vmlinux, there is no point with > recovery. > > This patch blindly converts schedule_work() into queue_work() within > drivers/rtc/dev.c, based on an assumption that none of work items > outside of drivers/rtc/dev.c needs to be handled by rtc_wq. > Did I convert correctly?