freezer: add new freezable helpers using freezer_do_not_count()
authorColin Cross <ccross@android.com>
Mon, 6 May 2013 23:50:14 +0000 (23:50 +0000)
committerArve Hjønnevåg <arve@android.com>
Mon, 1 Jul 2013 22:44:16 +0000 (15:44 -0700)
commitf8323ee4863cbe1a65f5da98f4c1d04b63d31c90
tree1c3f126b5771f82118b7c630f7d9444b2978d6fe
parent68fdb041978defd40177c4a33adf365888ce0577
freezer: add new freezable helpers using freezer_do_not_count()

Freezing tasks will wake up almost every userspace task from
where it is blocking and force it to run until it hits a
call to try_to_sleep(), generally on the exit path from the syscall
it is blocking in.  On resume each task will run again, usually
restarting the syscall and running until it hits the same
blocking call as it was originally blocked in.

To allow tasks to avoid running on every suspend/resume cycle,
this patch adds additional freezable wrappers around blocking calls
that call freezer_do_not_count().  Combined with the previous patch,
these tasks will not run during suspend or resume unless they wake
up for another reason, in which case they will run until they hit
the try_to_freeze() in freezer_count(), and then continue processing
the wakeup after tasks are thawed.

Additional patches will convert the most common locations that
userspace blocks in to use freezable helpers.

Change-Id: Id909760ce460f2532801a4b00d344f0816bfefc9
Acked-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Colin Cross <ccross@android.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
include/linux/freezer.h