Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 11 Nov 2022 17:57:46 GMT
From:      =?utf-8?Q?Jean-S=C3=A9bastien=20P=C3=A9dron?= <dumbbell@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: c9c1255012de - main - linuxkpi: Add <linux/mmzone.h>
Message-ID:  <202211111757.2ABHvk5J044853@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by dumbbell (ports committer):

URL: https://cgit.FreeBSD.org/src/commit/?id=c9c1255012de441ec642b7521da4c9fbad40a839

commit c9c1255012de441ec642b7521da4c9fbad40a839
Author:     Jean-Sébastien Pédron <dumbbell@FreeBSD.org>
AuthorDate: 2022-11-11 17:39:48 +0000
Commit:     Jean-Sébastien Pédron <dumbbell@FreeBSD.org>
CommitDate: 2022-11-11 17:39:48 +0000

    linuxkpi: Add <linux/mmzone.h>
    
    It provides the `MAX_ORDER` constant.
    
    Reviewed by:    emaste manu
    Approved by:    emaste manu
    Differential Revision:  https://reviews.freebsd.org/D36962
---
 sys/compat/linuxkpi/common/include/linux/mmzone.h | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/sys/compat/linuxkpi/common/include/linux/mmzone.h b/sys/compat/linuxkpi/common/include/linux/mmzone.h
new file mode 100644
index 000000000000..49cc218c6fce
--- /dev/null
+++ b/sys/compat/linuxkpi/common/include/linux/mmzone.h
@@ -0,0 +1,11 @@
+/* Public domain. */
+
+#ifndef _LINUX_MMZONE_H
+#define _LINUX_MMZONE_H
+
+#include <linux/mm_types.h>
+#include <linux/page-flags.h>
+
+#define MAX_ORDER	11
+
+#endif



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