Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'for-5.1-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu

Pull percpu fixlet from Dennis Zhou:
"This stops printing the base address of percpu memory on
initialization"

* 'for-5.1-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu:
percpu: stop printing kernel addresses

+4 -4
+4 -4
mm/percpu.c
··· 2567 2567 ai->groups[group].base_offset = areas[group] - base; 2568 2568 } 2569 2569 2570 - pr_info("Embedded %zu pages/cpu @%p s%zu r%zu d%zu u%zu\n", 2571 - PFN_DOWN(size_sum), base, ai->static_size, ai->reserved_size, 2570 + pr_info("Embedded %zu pages/cpu s%zu r%zu d%zu u%zu\n", 2571 + PFN_DOWN(size_sum), ai->static_size, ai->reserved_size, 2572 2572 ai->dyn_size, ai->unit_size); 2573 2573 2574 2574 rc = pcpu_setup_first_chunk(ai, base); ··· 2692 2692 } 2693 2693 2694 2694 /* we're ready, commit */ 2695 - pr_info("%d %s pages/cpu @%p s%zu r%zu d%zu\n", 2696 - unit_pages, psize_str, vm.addr, ai->static_size, 2695 + pr_info("%d %s pages/cpu s%zu r%zu d%zu\n", 2696 + unit_pages, psize_str, ai->static_size, 2697 2697 ai->reserved_size, ai->dyn_size); 2698 2698 2699 2699 rc = pcpu_setup_first_chunk(ai, vm.addr);