Date: Wed, 13 Feb 2019 18:55:47 +0000 (UTC) From: Ben Widawsky <bwidawsk@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org Subject: svn commit: r344110 - stable/12/sys/compat/linuxkpi/common/include/linux Message-ID: <201902131855.x1DItldn076423@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bwidawsk Date: Wed Feb 13 18:55:47 2019 New Revision: 344110 URL: https://svnweb.freebsd.org/changeset/base/344110 Log: MFC r340000: linuxkpi: Add GFP flags needed for ttm drivers Submitted by: Johannes Lundberg <johalun0@gmail.com> Requested by: bwidawsk Approved by: emaste (mentor) Modified: stable/12/sys/compat/linuxkpi/common/include/linux/gfp.h Directory Properties: stable/12/ (props changed) Modified: stable/12/sys/compat/linuxkpi/common/include/linux/gfp.h ============================================================================== --- stable/12/sys/compat/linuxkpi/common/include/linux/gfp.h Wed Feb 13 18:28:53 2019 (r344109) +++ stable/12/sys/compat/linuxkpi/common/include/linux/gfp.h Wed Feb 13 18:55:47 2019 (r344110) @@ -52,6 +52,7 @@ #define __GFP_RETRY_MAYFAIL 0 #define __GFP_MOVABLE 0 #define __GFP_COMP 0 +#define __GFP_KSWAPD_RECLAIM 0 #define __GFP_IO 0 #define __GFP_NO_KSWAPD 0 @@ -73,6 +74,7 @@ #define GFP_TEMPORARY M_NOWAIT #define GFP_NATIVE_MASK (M_NOWAIT | M_WAITOK | M_USE_RESERVE | M_ZERO) #define GFP_TRANSHUGE 0 +#define GFP_TRANSHUGE_LIGHT 0 CTASSERT((__GFP_DMA32 & GFP_NATIVE_MASK) == 0); CTASSERT((__GFP_BITS_MASK & GFP_NATIVE_MASK) == GFP_NATIVE_MASK);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902131855.x1DItldn076423>