On 08/29, Tejun Heo wrote: > > --- work.orig/kernel/freezer.c > +++ work/kernel/freezer.c > @@ -60,6 +60,7 @@ bool __refrigerator(bool check_kthr_stop > */ > spin_lock_irq(&freezer_lock); > current->flags |= PF_FROZEN; > +refreeze: > spin_unlock_irq(&freezer_lock); > > save = current->state; > @@ -78,8 +79,10 @@ bool __refrigerator(bool check_kthr_stop > schedule(); > } > > - /* leave FROZEN */ > + /* leave FROZEN after checking freezing() holding freezer_lock */ > spin_lock_irq(&freezer_lock); > + if (freezing(current)) > + goto refreeze; Looks like, you should move "save = current->state" up then. Oleg. _______________________________________________ linux-pm mailing list linux-pm@xxxxxxxxxxxxxxxxxxxxxxxxxx https://lists.linux-foundation.org/mailman/listinfo/linux-pm