asm-offsets.c (1bb078330b4f0836b5b12365cd8bf68d5f3bbff8) asm-offsets.c (a0995c0805b63c930b99970f2c9d5e4f167ca65b)
1/*
2 * Copyright (C) 1995-2003 Russell King
3 * 2001-2002 Keith Owens
4 *
5 * Generate definitions needed by assembly language modules.
6 * This code generates raw asm output which is post-processed to extract
7 * and format the required data.
8 *

--- 9 unchanged lines hidden (view full) ---

18#include <linux/kvm_host.h>
19#endif
20#include <asm/cacheflush.h>
21#include <asm/glue-df.h>
22#include <asm/glue-pf.h>
23#include <asm/mach/arch.h>
24#include <asm/thread_info.h>
25#include <asm/memory.h>
1/*
2 * Copyright (C) 1995-2003 Russell King
3 * 2001-2002 Keith Owens
4 *
5 * Generate definitions needed by assembly language modules.
6 * This code generates raw asm output which is post-processed to extract
7 * and format the required data.
8 *

--- 9 unchanged lines hidden (view full) ---

18#include <linux/kvm_host.h>
19#endif
20#include <asm/cacheflush.h>
21#include <asm/glue-df.h>
22#include <asm/glue-pf.h>
23#include <asm/mach/arch.h>
24#include <asm/thread_info.h>
25#include <asm/memory.h>
26#include <asm/mpu.h>
26#include <asm/procinfo.h>
27#include <asm/suspend.h>
28#include <asm/vdso_datapage.h>
29#include <asm/hardware/cache-l2x0.h>
30#include <linux/kbuild.h>
31#include "signal.h"
32
33/*

--- 148 unchanged lines hidden (view full) ---

182 DEFINE(CPU_CTXT_VFP, offsetof(struct kvm_cpu_context, vfp));
183 DEFINE(CPU_CTXT_GP_REGS, offsetof(struct kvm_cpu_context, gp_regs));
184 DEFINE(GP_REGS_USR, offsetof(struct kvm_regs, usr_regs));
185#endif
186 BLANK();
187#ifdef CONFIG_VDSO
188 DEFINE(VDSO_DATA_SIZE, sizeof(union vdso_data_store));
189#endif
27#include <asm/procinfo.h>
28#include <asm/suspend.h>
29#include <asm/vdso_datapage.h>
30#include <asm/hardware/cache-l2x0.h>
31#include <linux/kbuild.h>
32#include "signal.h"
33
34/*

--- 148 unchanged lines hidden (view full) ---

183 DEFINE(CPU_CTXT_VFP, offsetof(struct kvm_cpu_context, vfp));
184 DEFINE(CPU_CTXT_GP_REGS, offsetof(struct kvm_cpu_context, gp_regs));
185 DEFINE(GP_REGS_USR, offsetof(struct kvm_regs, usr_regs));
186#endif
187 BLANK();
188#ifdef CONFIG_VDSO
189 DEFINE(VDSO_DATA_SIZE, sizeof(union vdso_data_store));
190#endif
191 BLANK();
192#ifdef CONFIG_ARM_MPU
193 DEFINE(MPU_RNG_INFO_RNGS, offsetof(struct mpu_rgn_info, rgns));
194 DEFINE(MPU_RNG_INFO_USED, offsetof(struct mpu_rgn_info, used));
195
196 DEFINE(MPU_RNG_SIZE, sizeof(struct mpu_rgn));
197 DEFINE(MPU_RGN_DRBAR, offsetof(struct mpu_rgn, drbar));
198 DEFINE(MPU_RGN_DRSR, offsetof(struct mpu_rgn, drsr));
199 DEFINE(MPU_RGN_DRACR, offsetof(struct mpu_rgn, dracr));
200#endif
190 return 0;
191}
201 return 0;
202}