|
@@ -6,6 +6,7 @@
|
|
#include <linux/init.h>
|
|
#include <linux/init.h>
|
|
#include <linux/pm.h>
|
|
#include <linux/pm.h>
|
|
#include <linux/mm.h>
|
|
#include <linux/mm.h>
|
|
|
|
+#include <linux/freezer.h>
|
|
#include <asm/errno.h>
|
|
#include <asm/errno.h>
|
|
|
|
|
|
#ifdef CONFIG_VT
|
|
#ifdef CONFIG_VT
|
|
@@ -380,16 +381,14 @@ static inline void unlock_system_sleep(void) {}
|
|
|
|
|
|
static inline void lock_system_sleep(void)
|
|
static inline void lock_system_sleep(void)
|
|
{
|
|
{
|
|
- /* simplified freezer_do_not_count() */
|
|
|
|
- current->flags |= PF_FREEZER_SKIP;
|
|
|
|
|
|
+ freezer_do_not_count();
|
|
mutex_lock(&pm_mutex);
|
|
mutex_lock(&pm_mutex);
|
|
}
|
|
}
|
|
|
|
|
|
static inline void unlock_system_sleep(void)
|
|
static inline void unlock_system_sleep(void)
|
|
{
|
|
{
|
|
mutex_unlock(&pm_mutex);
|
|
mutex_unlock(&pm_mutex);
|
|
- /* simplified freezer_count() */
|
|
|
|
- current->flags &= ~PF_FREEZER_SKIP;
|
|
|
|
|
|
+ freezer_count();
|
|
}
|
|
}
|
|
#endif
|
|
#endif
|
|
|
|
|