aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
Diffstat (limited to 'arch')
-rw-r--r--arch/arm64/kernel/psci.c2
-rw-r--r--arch/arm64/mm/dump.c5
2 files changed, 3 insertions, 4 deletions
diff --git a/arch/arm64/kernel/psci.c b/arch/arm64/kernel/psci.c
index 3425f311c49e..f1dbca7d5c96 100644
--- a/arch/arm64/kernel/psci.c
+++ b/arch/arm64/kernel/psci.c
@@ -540,6 +540,8 @@ const struct cpu_operations cpu_psci_ops = {
540 .name = "psci", 540 .name = "psci",
541#ifdef CONFIG_CPU_IDLE 541#ifdef CONFIG_CPU_IDLE
542 .cpu_init_idle = cpu_psci_cpu_init_idle, 542 .cpu_init_idle = cpu_psci_cpu_init_idle,
543#endif
544#ifdef CONFIG_ARM64_CPU_SUSPEND
543 .cpu_suspend = cpu_psci_cpu_suspend, 545 .cpu_suspend = cpu_psci_cpu_suspend,
544#endif 546#endif
545#ifdef CONFIG_SMP 547#ifdef CONFIG_SMP
diff --git a/arch/arm64/mm/dump.c b/arch/arm64/mm/dump.c
index bf69601be546..cf33f33333cc 100644
--- a/arch/arm64/mm/dump.c
+++ b/arch/arm64/mm/dump.c
@@ -182,9 +182,6 @@ static void note_page(struct pg_state *st, unsigned long addr, unsigned level,
182 static const char units[] = "KMGTPE"; 182 static const char units[] = "KMGTPE";
183 u64 prot = val & pg_level[level].mask; 183 u64 prot = val & pg_level[level].mask;
184 184
185 if (addr < LOWEST_ADDR)
186 return;
187
188 if (!st->level) { 185 if (!st->level) {
189 st->level = level; 186 st->level = level;
190 st->current_prot = prot; 187 st->current_prot = prot;
@@ -272,7 +269,7 @@ static void walk_pud(struct pg_state *st, pgd_t *pgd, unsigned long start)
272 269
273static void walk_pgd(struct pg_state *st, struct mm_struct *mm, unsigned long start) 270static void walk_pgd(struct pg_state *st, struct mm_struct *mm, unsigned long start)
274{ 271{
275 pgd_t *pgd = pgd_offset(mm, 0); 272 pgd_t *pgd = pgd_offset(mm, 0UL);
276 unsigned i; 273 unsigned i;
277 unsigned long addr; 274 unsigned long addr;
278 275