bounds.c 631 字节
Newer Older
1 2 3 4 5 6 7 8
/*
 * Generate definitions needed by the preprocessor.
 * This code generates raw asm output which is post-processed
 * to extract and format the required data.
 */

#define __GENERATING_BOUNDS_H
/* Include headers that define the enum constants of interest */
9
#include <linux/page-flags.h>
C
Christoph Lameter 已提交
10
#include <linux/mmzone.h>
11 12 13 14 15 16 17 18 19

#define DEFINE(sym, val) \
        asm volatile("\n->" #sym " %0 " #val : : "i" (val))

#define BLANK() asm volatile("\n->" : : )

void foo(void)
{
	/* The enum constants to put into include/linux/bounds.h */
20
	DEFINE(NR_PAGEFLAGS, __NR_PAGEFLAGS);
C
Christoph Lameter 已提交
21
	DEFINE(MAX_NR_ZONES, __MAX_NR_ZONES);
22 23
	/* End of constants */
}