Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 5 Jun 2018 15:46:16 +0000 (UTC)
From:      Hans Petter Selasky <hselasky@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r334663 - head/sys/compat/linuxkpi/common/include/linux
Message-ID:  <201806051546.w55FkG4S044038@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: hselasky
Date: Tue Jun  5 15:46:16 2018
New Revision: 334663
URL: https://svnweb.freebsd.org/changeset/base/334663

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

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

Modified: head/sys/compat/linuxkpi/common/include/linux/workqueue.h
==============================================================================
--- head/sys/compat/linuxkpi/common/include/linux/workqueue.h	Tue Jun  5 15:42:35 2018	(r334662)
+++ head/sys/compat/linuxkpi/common/include/linux/workqueue.h	Tue Jun  5 15:46:16 2018	(r334663)
@@ -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)
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806051546.w55FkG4S044038>