MIPS: MAAR: Fix address alignment
authorJames Hogan <james.hogan@imgtec.com>
Tue, 9 Aug 2016 12:21:49 +0000 (13:21 +0100)
committerRalf Baechle <ralf@linux-mips.org>
Tue, 16 Aug 2016 16:09:01 +0000 (18:09 +0200)
commitab4d3b41072db8de2537e700c54bd8990472e057
tree9e3c7a538a4180f2d61718dfa005274ce9d1b0c8
parent8bb9216dfca4ee56ec423f32285e7bfaf450652e
MIPS: MAAR: Fix address alignment

The alignment of MIPS MAAR region addresses isn't quite right.

- It rounds an already 64 KiB aligned start address up to the next
  64 KiB boundary, e.g. 0x80000000 is rounded up to 0x80010000.

- It assumes the end address is already on a 64 KiB boundary and doesn't
  round it down. Should that not be the case it will hit the second
  BUG_ON() in write_maar_pair().

Both cases are addressed by rounding up and down to 64 KiB boundaries in
the more traditional way of adding 0xffff (for rounding up) and masking
off the low 16 bits.

Signed-off-by: James Hogan <james.hogan@imgtec.com>
Cc: Paul Burton <paul.burton@imgtec.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/13858/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/mm/init.c
This page took 0.024602 seconds and 5 git commands to generate.