diff -urN linux-4.14.249/kernel/umh.c linux-4.14.249-patched/kernel/umh.c --- linux-4.14.249/kernel/umh.c 2021-10-06 14:05:11.000000000 +0100 +++ linux-4.14.249-patched/kernel/umh.c 2021-10-13 01:29:20.813796801 +0100 @@ -428,7 +428,8 @@ call_usermodehelper_freeinfo(sub_info); return -EINVAL; } - helper_lock(); + if (!(current->flags & PF_FREEZER_SKIP)) + helper_lock(); if (usermodehelper_disabled) { retval = -EBUSY; goto out; @@ -471,7 +472,8 @@ out: call_usermodehelper_freeinfo(sub_info); unlock: - helper_unlock(); + if (!(current->flags & PF_FREEZER_SKIP)) + helper_unlock(); return retval; } EXPORT_SYMBOL(call_usermodehelper_exec);