firmware/br-ext-chip-allwinner/board/v83x/kernel/patches/00000-fs_eventpoll.c.patch

22 lines
661 B
Diff

diff -drupN a/fs/eventpoll.c b/fs/eventpoll.c
--- a/fs/eventpoll.c 2018-08-06 17:23:04.000000000 +0300
+++ b/fs/eventpoll.c 2022-06-12 05:28:14.000000000 +0300
@@ -34,6 +34,7 @@
#include <linux/mutex.h>
#include <linux/anon_inodes.h>
#include <linux/device.h>
+#include <linux/freezer.h>
#include <asm/uaccess.h>
#include <asm/io.h>
#include <asm/mman.h>
@@ -1673,7 +1674,8 @@ fetch_events:
}
spin_unlock_irqrestore(&ep->lock, flags);
- if (!schedule_hrtimeout_range(to, slack, HRTIMER_MODE_ABS))
+ if (!freezable_schedule_hrtimeout_range(to, slack,
+ HRTIMER_MODE_ABS))
timed_out = 1;
spin_lock_irqsave(&ep->lock, flags);