blob: 0c9b862292b26dc0494f771f96532fd8995c2b3b [file] [log] [blame]
Christoph Lameter1cdf25d2008-04-28 02:12:44 -07001/*
2 * Generate definitions needed by the preprocessor.
3 * This code generates raw asm output which is post-processed
4 * to extract and format the required data.
5 */
6
7#define __GENERATING_BOUNDS_H
8/* Include headers that define the enum constants of interest */
Christoph Lameter9223b412008-04-28 02:12:48 -07009#include <linux/page-flags.h>
Christoph Lameter97965472008-04-28 02:12:54 -070010#include <linux/mmzone.h>
Christoph Lameter37487a52008-04-29 01:03:49 -070011#include <linux/kbuild.h>
Johannes Weiner6b3ae582011-03-23 16:42:30 -070012#include <linux/page_cgroup.h>
Christoph Lameter1cdf25d2008-04-28 02:12:44 -070013
14void foo(void)
15{
Sam Ravnborg01fc0ac2009-04-19 21:57:19 +020016 /* The enum constants to put into include/generated/bounds.h */
Christoph Lameter9223b412008-04-28 02:12:48 -070017 DEFINE(NR_PAGEFLAGS, __NR_PAGEFLAGS);
Christoph Lameter97965472008-04-28 02:12:54 -070018 DEFINE(MAX_NR_ZONES, __MAX_NR_ZONES);
Johannes Weiner6b3ae582011-03-23 16:42:30 -070019 DEFINE(NR_PCG_FLAGS, __NR_PCG_FLAGS);
Christoph Lameter1cdf25d2008-04-28 02:12:44 -070020 /* End of constants */
21}