The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/openzfs/config/kernel-zero_page.m4

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 dnl #
    2 dnl # ZERO_PAGE() is an alias for emtpy_zero_page. On certain architectures
    3 dnl # this is a GPL exported variable.
    4 dnl #
    5 
    6 dnl #
    7 dnl # Checking if ZERO_PAGE is exported GPL-only
    8 dnl #
    9 AC_DEFUN([ZFS_AC_KERNEL_SRC_ZERO_PAGE], [
   10         ZFS_LINUX_TEST_SRC([zero_page], [
   11                 #include <asm/pgtable.h>
   12         ], [
   13                 struct page *p __attribute__ ((unused));
   14                 p = ZERO_PAGE(0);
   15         ], [], [ZFS_META_LICENSE])
   16 ])
   17 
   18 AC_DEFUN([ZFS_AC_KERNEL_ZERO_PAGE], [
   19         AC_MSG_CHECKING([whether ZERO_PAGE() is GPL-only])
   20         ZFS_LINUX_TEST_RESULT([zero_page_license], [
   21                 AC_MSG_RESULT(no)
   22         ], [
   23                 AC_MSG_RESULT(yes)
   24                 AC_DEFINE(HAVE_ZERO_PAGE_GPL_ONLY, 1,
   25                     [ZERO_PAGE() is GPL-only])
   26         ])
   27 ])

Cache object: 64dbd7e9072ab9d1ac6b157e8777641f


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.