Author: hselasky Date: Thu Jun 7 07:38:37 2018 New Revision: 334761 URL: https://svnweb.freebsd.org/changeset/base/334761
Log: MFC r334283: The schedule_timeout_killable() function should listen for signals in the LinuxKPI. Found by: Johannes Lundberg <[email protected]> Sponsored by: Mellanox Technologies Modified: stable/11/sys/compat/linuxkpi/common/include/linux/sched.h Directory Properties: stable/11/ (props changed) Modified: stable/11/sys/compat/linuxkpi/common/include/linux/sched.h ============================================================================== --- stable/11/sys/compat/linuxkpi/common/include/linux/sched.h Thu Jun 7 07:37:38 2018 (r334760) +++ stable/11/sys/compat/linuxkpi/common/include/linux/sched.h Thu Jun 7 07:38:37 2018 (r334761) @@ -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); \ _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "[email protected]"
