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
This commit is contained in:
Jean-Sébastien Pédron 2022-11-11 18:39:48 +01:00
parent 1676c97d5d
commit c9c1255012
No known key found for this signature in database
GPG Key ID: 39E99761A5FD94CC

View File

@ -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