PM / Freezer: Remove references to TIF_FREEZE in comments
[sfrench/cifs-2.6.git] / kernel / freezer.c
index 9815b8d1eed5536e312c561a0c066578e359bd51..11f82a4d4eae07b4d98595852ea50dcf1c028a6b 100644 (file)
@@ -99,9 +99,9 @@ static void fake_signal_wake_up(struct task_struct *p)
  * freeze_task - send a freeze request to given task
  * @p: task to send the request to
  *
- * If @p is freezing, the freeze request is sent by setting %TIF_FREEZE
- * flag and either sending a fake signal to it or waking it up, depending
- * on whether it has %PF_FREEZER_NOSIG set.
+ * If @p is freezing, the freeze request is sent either by sending a fake
+ * signal (if it's not a kernel thread) or waking it up (if it's a kernel
+ * thread).
  *
  * RETURNS:
  * %false, if @p is not freezing or already frozen; %true, otherwise