| Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 1 | /* Freezer declarations */ | 
 | 2 |  | 
| Rafael J. Wysocki | 8314418 | 2007-07-17 04:03:35 -0700 | [diff] [blame] | 3 | #ifndef FREEZER_H_INCLUDED | 
 | 4 | #define FREEZER_H_INCLUDED | 
 | 5 |  | 
| Randy Dunlap | 5c543ef | 2006-12-10 02:18:58 -0800 | [diff] [blame] | 6 | #include <linux/sched.h> | 
| Rafael J. Wysocki | e42837b | 2007-10-18 03:04:45 -0700 | [diff] [blame] | 7 | #include <linux/wait.h> | 
| Randy Dunlap | 5c543ef | 2006-12-10 02:18:58 -0800 | [diff] [blame] | 8 |  | 
| Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 9 | #ifdef CONFIG_PM_SLEEP | 
| Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 10 | /* | 
 | 11 |  * Check if a process has been frozen | 
 | 12 |  */ | 
 | 13 | static inline int frozen(struct task_struct *p) | 
 | 14 | { | 
 | 15 | 	return p->flags & PF_FROZEN; | 
 | 16 | } | 
 | 17 |  | 
 | 18 | /* | 
 | 19 |  * Check if there is a request to freeze a process | 
 | 20 |  */ | 
 | 21 | static inline int freezing(struct task_struct *p) | 
 | 22 | { | 
| Rafael J. Wysocki | 8a102ee | 2006-12-13 00:34:30 -0800 | [diff] [blame] | 23 | 	return test_tsk_thread_flag(p, TIF_FREEZE); | 
| Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 24 | } | 
 | 25 |  | 
 | 26 | /* | 
 | 27 |  * Request that a process be frozen | 
| Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 28 |  */ | 
| Rafael J. Wysocki | 0c1eecf | 2007-07-19 01:47:33 -0700 | [diff] [blame] | 29 | static inline void set_freeze_flag(struct task_struct *p) | 
| Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 30 | { | 
| Rafael J. Wysocki | 8a102ee | 2006-12-13 00:34:30 -0800 | [diff] [blame] | 31 | 	set_tsk_thread_flag(p, TIF_FREEZE); | 
| Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 32 | } | 
 | 33 |  | 
 | 34 | /* | 
 | 35 |  * Sometimes we may need to cancel the previous 'freeze' request | 
 | 36 |  */ | 
| Rafael J. Wysocki | 0c1eecf | 2007-07-19 01:47:33 -0700 | [diff] [blame] | 37 | static inline void clear_freeze_flag(struct task_struct *p) | 
| Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 38 | { | 
| Rafael J. Wysocki | 8a102ee | 2006-12-13 00:34:30 -0800 | [diff] [blame] | 39 | 	clear_tsk_thread_flag(p, TIF_FREEZE); | 
| Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 40 | } | 
 | 41 |  | 
 | 42 | /* | 
 | 43 |  * Wake up a frozen process | 
| Rafael J. Wysocki | 33e1c28 | 2007-05-23 13:57:24 -0700 | [diff] [blame] | 44 |  * | 
 | 45 |  * task_lock() is taken to prevent the race with refrigerator() which may | 
 | 46 |  * occur if the freezing of tasks fails.  Namely, without the lock, if the | 
 | 47 |  * freezing of tasks failed, thaw_tasks() might have run before a task in | 
 | 48 |  * refrigerator() could call frozen_process(), in which case the task would be | 
 | 49 |  * frozen and no one would thaw it. | 
| Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 50 |  */ | 
 | 51 | static inline int thaw_process(struct task_struct *p) | 
 | 52 | { | 
| Rafael J. Wysocki | 33e1c28 | 2007-05-23 13:57:24 -0700 | [diff] [blame] | 53 | 	task_lock(p); | 
| Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 54 | 	if (frozen(p)) { | 
 | 55 | 		p->flags &= ~PF_FROZEN; | 
| Rafael J. Wysocki | 33e1c28 | 2007-05-23 13:57:24 -0700 | [diff] [blame] | 56 | 		task_unlock(p); | 
| Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 57 | 		wake_up_process(p); | 
 | 58 | 		return 1; | 
 | 59 | 	} | 
| Rafael J. Wysocki | 0c1eecf | 2007-07-19 01:47:33 -0700 | [diff] [blame] | 60 | 	clear_freeze_flag(p); | 
| Rafael J. Wysocki | 33e1c28 | 2007-05-23 13:57:24 -0700 | [diff] [blame] | 61 | 	task_unlock(p); | 
| Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 62 | 	return 0; | 
 | 63 | } | 
 | 64 |  | 
| Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 65 | extern void refrigerator(void); | 
 | 66 | extern int freeze_processes(void); | 
| Rafael J. Wysocki | a9b6f56 | 2006-12-06 20:34:37 -0800 | [diff] [blame] | 67 | extern void thaw_processes(void); | 
| Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 68 |  | 
 | 69 | static inline int try_to_freeze(void) | 
 | 70 | { | 
 | 71 | 	if (freezing(current)) { | 
 | 72 | 		refrigerator(); | 
 | 73 | 		return 1; | 
 | 74 | 	} else | 
 | 75 | 		return 0; | 
 | 76 | } | 
| Nigel Cunningham | ff39593 | 2006-12-06 20:34:28 -0800 | [diff] [blame] | 77 |  | 
| Rafael J. Wysocki | ba96a0c | 2007-05-23 13:57:25 -0700 | [diff] [blame] | 78 | /* | 
 | 79 |  * The PF_FREEZER_SKIP flag should be set by a vfork parent right before it | 
 | 80 |  * calls wait_for_completion(&vfork) and reset right after it returns from this | 
 | 81 |  * function.  Next, the parent should call try_to_freeze() to freeze itself | 
 | 82 |  * appropriately in case the child has exited before the freezing of tasks is | 
 | 83 |  * complete.  However, we don't want kernel threads to be frozen in unexpected | 
 | 84 |  * places, so we allow them to block freeze_processes() instead or to set | 
 | 85 |  * PF_NOFREEZE if needed and PF_FREEZER_SKIP is only set for userland vfork | 
 | 86 |  * parents.  Fortunately, in the ____call_usermodehelper() case the parent won't | 
 | 87 |  * really block freeze_processes(), since ____call_usermodehelper() (the child) | 
 | 88 |  * does a little before exec/exit and it can't be frozen before waking up the | 
 | 89 |  * parent. | 
 | 90 |  */ | 
 | 91 |  | 
 | 92 | /* | 
 | 93 |  * If the current task is a user space one, tell the freezer not to count it as | 
 | 94 |  * freezable. | 
 | 95 |  */ | 
 | 96 | static inline void freezer_do_not_count(void) | 
 | 97 | { | 
 | 98 | 	if (current->mm) | 
 | 99 | 		current->flags |= PF_FREEZER_SKIP; | 
 | 100 | } | 
 | 101 |  | 
 | 102 | /* | 
 | 103 |  * If the current task is a user space one, tell the freezer to count it as | 
 | 104 |  * freezable again and try to freeze it. | 
 | 105 |  */ | 
 | 106 | static inline void freezer_count(void) | 
 | 107 | { | 
 | 108 | 	if (current->mm) { | 
 | 109 | 		current->flags &= ~PF_FREEZER_SKIP; | 
 | 110 | 		try_to_freeze(); | 
 | 111 | 	} | 
 | 112 | } | 
 | 113 |  | 
 | 114 | /* | 
 | 115 |  * Check if the task should be counted as freezeable by the freezer | 
 | 116 |  */ | 
 | 117 | static inline int freezer_should_skip(struct task_struct *p) | 
 | 118 | { | 
 | 119 | 	return !!(p->flags & PF_FREEZER_SKIP); | 
 | 120 | } | 
| Nigel Cunningham | ff39593 | 2006-12-06 20:34:28 -0800 | [diff] [blame] | 121 |  | 
| Rafael J. Wysocki | 8314418 | 2007-07-17 04:03:35 -0700 | [diff] [blame] | 122 | /* | 
 | 123 |  * Tell the freezer that the current task should be frozen by it | 
 | 124 |  */ | 
 | 125 | static inline void set_freezable(void) | 
 | 126 | { | 
 | 127 | 	current->flags &= ~PF_NOFREEZE; | 
 | 128 | } | 
 | 129 |  | 
| Rafael J. Wysocki | e42837b | 2007-10-18 03:04:45 -0700 | [diff] [blame] | 130 | /* | 
| Rafael J. Wysocki | ebb12db | 2008-06-11 22:04:29 +0200 | [diff] [blame] | 131 |  * Tell the freezer that the current task should be frozen by it and that it | 
 | 132 |  * should send a fake signal to the task to freeze it. | 
 | 133 |  */ | 
 | 134 | static inline void set_freezable_with_signal(void) | 
 | 135 | { | 
 | 136 | 	current->flags &= ~(PF_NOFREEZE | PF_FREEZER_NOSIG); | 
 | 137 | } | 
 | 138 |  | 
 | 139 | /* | 
| Rafael J. Wysocki | e42837b | 2007-10-18 03:04:45 -0700 | [diff] [blame] | 140 |  * Freezer-friendly wrappers around wait_event_interruptible() and | 
 | 141 |  * wait_event_interruptible_timeout(), originally defined in <linux/wait.h> | 
 | 142 |  */ | 
 | 143 |  | 
 | 144 | #define wait_event_freezable(wq, condition)				\ | 
 | 145 | ({									\ | 
 | 146 | 	int __retval;							\ | 
 | 147 | 	do {								\ | 
 | 148 | 		__retval = wait_event_interruptible(wq, 		\ | 
 | 149 | 				(condition) || freezing(current));	\ | 
 | 150 | 		if (__retval && !freezing(current))			\ | 
 | 151 | 			break;						\ | 
 | 152 | 		else if (!(condition))					\ | 
 | 153 | 			__retval = -ERESTARTSYS;			\ | 
 | 154 | 	} while (try_to_freeze());					\ | 
 | 155 | 	__retval;							\ | 
 | 156 | }) | 
 | 157 |  | 
 | 158 |  | 
 | 159 | #define wait_event_freezable_timeout(wq, condition, timeout)		\ | 
 | 160 | ({									\ | 
 | 161 | 	long __retval = timeout;					\ | 
 | 162 | 	do {								\ | 
 | 163 | 		__retval = wait_event_interruptible_timeout(wq,		\ | 
 | 164 | 				(condition) || freezing(current),	\ | 
 | 165 | 				__retval); 				\ | 
 | 166 | 	} while (try_to_freeze());					\ | 
 | 167 | 	__retval;							\ | 
 | 168 | }) | 
| Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 169 | #else /* !CONFIG_PM_SLEEP */ | 
| Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 170 | static inline int frozen(struct task_struct *p) { return 0; } | 
 | 171 | static inline int freezing(struct task_struct *p) { return 0; } | 
| Rafael J. Wysocki | 0c1eecf | 2007-07-19 01:47:33 -0700 | [diff] [blame] | 172 | static inline void set_freeze_flag(struct task_struct *p) {} | 
 | 173 | static inline void clear_freeze_flag(struct task_struct *p) {} | 
| Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 174 | static inline int thaw_process(struct task_struct *p) { return 1; } | 
| Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 175 |  | 
 | 176 | static inline void refrigerator(void) {} | 
 | 177 | static inline int freeze_processes(void) { BUG(); return 0; } | 
 | 178 | static inline void thaw_processes(void) {} | 
 | 179 |  | 
 | 180 | static inline int try_to_freeze(void) { return 0; } | 
 | 181 |  | 
| Rafael J. Wysocki | ba96a0c | 2007-05-23 13:57:25 -0700 | [diff] [blame] | 182 | static inline void freezer_do_not_count(void) {} | 
 | 183 | static inline void freezer_count(void) {} | 
 | 184 | static inline int freezer_should_skip(struct task_struct *p) { return 0; } | 
| Rafael J. Wysocki | 8314418 | 2007-07-17 04:03:35 -0700 | [diff] [blame] | 185 | static inline void set_freezable(void) {} | 
| Rafael J. Wysocki | ebb12db | 2008-06-11 22:04:29 +0200 | [diff] [blame] | 186 | static inline void set_freezable_with_signal(void) {} | 
| Rafael J. Wysocki | e42837b | 2007-10-18 03:04:45 -0700 | [diff] [blame] | 187 |  | 
 | 188 | #define wait_event_freezable(wq, condition)				\ | 
 | 189 | 		wait_event_interruptible(wq, condition) | 
 | 190 |  | 
 | 191 | #define wait_event_freezable_timeout(wq, condition, timeout)		\ | 
 | 192 | 		wait_event_interruptible_timeout(wq, condition, timeout) | 
 | 193 |  | 
| Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 194 | #endif /* !CONFIG_PM_SLEEP */ | 
| Rafael J. Wysocki | 8314418 | 2007-07-17 04:03:35 -0700 | [diff] [blame] | 195 |  | 
 | 196 | #endif	/* FREEZER_H_INCLUDED */ |