]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit - mm/page_alloc.c
mm, generic, x86 boot: more tweaks to hex prints of some pfn addresses
authorPaul Jackson <pj@sgi.com>
Wed, 25 Jun 2008 12:44:40 +0000 (05:44 -0700)
committerIngo Molnar <mingo@elte.hu>
Tue, 8 Jul 2008 11:10:40 +0000 (13:10 +0200)
commit5dab8ec139be215fbaba216fb4aea914d0f4dac5
tree246dfbfdf1d6cbf0177329cedf6da23f6480c27a
parent3381959da5a00ae8289cfbd28b0b6d228f2d1d46
mm, generic, x86 boot: more tweaks to hex prints of some pfn addresses

Fix some problems with (and applies on top of) a previous patch:
  x86 boot: show pfn addresses in hex not decimal in some kernel info printks

Primarily change "0x%8lx" format, which displays with a right aligned
space filled hex number (spaces between the "0x" prefix and the number),
into "%0#10lx" format, which zero fills instead of space fills, and
which uses the printf flag '#' to request the "0x" prefix instead of
hard coding it.

Also replace some other "0x%lx" formats with "%#lx", making use of the
'#' printf flag again.

Signed-off-by: Paul Jackson <pj@sgi.com>
Cc: "Yinghai Lu" <yhlu.kernel@gmail.com>
Cc: "Jack Steiner" <steiner@sgi.com>
Cc: "Mike Travis" <travis@sgi.com>
Cc: "Huang
Cc: Ying" <ying.huang@intel.com>
Cc: "Andi Kleen" <andi@firstfloor.org>
Cc: "Andrew Morton" <akpm@linux-foundation.org>
Cc: Paul Jackson <pj@sgi.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
arch/x86/kernel/e820.c
mm/page_alloc.c