https://bugzilla.novell.com/show_bug.cgi?id=839170 https://bugzilla.novell.com/show_bug.cgi?id=839170#c11 --- Comment #11 from Greg Freemyer <Greg.Freemyer@gmail.com> 2013-12-10 16:23:03 EST --- Continuing research my issues, which may or may not be the same as this bug, I found this kernel bugzilla which lasted for a month of debugging.: https://bugzilla.kernel.org/show_bug.cgi?id=61781 It concluded with this kernel patch that got pushed to 3.12 and I think to later 3.11.x kernels also. Is this in the openSUSE 13.1 released kernel yet? =========== diff --git a/fs/eventpoll.c b/fs/eventpoll.c index 473e09d..810c28f 100644 --- a/fs/eventpoll.c +++ b/fs/eventpoll.c @@ -34,7 +34,6 @@ #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> @@ -1605,8 +1604,7 @@ fetch_events: } spin_unlock_irqrestore(&ep->lock, flags); - if (!freezable_schedule_hrtimeout_range(to, slack, - HRTIMER_MODE_ABS)) + if (!schedule_hrtimeout_range(to, slack, HRTIMER_MODE_ABS)) timed_out = 1; spin_lock_irqsave(&ep->lock, flags); -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.