[PATCH 04/15] ARM: idmap: only initialize HYP idmap when HYP mode is available
Christoffer Dall
c.dall at virtualopensystems.com
Sat Sep 15 11:34:55 EDT 2012
From: Marc Zyngier <marc.zyngier at arm.com>
Signed-off-by: Marc Zyngier <marc.zyngier at arm.com>
---
arch/arm/mm/idmap.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/arch/arm/mm/idmap.c b/arch/arm/mm/idmap.c
index 7a944af..95e8d67 100644
--- a/arch/arm/mm/idmap.c
+++ b/arch/arm/mm/idmap.c
@@ -8,6 +8,7 @@
#include <asm/pgtable.h>
#include <asm/sections.h>
#include <asm/system_info.h>
+#include <asm/virt.h>
pgd_t *idmap_pgd;
@@ -149,6 +150,9 @@ EXPORT_SYMBOL_GPL(hyp_idmap_setup);
static int __init hyp_init_static_idmap(void)
{
+ if (!is_hyp_mode_available())
+ return 0;
+
hyp_pgd = kzalloc(PTRS_PER_PGD * sizeof(pgd_t), GFP_KERNEL);
if (!hyp_pgd)
return -ENOMEM;
More information about the linux-arm-kernel
mailing list