Skip to content

Commit

Permalink
percpu: improve boot messages
Browse files Browse the repository at this point in the history
Improve percpu boot messages such that they're uniform and contain
more information.

Signed-off-by: Tejun Heo <tj@kernel.org>
Reviewed-by: Christoph Lameter <cl@linux-foundation.org>
  • Loading branch information
Tejun Heo committed Aug 14, 2009
1 parent 971f391 commit 004018e
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions mm/percpu.c
Original file line number Diff line number Diff line change
Expand Up @@ -1488,8 +1488,9 @@ ssize_t __init pcpu_embed_first_chunk(size_t static_size, size_t reserved_size,
}

/* we're ready, commit */
pr_info("PERCPU: Embedded %zu pages at %p, static data %zu bytes\n",
size_sum >> PAGE_SHIFT, base, static_size);
pr_info("PERCPU: Embedded %zu pages/cpu @%p s%zu r%zu d%zu u%zu\n",
PFN_DOWN(size_sum), base, static_size, reserved_size, dyn_size,
unit_size);

return pcpu_setup_first_chunk(static_size, reserved_size, dyn_size,
unit_size, base, NULL);
Expand Down Expand Up @@ -1579,8 +1580,8 @@ ssize_t __init pcpu_4k_first_chunk(size_t static_size, size_t reserved_size,
}

/* we're ready, commit */
pr_info("PERCPU: %d 4k pages per cpu, static data %zu bytes\n",
unit_pages, static_size);
pr_info("PERCPU: %d 4k pages/cpu @%p s%zu r%zu\n",
unit_pages, vm.addr, static_size, reserved_size);

ret = pcpu_setup_first_chunk(static_size, reserved_size, -1,
unit_pages << PAGE_SHIFT, vm.addr, NULL);
Expand Down Expand Up @@ -1898,8 +1899,8 @@ ssize_t __init pcpu_lpage_first_chunk(size_t static_size, size_t reserved_size,
static_size);

/* we're ready, commit */
pr_info("PERCPU: Remapped at %p with large pages, static data "
"%zu bytes\n", vm.addr, static_size);
pr_info("PERCPU: large pages @%p s%zu r%zu d%zu u%zu\n",
vm.addr, static_size, reserved_size, dyn_size, unit_size);

ret = pcpu_setup_first_chunk(static_size, reserved_size, dyn_size,
unit_size, vm.addr, unit_map);
Expand Down

0 comments on commit 004018e

Please sign in to comment.