]> git.baikalelectronics.ru Git - kernel.git/commit
arm64: mm: fix show_pte KERN_CONT fallout
authorMark Rutland <mark.rutland@arm.com>
Tue, 3 Jan 2017 14:27:26 +0000 (14:27 +0000)
committerCatalin Marinas <catalin.marinas@arm.com>
Wed, 4 Jan 2017 16:25:50 +0000 (16:25 +0000)
commit194f9f1d86b84a0484a02aa0f258501a5b668791
tree376c8723af91ee5359515fa5084a85f013de0391
parenta780c2d5637d959a6133b349d5166a4148a42da3
arm64: mm: fix show_pte KERN_CONT fallout

Recent changes made KERN_CONT mandatory for continued lines. In the
absence of KERN_CONT, a newline may be implicit inserted by the core
printk code.

In show_pte, we (erroneously) use printk without KERN_CONT for continued
prints, resulting in output being split across a number of lines, and
not matching the intended output, e.g.

[ff000000000000] *pgd=00000009f511b003
, *pud=00000009f4a80003
, *pmd=0000000000000000

Fix this by using pr_cont() for all the continuations.

Acked-by: Will Deacon <will.deacon@arm.com>
Signed-off-by: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
arch/arm64/mm/fault.c