diff options
Diffstat (limited to 'sys/arm')
-rw-r--r-- | sys/arm/arm/physmem.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/arm/arm/physmem.c b/sys/arm/arm/physmem.c index d42cac4..8618e46 100644 --- a/sys/arm/arm/physmem.c +++ b/sys/arm/arm/physmem.c @@ -168,6 +168,12 @@ regions_to_avail(vm_paddr_t *avail, uint32_t exflags) end = hwp->size + start; realmem += arm32_btop(end - start); for (exi = 0, exp = exregions; exi < excnt; ++exi, ++exp) { + /* + * If the excluded region does not match given flags, + * continue checking with the next excluded region. + */ + if ((exp->flags & exflags) == 0) + continue; xstart = exp->addr; xend = exp->size + xstart; /* |