blob: 5253204afdcace55e89cda669aaf2896eba23aaa [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>
Peter Zijlstra90572892013-10-07 11:29:20 +010013#include <linux/log2.h>
Kirill A. Shutemov24b9fdc2013-11-18 10:47:27 +020014#include <linux/spinlock_types.h>
Christoph Lameter1cdf25d2008-04-28 02:12:44 -070015
16void foo(void)
17{
Sam Ravnborg01fc0ac2009-04-19 21:57:19 +020018 /* The enum constants to put into include/generated/bounds.h */
Christoph Lameter9223b412008-04-28 02:12:48 -070019 DEFINE(NR_PAGEFLAGS, __NR_PAGEFLAGS);
Christoph Lameter97965472008-04-28 02:12:54 -070020 DEFINE(MAX_NR_ZONES, __MAX_NR_ZONES);
Johannes Weiner6b3ae582011-03-23 16:42:30 -070021 DEFINE(NR_PCG_FLAGS, __NR_PCG_FLAGS);
Peter Zijlstra90572892013-10-07 11:29:20 +010022#ifdef CONFIG_SMP
23 DEFINE(NR_CPUS_BITS, ilog2(CONFIG_NR_CPUS));
24#endif
Peter Zijlstra539edb52013-11-14 14:31:52 -080025 DEFINE(BLOATED_SPINLOCKS, sizeof(spinlock_t) > sizeof(int));
Christoph Lameter1cdf25d2008-04-28 02:12:44 -070026 /* End of constants */
27}