Author: hselasky
Date: Mon May 28 11:26:40 2018
New Revision: 334283
URL: https://svnweb.freebsd.org/changeset/base/334283

Log:
  The schedule_timeout_killable() function should listen for signals
  in the LinuxKPI.
  
  Found by:     Johannes Lundberg <johal...@gmail.com>
  MFC after:    1 week
  Sponsored by: Mellanox Technologies

Modified:
  head/sys/compat/linuxkpi/common/include/linux/sched.h

Modified: head/sys/compat/linuxkpi/common/include/linux/sched.h
==============================================================================
--- head/sys/compat/linuxkpi/common/include/linux/sched.h       Mon May 28 
10:55:09 2018        (r334282)
+++ head/sys/compat/linuxkpi/common/include/linux/sched.h       Mon May 28 
11:26:40 2018        (r334283)
@@ -153,7 +153,7 @@ linux_schedule_get_interrupt_value(struct task_struct 
 #define        schedule_timeout(timeout)                       \
        linux_schedule_timeout(timeout)
 #define        schedule_timeout_killable(timeout)              \
-       schedule_timeout_uninterruptible(timeout)
+       schedule_timeout_interruptible(timeout)
 #define        schedule_timeout_interruptible(timeout) ({      \
        set_current_state(TASK_INTERRUPTIBLE);          \
        schedule_timeout(timeout);                      \
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to