summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '2905_2disk-resume-image-fix.patch')
-rw-r--r--2905_2disk-resume-image-fix.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/2905_2disk-resume-image-fix.patch b/2905_2disk-resume-image-fix.patch
deleted file mode 100644
index 7e95d298..00000000
--- a/2905_2disk-resume-image-fix.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff --git a/kernel/kmod.c b/kernel/kmod.c
-index fb32636..d968882 100644
---- a/kernel/kmod.c
-+++ b/kernel/kmod.c
-@@ -575,7 +575,8 @@
- call_usermodehelper_freeinfo(sub_info);
- return -EINVAL;
- }
-- helper_lock();
-+ if (!(current->flags & PF_FREEZER_SKIP))
-+ helper_lock();
- if (!khelper_wq || usermodehelper_disabled) {
- retval = -EBUSY;
- goto out;
-@@ -611,7 +612,8 @@ wait_done:
- out:
- call_usermodehelper_freeinfo(sub_info);
- unlock:
-- helper_unlock();
-+ if (!(current->flags & PF_FREEZER_SKIP))
-+ helper_unlock();
- return retval;
- }
- EXPORT_SYMBOL(call_usermodehelper_exec);