Author: hselasky
Date: Wed Jun 20 06:41:15 2018
New Revision: 335418
URL: https://svnweb.freebsd.org/changeset/base/335418

Log:
  MFC r334663:
  Implement the INIT_DELAYED_WORK_ONSTACK() function macro in the LinuxKPI.
  
  Submitted by: Johannes Lundberg <johal...@gmail.com>
  Sponsored by: Mellanox Technologies
  Sponsored by: Limelight Networks

Modified:
  stable/11/sys/compat/linuxkpi/common/include/linux/workqueue.h
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/compat/linuxkpi/common/include/linux/workqueue.h
==============================================================================
--- stable/11/sys/compat/linuxkpi/common/include/linux/workqueue.h      Wed Jun 
20 06:40:19 2018        (r335417)
+++ stable/11/sys/compat/linuxkpi/common/include/linux/workqueue.h      Wed Jun 
20 06:41:15 2018        (r335418)
@@ -117,6 +117,9 @@ do {                                                        
                \
 #define        INIT_DELAYED_WORK(dwork, fn) \
        linux_init_delayed_work(dwork, fn)
 
+#define        INIT_DELAYED_WORK_ONSTACK(dwork, fn) \
+       linux_init_delayed_work(dwork, fn)
+
 #define        INIT_DEFERRABLE_WORK(dwork, fn) \
        INIT_DELAYED_WORK(dwork, fn)
 
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to