* Re: [PATCH 7/9] lib/cpumask: add num_{possible,present,active}_cpus_{eq,gt,le} [not found] <YaMME60Jfiz5BeJF@qmqm.qmqm.pl> @ 2021-11-28 6:34 ` Yury Norov 0 siblings, 0 replies; 7+ messages in thread From: Yury Norov @ 2021-11-28 6:34 UTC (permalink / raw) To: Michał Mirosław Cc: linux-kernel, James E.J. Bottomley, Martin K. Petersen, Paul E. McKenney, Rafael J. Wysocki, Alexander Shishkin, Alexey Klimov, Amitkumar Karwar, Andi Kleen, Andrew Lunn, Andrew Morton, Andy Gross, Andy Lutomirski, Andy Shevchenko, Anup Patel, Ard Biesheuvel, Arnaldo Carvalho de Melo, Arnd Bergmann, Borislav Petkov, Catalin Marinas, Christoph Hellwig, Christoph Lameter, Daniel Vetter, Dave Hansen, David Airlie, David Laight, Dennis Zhou, Dinh Nguyen, Geetha sowjanya, Geert Uytterhoeven, Greg Kroah-Hartman, Guo Ren, Hans de Goede, Heiko Carstens, Ian Rogers, Ingo Molnar, Jakub Kicinski, Jason Wessel, Jens Axboe, Jiri Olsa, Jonathan Cameron, Juri Lelli, Kalle Valo, Kees Cook, Krzysztof Kozlowski, Lee Jones, Marc Zyngier, Marcin Wojtas, Mark Gross, Mark Rutland, Matti Vaittinen, Mauro Carvalho Chehab, Mel Gorman, Michael Ellerman, Mike Marciniszyn, Nicholas Piggin, Palmer Dabbelt, Peter Zijlstra, Petr Mladek, Randy Dunlap, Rasmus Villemoes, Roy Pledge, Russell King, Saeed Mahameed, Sagi Grimberg, Sergey Senozhatsky, Solomon Peachy, Stephen Boyd, Stephen Rothwell, Steven Rostedt, Subbaraya Sundeep, Sudeep Holla, Sunil Goutham, Tariq Toukan, Tejun Heo, Thomas Bogendoerfer, Thomas Gleixner, Ulf Hansson, Vincent Guittot, Vineet Gupta, Viresh Kumar, Vivien Didelot, Vlastimil Babka, Will Deacon, bcm-kernel-feedback-list, kvm, linux-alpha, linux-arm-kernel, linux-crypto, linux-csky, linux-ia64, linux-mips, linux-mm, linux-perf-users, linux-riscv, linux-s390, linux-snps-arc, linuxppc-dev (restore CC list) On Sun, Nov 28, 2021 at 05:56:51AM +0100, Michał Mirosław wrote: > On Sat, Nov 27, 2021 at 07:57:02PM -0800, Yury Norov wrote: > > Add num_{possible,present,active}_cpus_{eq,gt,le} and replace num_*_cpus() > > with one of new functions where appropriate. This allows num_*_cpus_*() > > to return earlier depending on the condition. > [...] > > @@ -3193,7 +3193,7 @@ int __init pcpu_page_first_chunk(size_t reserved_size, > > > > /* allocate pages */ > > j = 0; > > - for (unit = 0; unit < num_possible_cpus(); unit++) { > > + for (unit = 0; num_possible_cpus_gt(unit); unit++) { > > This looks dubious. Only this? > The old version I could hope the compiler would call > num_possible_cpus() only once if it's marked const or pure, but the > alternative is going to count the bits every time making this a guaranteed > O(n^2) even though the bitmap doesn't change. num_possible_cpus() is not const neither pure. This is O(n^2) before and after. ^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH 0/9] lib/bitmap: optimize bitmap_weight() usage
@ 2021-11-28 3:56 Yury Norov
[not found] ` <20211128035704.270739-8-yury.norov@gmail.com>
0 siblings, 1 reply; 7+ messages in thread
From: Yury Norov @ 2021-11-28 3:56 UTC (permalink / raw)
To: linux-kernel, Yury Norov, James E.J. Bottomley,
Martin K. Petersen, Paul E. McKenney, Rafael J. Wysocki,
Alexander Shishkin, Alexey Klimov, Amitkumar Karwar, Andi Kleen,
Andrew Lunn, Andrew Morton, Andy Gross, Andy Lutomirski,
Andy Shevchenko, Anup Patel, Ard Biesheuvel,
Arnaldo Carvalho de Melo, Arnd Bergmann, Borislav Petkov,
Catalin Marinas, Christoph Hellwig, Christoph Lameter,
Daniel Vetter, Dave Hansen, David Airlie, David Laight,
Dennis Zhou, Dinh Nguyen, Geetha sowjanya, Geert Uytterhoeven,
Greg Kroah-Hartman, Guo Ren, Hans de Goede, Heiko Carstens,
Ian Rogers, Ingo Molnar, Jakub Kicinski, Jason Wessel, Jens Axboe,
Jiri Olsa, Jonathan Cameron, Juri Lelli, Kalle Valo, Kees Cook,
Krzysztof Kozlowski, Lee Jones, Marc Zyngier, Marcin Wojtas,
Mark Gross, Mark Rutland, Matti Vaittinen, Mauro Carvalho Chehab,
Mel Gorman, Michael Ellerman, Mike Marciniszyn, Nicholas Piggin,
Palmer Dabbelt, Peter Zijlstra, Petr Mladek, Randy Dunlap,
Rasmus Villemoes, Roy Pledge, Russell King, Saeed Mahameed,
Sagi Grimberg, Sergey Senozhatsky, Solomon Peachy, Stephen Boyd,
Stephen Rothwell, Steven Rostedt, Subbaraya Sundeep, Sudeep Holla,
Sunil Goutham, Tariq Toukan, Tejun Heo, Thomas Bogendoerfer,
Thomas Gleixner, Ulf Hansson, Vincent Guittot, Vineet Gupta,
Viresh Kumar, Vivien Didelot, Vlastimil Babka, Will Deacon,
bcm-kernel-feedback-list, kvm, linux-alpha, linux-arm-kernel,
linux-crypto, linux-csky, linux-ia64, linux-mips, linux-mm,
linux-perf-users, linux-riscv, linux-s390, linux-snps-arc,
linuxppc-dev
In many cases people use bitmap_weight()-based functions like this:
if (num_present_cpus() > 1)
do_something();
This may take considerable amount of time on many-cpus machines because
num_present_cpus() will traverse every word of underlying cpumask
unconditionally.
We can significantly improve on it for many real cases if stop traversing
the mask as soon as we count present cpus to any number greater than 1:
if (num_present_cpus_gt(1))
do_something();
To implement this idea, the series adds bitmap_weight_{eq,gt,le}
functions together with corresponding wrappers in cpumask and nodemask.
Yury Norov (9):
lib/bitmap: add bitmap_weight_{eq,gt,le}
lib/bitmap: implement bitmap_{empty,full} with bitmap_weight_eq()
all: replace bitmap_weigth() with bitmap_{empty,full,eq,gt,le}
tools: sync bitmap_weight() usage with the kernel
lib/cpumask: add cpumask_weight_{eq,gt,le}
lib/nodemask: add nodemask_weight_{eq,gt,le}
lib/cpumask: add num_{possible,present,active}_cpus_{eq,gt,le}
lib/nodemask: add num_node_state_eq()
MAINTAINERS: add cpumask and nodemask files to BITMAP_API
MAINTAINERS | 4 ++
arch/alpha/kernel/process.c | 2 +-
arch/arc/kernel/smp.c | 2 +-
arch/arm/kernel/machine_kexec.c | 2 +-
arch/arm/mach-exynos/exynos.c | 2 +-
arch/arm/mm/cache-b15-rac.c | 2 +-
arch/arm64/kernel/smp.c | 2 +-
arch/arm64/mm/context.c | 2 +-
arch/csky/mm/asid.c | 2 +-
arch/csky/mm/context.c | 2 +-
arch/ia64/kernel/setup.c | 2 +-
arch/ia64/mm/tlb.c | 8 +--
arch/mips/cavium-octeon/octeon-irq.c | 4 +-
arch/mips/kernel/crash.c | 2 +-
arch/mips/kernel/i8253.c | 2 +-
arch/mips/kernel/perf_event_mipsxx.c | 4 +-
arch/mips/kernel/rtlx-cmp.c | 2 +-
arch/mips/kernel/smp.c | 4 +-
arch/mips/kernel/vpe-cmp.c | 2 +-
.../loongson2ef/common/cs5536/cs5536_mfgpt.c | 2 +-
arch/mips/mm/context.c | 2 +-
arch/mips/mm/tlbex.c | 2 +-
arch/nds32/kernel/perf_event_cpu.c | 4 +-
arch/nios2/kernel/cpuinfo.c | 2 +-
arch/powerpc/kernel/smp.c | 2 +-
arch/powerpc/kernel/watchdog.c | 4 +-
arch/powerpc/platforms/85xx/smp.c | 2 +-
arch/powerpc/platforms/pseries/hotplug-cpu.c | 4 +-
arch/powerpc/sysdev/mpic.c | 2 +-
arch/powerpc/xmon/xmon.c | 10 +--
arch/riscv/kvm/vmid.c | 2 +-
arch/s390/kernel/perf_cpum_cf.c | 2 +-
arch/sparc/kernel/mdesc.c | 6 +-
arch/x86/events/amd/core.c | 2 +-
arch/x86/kernel/alternative.c | 8 +--
arch/x86/kernel/apic/apic.c | 4 +-
arch/x86/kernel/apic/apic_flat_64.c | 2 +-
arch/x86/kernel/apic/probe_32.c | 2 +-
arch/x86/kernel/cpu/mce/dev-mcelog.c | 2 +-
arch/x86/kernel/cpu/resctrl/rdtgroup.c | 18 +++---
arch/x86/kernel/hpet.c | 2 +-
arch/x86/kernel/i8253.c | 2 +-
arch/x86/kernel/kvm.c | 2 +-
arch/x86/kernel/kvmclock.c | 2 +-
arch/x86/kernel/smpboot.c | 4 +-
arch/x86/kernel/tsc.c | 2 +-
arch/x86/kvm/hyperv.c | 8 +--
arch/x86/mm/amdtopology.c | 2 +-
arch/x86/mm/mmio-mod.c | 2 +-
arch/x86/mm/numa_emulation.c | 4 +-
arch/x86/platform/uv/uv_nmi.c | 2 +-
arch/x86/xen/smp_pv.c | 2 +-
arch/x86/xen/spinlock.c | 2 +-
drivers/acpi/numa/srat.c | 2 +-
drivers/clk/samsung/clk-exynos4.c | 2 +-
drivers/clocksource/ingenic-timer.c | 3 +-
drivers/cpufreq/pcc-cpufreq.c | 2 +-
drivers/cpufreq/qcom-cpufreq-hw.c | 2 +-
drivers/cpufreq/scmi-cpufreq.c | 2 +-
drivers/crypto/ccp/ccp-dev-v5.c | 5 +-
drivers/dma/mv_xor.c | 5 +-
drivers/firmware/psci/psci_checker.c | 2 +-
drivers/gpu/drm/i810/i810_drv.c | 2 +-
drivers/gpu/drm/i915/i915_pmu.c | 2 +-
drivers/gpu/drm/msm/disp/mdp5/mdp5_smp.c | 2 +-
drivers/hv/channel_mgmt.c | 4 +-
drivers/iio/adc/mxs-lradc-adc.c | 3 +-
drivers/iio/dummy/iio_simple_dummy_buffer.c | 4 +-
drivers/iio/industrialio-buffer.c | 2 +-
drivers/iio/industrialio-trigger.c | 2 +-
drivers/infiniband/hw/hfi1/affinity.c | 13 ++--
drivers/infiniband/hw/qib/qib_file_ops.c | 2 +-
drivers/infiniband/hw/qib/qib_iba7322.c | 2 +-
drivers/infiniband/sw/siw/siw_main.c | 3 +-
drivers/irqchip/irq-bcm6345-l1.c | 2 +-
drivers/irqchip/irq-gic.c | 2 +-
drivers/memstick/core/ms_block.c | 4 +-
drivers/net/caif/caif_virtio.c | 2 +-
drivers/net/dsa/b53/b53_common.c | 2 +-
drivers/net/ethernet/broadcom/bcmsysport.c | 6 +-
.../cavium/liquidio/cn23xx_vf_device.c | 2 +-
drivers/net/ethernet/hisilicon/hns/hns_enet.c | 2 +-
.../net/ethernet/intel/ice/ice_virtchnl_pf.c | 4 +-
.../net/ethernet/intel/ixgbe/ixgbe_sriov.c | 2 +-
.../net/ethernet/marvell/mvpp2/mvpp2_main.c | 2 +-
.../marvell/octeontx2/nic/otx2_ethtool.c | 2 +-
.../marvell/octeontx2/nic/otx2_flows.c | 8 +--
.../ethernet/marvell/octeontx2/nic/otx2_pf.c | 2 +-
drivers/net/ethernet/mellanox/mlx4/cmd.c | 10 +--
drivers/net/ethernet/mellanox/mlx4/eq.c | 4 +-
drivers/net/ethernet/mellanox/mlx4/main.c | 2 +-
.../ethernet/mellanox/mlx5/core/en_ethtool.c | 2 +-
drivers/net/ethernet/qlogic/qed/qed_dev.c | 3 +-
drivers/net/ethernet/qlogic/qed/qed_rdma.c | 4 +-
drivers/net/ethernet/qlogic/qed/qed_roce.c | 2 +-
drivers/net/wireless/ath/ath9k/hw.c | 2 +-
drivers/net/wireless/marvell/mwifiex/main.c | 4 +-
drivers/net/wireless/st/cw1200/queue.c | 3 +-
drivers/nvdimm/region.c | 2 +-
drivers/nvme/host/pci.c | 2 +-
drivers/perf/arm-cci.c | 2 +-
drivers/perf/arm_pmu.c | 6 +-
drivers/perf/hisilicon/hisi_uncore_pmu.c | 2 +-
drivers/perf/thunderx2_pmu.c | 3 +-
drivers/perf/xgene_pmu.c | 2 +-
.../intel/speed_select_if/isst_if_common.c | 6 +-
drivers/pwm/pwm-pca9685.c | 2 +-
drivers/scsi/lpfc/lpfc_init.c | 2 +-
drivers/soc/bcm/brcmstb/biuctrl.c | 2 +-
drivers/soc/fsl/dpio/dpio-service.c | 4 +-
drivers/soc/fsl/qbman/qman_test_stash.c | 2 +-
drivers/spi/spi-dw-bt1.c | 2 +-
drivers/staging/media/tegra-video/vi.c | 2 +-
drivers/thermal/intel/intel_powerclamp.c | 10 ++-
drivers/virt/acrn/hsm.c | 2 +-
fs/ocfs2/cluster/heartbeat.c | 14 ++---
fs/xfs/xfs_sysfs.c | 2 +-
include/linux/bitmap.h | 45 ++++++++++---
include/linux/cpumask.h | 55 ++++++++++++++++
include/linux/kdb.h | 2 +-
include/linux/nodemask.h | 29 +++++++++
kernel/debug/kdb/kdb_bt.c | 2 +-
kernel/irq/affinity.c | 2 +-
kernel/padata.c | 2 +-
kernel/printk/printk.c | 2 +-
kernel/rcu/tree_nocb.h | 4 +-
kernel/rcu/tree_plugin.h | 2 +-
kernel/reboot.c | 4 +-
kernel/sched/core.c | 10 +--
kernel/sched/topology.c | 4 +-
kernel/time/clockevents.c | 4 +-
kernel/time/clocksource.c | 2 +-
lib/bitmap.c | 63 +++++++++++++++++++
mm/mempolicy.c | 2 +-
mm/page_alloc.c | 2 +-
mm/percpu.c | 6 +-
mm/slab.c | 2 +-
mm/vmstat.c | 4 +-
tools/include/linux/bitmap.h | 42 ++++++++++---
tools/lib/bitmap.c | 60 ++++++++++++++++++
tools/perf/builtin-c2c.c | 4 +-
tools/perf/util/pmu.c | 2 +-
142 files changed, 490 insertions(+), 251 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 7+ messages in thread[parent not found: <20211128035704.270739-8-yury.norov@gmail.com>]
* Re: [PATCH 7/9] lib/cpumask: add num_{possible,present,active}_cpus_{eq,gt,le} [not found] ` <20211128035704.270739-8-yury.norov@gmail.com> @ 2021-11-28 17:07 ` Joe Perches 2021-11-28 17:43 ` Yury Norov 0 siblings, 1 reply; 7+ messages in thread From: Joe Perches @ 2021-11-28 17:07 UTC (permalink / raw) To: Yury Norov, linux-kernel, James E.J. Bottomley, Martin K. Petersen, Paul E. McKenney, Rafael J. Wysocki, Alexander Shishkin, Alexey Klimov, Amitkumar Karwar, Andi Kleen, Andrew Lunn, Andrew Morton, Andy Gross, Andy Lutomirski, Andy Shevchenko, Anup Patel, Ard Biesheuvel, Arnaldo Carvalho de Melo, Arnd Bergmann, Borislav Petkov, Catalin Marinas, Christoph Hellwig, Christoph Lameter, Daniel Vetter, Dave Hansen, David Airlie, David Laight, Dennis Zhou, Dinh Nguyen, Geetha sowjanya, Geert Uytterhoeven, Greg Kroah-Hartman, Guo Ren, Hans de Goede, Heiko Carstens, Ian Rogers, Ingo Molnar, Jakub Kicinski, Jason Wessel, Jens Axboe, Jiri Olsa, Jonathan Cameron, Juri Lelli, Kalle Valo, Kees Cook, Krzysztof Kozlowski, Lee Jones, Marc Zyngier, Marcin Wojtas, Mark Gross, Mark Rutland, Matti Vaittinen, Mauro Carvalho Chehab, Mel Gorman, Michael Ellerman, Mike Marciniszyn, Nicholas Piggin, Palmer Dabbelt, Peter Zijlstra, Petr Mladek, Randy Dunlap, Rasmus Villemoes, Roy Pledge, Russell King, Saeed Mahameed, Sagi Grimberg, Sergey Senozhatsky, Solomon Peachy, Stephen Boyd, Stephen Rothwell, Steven Rostedt, Subbaraya Sundeep, Sudeep Holla, Sunil Goutham, Tariq Toukan, Tejun Heo, Thomas Bogendoerfer, Thomas Gleixner, Ulf Hansson, Vincent Guittot, Vineet Gupta, Viresh Kumar, Vivien Didelot, Vlastimil Babka, Will Deacon, bcm-kernel-feedback-list, kvm, linux-alpha, linux-arm-kernel, linux-crypto, linux-csky, linux-ia64, linux-mips, linux-mm, linux-perf-users, linux-riscv, linux-s390, linux-snps-arc, linuxppc-dev On Sat, 2021-11-27 at 19:57 -0800, Yury Norov wrote: > Add num_{possible,present,active}_cpus_{eq,gt,le} and replace num_*_cpus() > with one of new functions where appropriate. This allows num_*_cpus_*() > to return earlier depending on the condition. [] > diff --git a/arch/arc/kernel/smp.c b/arch/arc/kernel/smp.c [] > @@ -103,7 +103,7 @@ void __init smp_prepare_cpus(unsigned int max_cpus) > * if platform didn't set the present map already, do it now > * boot cpu is set to present already by init/main.c > */ > - if (num_present_cpus() <= 1) > + if (num_present_cpus_le(2)) > init_cpu_present(cpu_possible_mask); ? is this supposed to be 2 or 1 > diff --git a/drivers/cpufreq/pcc-cpufreq.c b/drivers/cpufreq/pcc-cpufreq.c [] > @@ -593,7 +593,7 @@ static int __init pcc_cpufreq_init(void) > return ret; > } > > - if (num_present_cpus() > 4) { > + if (num_present_cpus_gt(4)) { > pcc_cpufreq_driver.flags |= CPUFREQ_NO_AUTO_DYNAMIC_SWITCHING; > pr_err("%s: Too many CPUs, dynamic performance scaling disabled\n", > __func__); It looks as if the present variants should be using the same values so the _le test above with 1 changed to 2 looks odd. ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 7/9] lib/cpumask: add num_{possible,present,active}_cpus_{eq,gt,le} 2021-11-28 17:07 ` [PATCH 7/9] lib/cpumask: add num_{possible,present,active}_cpus_{eq,gt,le} Joe Perches @ 2021-11-28 17:43 ` Yury Norov 2021-11-28 17:54 ` Dennis Zhou ` (2 more replies) 0 siblings, 3 replies; 7+ messages in thread From: Yury Norov @ 2021-11-28 17:43 UTC (permalink / raw) To: Joe Perches Cc: linux-kernel, James E.J. Bottomley, Martin K. Petersen, Paul E. McKenney, Rafael J. Wysocki, Alexander Shishkin, Alexey Klimov, Amitkumar Karwar, Andi Kleen, Andrew Lunn, Andrew Morton, Andy Gross, Andy Lutomirski, Andy Shevchenko, Anup Patel, Ard Biesheuvel, Arnaldo Carvalho de Melo, Arnd Bergmann, Borislav Petkov, Catalin Marinas, Christoph Hellwig, Christoph Lameter, Daniel Vetter, Dave Hansen, David Airlie, David Laight, Dennis Zhou, Dinh Nguyen, Geetha sowjanya, Geert Uytterhoeven, Greg Kroah-Hartman, Guo Ren, Hans de Goede, Heiko Carstens, Ian Rogers, Ingo Molnar, Jakub Kicinski, Jason Wessel, Jens Axboe, Jiri Olsa, Jonathan Cameron, Juri Lelli, Kalle Valo, Kees Cook, Krzysztof Kozlowski, Lee Jones, Marc Zyngier, Marcin Wojtas, Mark Gross, Mark Rutland, Matti Vaittinen, Mauro Carvalho Chehab, Mel Gorman, Michael Ellerman, Mike Marciniszyn, Nicholas Piggin, Palmer Dabbelt, Peter Zijlstra, Petr Mladek, Randy Dunlap, Rasmus Villemoes, Roy Pledge, Russell King, Saeed Mahameed, Sagi Grimberg, Sergey Senozhatsky, Solomon Peachy, Stephen Boyd, Stephen Rothwell, Steven Rostedt, Subbaraya Sundeep, Sudeep Holla, Sunil Goutham, Tariq Toukan, Tejun Heo, Thomas Bogendoerfer, Thomas Gleixner, Ulf Hansson, Vincent Guittot, Vineet Gupta, Viresh Kumar, Vivien Didelot, Vlastimil Babka, Will Deacon, bcm-kernel-feedback-list, kvm, linux-alpha, linux-arm-kernel, linux-crypto, linux-csky, linux-ia64, linux-mips, linux-mm, linux-perf-users, linux-riscv, linux-s390, linux-snps-arc, linuxppc-dev On Sun, Nov 28, 2021 at 09:07:52AM -0800, Joe Perches wrote: > On Sat, 2021-11-27 at 19:57 -0800, Yury Norov wrote: > > Add num_{possible,present,active}_cpus_{eq,gt,le} and replace num_*_cpus() > > with one of new functions where appropriate. This allows num_*_cpus_*() > > to return earlier depending on the condition. > [] > > diff --git a/arch/arc/kernel/smp.c b/arch/arc/kernel/smp.c > [] > > @@ -103,7 +103,7 @@ void __init smp_prepare_cpus(unsigned int max_cpus) > > * if platform didn't set the present map already, do it now > > * boot cpu is set to present already by init/main.c > > */ > > - if (num_present_cpus() <= 1) > > + if (num_present_cpus_le(2)) > > init_cpu_present(cpu_possible_mask); > > ? is this supposed to be 2 or 1 X <= 1 is the equivalent of X < 2. > > diff --git a/drivers/cpufreq/pcc-cpufreq.c b/drivers/cpufreq/pcc-cpufreq.c > [] > > @@ -593,7 +593,7 @@ static int __init pcc_cpufreq_init(void) > > return ret; > > } > > > > - if (num_present_cpus() > 4) { > > + if (num_present_cpus_gt(4)) { > > pcc_cpufreq_driver.flags |= CPUFREQ_NO_AUTO_DYNAMIC_SWITCHING; > > pr_err("%s: Too many CPUs, dynamic performance scaling disabled\n", > > __func__); > > It looks as if the present variants should be using the same values > so the _le test above with 1 changed to 2 looks odd. ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 7/9] lib/cpumask: add num_{possible,present,active}_cpus_{eq,gt,le} 2021-11-28 17:43 ` Yury Norov @ 2021-11-28 17:54 ` Dennis Zhou 2021-11-28 18:47 ` Yury Norov 2021-11-28 17:56 ` Emil Renner Berthing 2021-11-28 17:57 ` Joe Perches 2 siblings, 1 reply; 7+ messages in thread From: Dennis Zhou @ 2021-11-28 17:54 UTC (permalink / raw) To: Yury Norov Cc: Joe Perches, linux-kernel, James E.J. Bottomley, Martin K. Petersen, Paul E. McKenney, Rafael J. Wysocki, Alexander Shishkin, Alexey Klimov, Amitkumar Karwar, Andi Kleen, Andrew Lunn, Andrew Morton, Andy Gross, Andy Lutomirski, Andy Shevchenko, Anup Patel, Ard Biesheuvel, Arnaldo Carvalho de Melo, Arnd Bergmann, Borislav Petkov, Catalin Marinas, Christoph Hellwig, Christoph Lameter, Daniel Vetter, Dave Hansen, David Airlie, David Laight, Dennis Zhou, Dinh Nguyen, Geetha sowjanya, Geert Uytterhoeven, Greg Kroah-Hartman, Guo Ren, Hans de Goede, Heiko Carstens, Ian Rogers, Ingo Molnar, Jakub Kicinski, Jason Wessel, Jens Axboe, Jiri Olsa, Jonathan Cameron, Juri Lelli, Kalle Valo, Kees Cook, Krzysztof Kozlowski, Lee Jones, Marc Zyngier, Marcin Wojtas, Mark Gross, Mark Rutland, Matti Vaittinen, Mauro Carvalho Chehab, Mel Gorman, Michael Ellerman, Mike Marciniszyn, Nicholas Piggin, Palmer Dabbelt, Peter Zijlstra, Petr Mladek, Randy Dunlap, Rasmus Villemoes, Roy Pledge, Russell King, Saeed Mahameed, Sagi Grimberg, Sergey Senozhatsky, Solomon Peachy, Stephen Boyd, Stephen Rothwell, Steven Rostedt, Subbaraya Sundeep, Sudeep Holla, Sunil Goutham, Tariq Toukan, Tejun Heo, Thomas Bogendoerfer, Thomas Gleixner, Ulf Hansson, Vincent Guittot, Vineet Gupta, Viresh Kumar, Vivien Didelot, Vlastimil Babka, Will Deacon, bcm-kernel-feedback-list, kvm, linux-alpha, linux-arm-kernel, linux-crypto, linux-csky, linux-ia64, linux-mips, linux-mm, linux-perf-users, linux-riscv, linux-s390, linux-snps-arc, linuxppc-dev Hello, On Sun, Nov 28, 2021 at 09:43:20AM -0800, Yury Norov wrote: > On Sun, Nov 28, 2021 at 09:07:52AM -0800, Joe Perches wrote: > > On Sat, 2021-11-27 at 19:57 -0800, Yury Norov wrote: > > > Add num_{possible,present,active}_cpus_{eq,gt,le} and replace num_*_cpus() > > > with one of new functions where appropriate. This allows num_*_cpus_*() > > > to return earlier depending on the condition. > > [] > > > diff --git a/arch/arc/kernel/smp.c b/arch/arc/kernel/smp.c > > [] > > > @@ -103,7 +103,7 @@ void __init smp_prepare_cpus(unsigned int max_cpus) > > > * if platform didn't set the present map already, do it now > > > * boot cpu is set to present already by init/main.c > > > */ > > > - if (num_present_cpus() <= 1) > > > + if (num_present_cpus_le(2)) > > > init_cpu_present(cpu_possible_mask); > > > > ? is this supposed to be 2 or 1 > > X <= 1 is the equivalent of X < 2. > > > > diff --git a/drivers/cpufreq/pcc-cpufreq.c b/drivers/cpufreq/pcc-cpufreq.c > > [] > > > @@ -593,7 +593,7 @@ static int __init pcc_cpufreq_init(void) > > > return ret; > > > } > > > > > > - if (num_present_cpus() > 4) { > > > + if (num_present_cpus_gt(4)) { > > > pcc_cpufreq_driver.flags |= CPUFREQ_NO_AUTO_DYNAMIC_SWITCHING; > > > pr_err("%s: Too many CPUs, dynamic performance scaling disabled\n", > > > __func__); > > > > It looks as if the present variants should be using the same values > > so the _le test above with 1 changed to 2 looks odd. > I think the confusion comes from le meaning less than rather than lt. Given the general convention of: lt (<), le (<=), eg (=), ge (>=), gt (>), I'd consider renaming your le to lt. Thanks, Dennis ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 7/9] lib/cpumask: add num_{possible,present,active}_cpus_{eq,gt,le} 2021-11-28 17:54 ` Dennis Zhou @ 2021-11-28 18:47 ` Yury Norov 0 siblings, 0 replies; 7+ messages in thread From: Yury Norov @ 2021-11-28 18:47 UTC (permalink / raw) To: Dennis Zhou Cc: Joe Perches, linux-kernel, James E.J. Bottomley, Martin K. Petersen, Paul E. McKenney, Rafael J. Wysocki, Alexander Shishkin, Alexey Klimov, Amitkumar Karwar, Andi Kleen, Andrew Lunn, Andrew Morton, Andy Gross, Andy Lutomirski, Andy Shevchenko, Anup Patel, Ard Biesheuvel, Arnaldo Carvalho de Melo, Arnd Bergmann, Borislav Petkov, Catalin Marinas, Christoph Hellwig, Christoph Lameter, Daniel Vetter, Dave Hansen, David Airlie, David Laight, Dinh Nguyen, Geetha sowjanya, Geert Uytterhoeven, Greg Kroah-Hartman, Guo Ren, Hans de Goede, Heiko Carstens, Ian Rogers, Ingo Molnar, Jakub Kicinski, Jason Wessel, Jens Axboe, Jiri Olsa, Jonathan Cameron, Juri Lelli, Kalle Valo, Kees Cook, Krzysztof Kozlowski, Lee Jones, Marc Zyngier, Marcin Wojtas, Mark Gross, Mark Rutland, Matti Vaittinen, Mauro Carvalho Chehab, Mel Gorman, Michael Ellerman, Mike Marciniszyn, Nicholas Piggin, Palmer Dabbelt, Peter Zijlstra, Petr Mladek, Randy Dunlap, Rasmus Villemoes, Roy Pledge, Russell King, Saeed Mahameed, Sagi Grimberg, Sergey Senozhatsky, Solomon Peachy, Stephen Boyd, Stephen Rothwell, Steven Rostedt, Subbaraya Sundeep, Sudeep Holla, Sunil Goutham, Tariq Toukan, Tejun Heo, Thomas Bogendoerfer, Thomas Gleixner, Ulf Hansson, Vincent Guittot, Vineet Gupta, Viresh Kumar, Vivien Didelot, Vlastimil Babka, Will Deacon, bcm-kernel-feedback-list, kvm, linux-alpha, linux-arm-kernel, linux-crypto, linux-csky, linux-ia64, linux-mips, linux-mm, linux-perf-users, linux-riscv, linux-s390, linux-snps-arc, linuxppc-dev On Sun, Nov 28, 2021 at 12:54:00PM -0500, Dennis Zhou wrote: > Hello, > > On Sun, Nov 28, 2021 at 09:43:20AM -0800, Yury Norov wrote: > > On Sun, Nov 28, 2021 at 09:07:52AM -0800, Joe Perches wrote: > > > On Sat, 2021-11-27 at 19:57 -0800, Yury Norov wrote: > > > > Add num_{possible,present,active}_cpus_{eq,gt,le} and replace num_*_cpus() > > > > with one of new functions where appropriate. This allows num_*_cpus_*() > > > > to return earlier depending on the condition. > > > [] > > > > diff --git a/arch/arc/kernel/smp.c b/arch/arc/kernel/smp.c > > > [] > > > > @@ -103,7 +103,7 @@ void __init smp_prepare_cpus(unsigned int max_cpus) > > > > * if platform didn't set the present map already, do it now > > > > * boot cpu is set to present already by init/main.c > > > > */ > > > > - if (num_present_cpus() <= 1) > > > > + if (num_present_cpus_le(2)) > > > > init_cpu_present(cpu_possible_mask); > > > > > > ? is this supposed to be 2 or 1 > > > > X <= 1 is the equivalent of X < 2. > > > > > > diff --git a/drivers/cpufreq/pcc-cpufreq.c b/drivers/cpufreq/pcc-cpufreq.c > > > [] > > > > @@ -593,7 +593,7 @@ static int __init pcc_cpufreq_init(void) > > > > return ret; > > > > } > > > > > > > > - if (num_present_cpus() > 4) { > > > > + if (num_present_cpus_gt(4)) { > > > > pcc_cpufreq_driver.flags |= CPUFREQ_NO_AUTO_DYNAMIC_SWITCHING; > > > > pr_err("%s: Too many CPUs, dynamic performance scaling disabled\n", > > > > __func__); > > > > > > It looks as if the present variants should be using the same values > > > so the _le test above with 1 changed to 2 looks odd. > > > > I think the confusion comes from le meaning less than rather than lt. > Given the general convention of: lt (<), le (<=), eg (=), ge (>=), > gt (>), I'd consider renaming your le to lt. Ok, makes sense. I'll rename in v2 and add <= and >= versions. ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 7/9] lib/cpumask: add num_{possible,present,active}_cpus_{eq,gt,le} 2021-11-28 17:43 ` Yury Norov 2021-11-28 17:54 ` Dennis Zhou @ 2021-11-28 17:56 ` Emil Renner Berthing 2021-11-28 17:57 ` Joe Perches 2 siblings, 0 replies; 7+ messages in thread From: Emil Renner Berthing @ 2021-11-28 17:56 UTC (permalink / raw) To: Yury Norov Cc: Joe Perches, Linux Kernel Mailing List, James E.J. Bottomley, Martin K. Petersen, Paul E. McKenney, Rafael J. Wysocki, Alexander Shishkin, Alexey Klimov, Amitkumar Karwar, Andi Kleen, Andrew Lunn, Andrew Morton, Andy Gross, Andy Lutomirski, Andy Shevchenko, Anup Patel, Ard Biesheuvel, Arnaldo Carvalho de Melo, Arnd Bergmann, Borislav Petkov, Catalin Marinas, Christoph Hellwig, Christoph Lameter, Daniel Vetter, Dave Hansen, David Airlie, David Laight, Dennis Zhou, Dinh Nguyen, Geetha sowjanya, Geert Uytterhoeven, Greg Kroah-Hartman, Guo Ren, Hans de Goede, Heiko Carstens, Ian Rogers, Ingo Molnar, Jakub Kicinski, Jason Wessel, Jens Axboe, Jiri Olsa, Jonathan Cameron, Juri Lelli, Kalle Valo, Kees Cook, Krzysztof Kozlowski, Lee Jones, Marc Zyngier, Marcin Wojtas, Mark Gross, Mark Rutland, Matti Vaittinen, Mauro Carvalho Chehab, Mel Gorman, Michael Ellerman, Mike Marciniszyn, Nicholas Piggin, Palmer Dabbelt, Peter Zijlstra, Petr Mladek, Randy Dunlap, Rasmus Villemoes, Roy Pledge, Russell King, Saeed Mahameed, Sagi Grimberg, Sergey Senozhatsky, Solomon Peachy, Stephen Boyd, Stephen Rothwell, Steven Rostedt, Subbaraya Sundeep, Sudeep Holla, Sunil Goutham, Tariq Toukan, Tejun Heo, Thomas Bogendoerfer, Thomas Gleixner, Ulf Hansson, Vincent Guittot, Vineet Gupta, Viresh Kumar, Vivien Didelot, Vlastimil Babka, Will Deacon, bcm-kernel-feedback-list, kvm, linux-alpha, linux-arm-kernel, linux-crypto, linux-csky, linux-ia64, linux-mips, linux-mm, linux-perf-users, linux-riscv, linux-s390, linux-snps-arc, linuxppc-dev On Sun, 28 Nov 2021 at 18:43, Yury Norov <yury.norov@gmail.com> wrote: > On Sun, Nov 28, 2021 at 09:07:52AM -0800, Joe Perches wrote: > > On Sat, 2021-11-27 at 19:57 -0800, Yury Norov wrote: > > > Add num_{possible,present,active}_cpus_{eq,gt,le} and replace num_*_cpus() > > > with one of new functions where appropriate. This allows num_*_cpus_*() > > > to return earlier depending on the condition. > > [] > > > diff --git a/arch/arc/kernel/smp.c b/arch/arc/kernel/smp.c > > [] > > > @@ -103,7 +103,7 @@ void __init smp_prepare_cpus(unsigned int max_cpus) > > > * if platform didn't set the present map already, do it now > > > * boot cpu is set to present already by init/main.c > > > */ > > > - if (num_present_cpus() <= 1) > > > + if (num_present_cpus_le(2)) > > > init_cpu_present(cpu_possible_mask); > > > > ? is this supposed to be 2 or 1 > > X <= 1 is the equivalent of X < 2. Ah, then the function is confusing. Usually it's lt = less than and lt = less than or equal. Same idea for gt vs ge. ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 7/9] lib/cpumask: add num_{possible,present,active}_cpus_{eq,gt,le} 2021-11-28 17:43 ` Yury Norov 2021-11-28 17:54 ` Dennis Zhou 2021-11-28 17:56 ` Emil Renner Berthing @ 2021-11-28 17:57 ` Joe Perches 2 siblings, 0 replies; 7+ messages in thread From: Joe Perches @ 2021-11-28 17:57 UTC (permalink / raw) To: Yury Norov Cc: linux-kernel, James E.J. Bottomley, Martin K. Petersen, Paul E. McKenney, Rafael J. Wysocki, Alexander Shishkin, Alexey Klimov, Amitkumar Karwar, Andi Kleen, Andrew Lunn, Andrew Morton, Andy Gross, Andy Lutomirski, Andy Shevchenko, Anup Patel, Ard Biesheuvel, Arnaldo Carvalho de Melo, Arnd Bergmann, Borislav Petkov, Catalin Marinas, Christoph Hellwig, Christoph Lameter, Daniel Vetter, Dave Hansen, David Airlie, David Laight, Dennis Zhou, Dinh Nguyen, Geetha sowjanya, Geert Uytterhoeven, Greg Kroah-Hartman, Guo Ren, Hans de Goede, Heiko Carstens, Ian Rogers, Ingo Molnar, Jakub Kicinski, Jason Wessel, Jens Axboe, Jiri Olsa, Jonathan Cameron, Juri Lelli, Kalle Valo, Kees Cook, Krzysztof Kozlowski, Lee Jones, Marc Zyngier, Marcin Wojtas, Mark Gross, Mark Rutland, Matti Vaittinen, Mauro Carvalho Chehab, Mel Gorman, Michael Ellerman, Mike Marciniszyn, Nicholas Piggin, Palmer Dabbelt, Peter Zijlstra, Petr Mladek, Randy Dunlap, Rasmus Villemoes, Roy Pledge, Russell King, Saeed Mahameed, Sagi Grimberg, Sergey Senozhatsky, Solomon Peachy, Stephen Boyd, Stephen Rothwell, Steven Rostedt, Subbaraya Sundeep, Sudeep Holla, Sunil Goutham, Tariq Toukan, Tejun Heo, Thomas Bogendoerfer, Thomas Gleixner, Ulf Hansson, Vincent Guittot, Vineet Gupta, Viresh Kumar, Vivien Didelot, Vlastimil Babka, Will Deacon, bcm-kernel-feedback-list, kvm, linux-alpha, linux-arm-kernel, linux-crypto, linux-csky, linux-ia64, linux-mips, linux-mm, linux-perf-users, linux-riscv, linux-s390, linux-snps-arc, linuxppc-dev On Sun, 2021-11-28 at 09:43 -0800, Yury Norov wrote: > On Sun, Nov 28, 2021 at 09:07:52AM -0800, Joe Perches wrote: > > On Sat, 2021-11-27 at 19:57 -0800, Yury Norov wrote: > > > Add num_{possible,present,active}_cpus_{eq,gt,le} and replace num_*_cpus() > > > with one of new functions where appropriate. This allows num_*_cpus_*() > > > to return earlier depending on the condition. > > [] > > > diff --git a/arch/arc/kernel/smp.c b/arch/arc/kernel/smp.c > > [] > > > @@ -103,7 +103,7 @@ void __init smp_prepare_cpus(unsigned int max_cpus) > > > * if platform didn't set the present map already, do it now > > > * boot cpu is set to present already by init/main.c > > > */ > > > - if (num_present_cpus() <= 1) > > > + if (num_present_cpus_le(2)) > > > init_cpu_present(cpu_possible_mask); > > > > ? is this supposed to be 2 or 1 > > X <= 1 is the equivalent of X < 2. True. The call though is _le not _lt ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2021-11-28 18:47 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <YaMME60Jfiz5BeJF@qmqm.qmqm.pl>
2021-11-28 6:34 ` [PATCH 7/9] lib/cpumask: add num_{possible,present,active}_cpus_{eq,gt,le} Yury Norov
2021-11-28 3:56 [PATCH 0/9] lib/bitmap: optimize bitmap_weight() usage Yury Norov
[not found] ` <20211128035704.270739-8-yury.norov@gmail.com>
2021-11-28 17:07 ` [PATCH 7/9] lib/cpumask: add num_{possible,present,active}_cpus_{eq,gt,le} Joe Perches
2021-11-28 17:43 ` Yury Norov
2021-11-28 17:54 ` Dennis Zhou
2021-11-28 18:47 ` Yury Norov
2021-11-28 17:56 ` Emil Renner Berthing
2021-11-28 17:57 ` Joe Perches
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).