All of lore.kernel.org
 help / color / mirror / Atom feed
From: Yury Norov <yury.norov@gmail.com>
To: Linus Torvalds <torvalds@linux-foundation.org>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>
Cc: Yury Norov <yury.norov@gmail.com>,
	Andy Shevchenko <andriy.shevchenko@linux.intel.com>,
	Rasmus Villemoes <linux@rasmusvillemoes.dk>
Subject: [GIT PULL] Bitmap patches for v5.19-rc1
Date: Fri, 3 Jun 2022 12:46:06 -0700	[thread overview]
Message-ID: <Yppk/mN+KYTDkvz3@yury-laptop> (raw)

Hi Linus,

This is a shorter version of the original pull request for 5.19:
https://lkml.org/lkml/2022/5/27/1096
with all bitmap_weight_cmp() patches excluded.

Please, pull.

Thanks,
Yury

The following changes since commit ce522ba9ef7e2d9fb22a39eb3371c0c64e2a433e:

  Linux 5.18-rc2 (2022-04-10 14:21:36 -1000)

are available in the Git repository at:

  git@github.com:/norov/linux.git tags/bitmap-for-5.19-rc1

for you to fetch changes up to 0dfe54071d7c828a02917b595456bfde1afdddc9:

  nodemask: Fix return values to be unsigned (2022-06-03 06:52:58 -0700)

----------------------------------------------------------------
Bitmap patches for 5.19-rc1

This series includes the following patchsets:
 - bitmap: optimize bitmap_weight() usage (w/o bitmap_weight_cmp), from me;
 - lib/bitmap.c make bitmap_print_bitmask_to_buf parseable, from Mauro
   Carvalho Chehab;
 - include/linux/find: Fix documentation, from Anna-Maria Behnsen;
 - bitmap: fix conversion from/to fix-sized arrays, from me;
 - bitmap: Fix return values to be unsigned, from Kees Cook.

It has been in linux-next for at least a week with no problems.

----------------------------------------------------------------
Anna-Maria Behnsen (1):
      include/linux/find: Fix documentation

Kees Cook (2):
      bitmap: Fix return values to be unsigned
      nodemask: Fix return values to be unsigned

Mauro Carvalho Chehab (1):
      lib/bitmap.c make bitmap_print_bitmask_to_buf parseable

Yury Norov (27):
      net: dsa: don't use bitmap_weight() in b53_arl_read()
      net: systemport: don't use bitmap_weight() in bcm_sysport_rule_set()
      net: mellanox: fix open-coded for_each_set_bit()
      iio: fix opencoded for_each_set_bit()
      qed: rework qed_rdma_bmap_free()
      KVM: x86: replace bitmap_weight with bitmap_empty where appropriate
      octeontx2-pf: replace bitmap_weight with bitmap_empty where appropriate
      qed: replace bitmap_weight with bitmap_empty in qed_roce_stop()
      risc-v: replace bitmap_weight with bitmap_empty in riscv_fill_hwcap()
      arch/alpha: replace cpumask_weight with cpumask_empty where appropriate
      arch/ia64: replace cpumask_weight with cpumask_empty where appropriate
      arch/x86: replace cpumask_weight with cpumask_empty where appropriate
      drm/i915/pmu: replace cpumask_weight with cpumask_empty where appropriate
      irq: mips: replace cpumask_weight with cpumask_empty where appropriate
      genirq/affinity: replace cpumask_weight with cpumask_empty where appropriate
      clocksource: replace cpumask_weight with cpumask_empty in clocksource.c
      mm/vmstat: replace cpumask_weight with cpumask_empty where appropriate
      arch/x86: replace nodes_weight with nodes_empty where appropriate
      MAINTAINERS: add cpumask and nodemask files to BITMAP_API
      lib/bitmap: extend comment for bitmap_(from,to)_arr32()
      lib: add bitmap_{from,to}_arr64
      lib/bitmap: add test for bitmap_{from,to}_arr64
      KVM: s390: replace bitmap_copy with bitmap_{from,to}_arr64 where appropriate
      drm/amd/pm: use bitmap_{from,to}_arr32 where appropriate
      ia64: cleanup remove_siblinginfo()
      KVM: x86: hyper-v: fix type of valid_bank_mask
      KVM: x86: hyper-v: replace bitmap_weight() with hweight64()

 MAINTAINERS                                        |   4 +
 arch/alpha/kernel/process.c                        |   2 +-
 arch/ia64/kernel/setup.c                           |   2 +-
 arch/ia64/kernel/smpboot.c                         |   4 -
 arch/riscv/kernel/cpufeature.c                     |   7 +-
 arch/s390/kvm/kvm-s390.c                           |  10 +-
 arch/x86/kernel/cpu/resctrl/rdtgroup.c             |  14 +--
 arch/x86/kvm/hyperv.c                              |  14 +--
 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 +-
 drivers/gpu/drm/amd/pm/swsmu/smu11/smu_v11_0.c     |   2 +-
 drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0.c     |   2 +-
 drivers/gpu/drm/i915/i915_pmu.c                    |   2 +-
 drivers/iio/dummy/iio_simple_dummy_buffer.c        |  48 ++++-----
 drivers/irqchip/irq-bcm6345-l1.c                   |   2 +-
 drivers/net/dsa/b53/b53_common.c                   |   6 +-
 drivers/net/ethernet/broadcom/bcmsysport.c         |   6 +-
 .../ethernet/marvell/octeontx2/nic/otx2_flows.c    |   4 +-
 .../net/ethernet/marvell/octeontx2/nic/otx2_pf.c   |   2 +-
 drivers/net/ethernet/mellanox/mlx4/cmd.c           |  23 ++--
 drivers/net/ethernet/qlogic/qed/qed_rdma.c         |  45 +++-----
 drivers/net/ethernet/qlogic/qed/qed_roce.c         |   2 +-
 include/linux/bitmap.h                             |  56 ++++++----
 include/linux/find.h                               |   6 +-
 include/linux/nodemask.h                           |  38 +++----
 kernel/irq/affinity.c                              |   2 +-
 kernel/time/clocksource.c                          |   2 +-
 lib/bitmap.c                                       | 117 ++++++++++++++++-----
 lib/nodemask.c                                     |   4 +-
 lib/test_bitmap.c                                  |  25 +++++
 mm/vmstat.c                                        |   4 +-
 tools/include/linux/bitmap.h                       |  17 +--
 tools/lib/bitmap.c                                 |  20 ++--
 35 files changed, 279 insertions(+), 223 deletions(-)

             reply	other threads:[~2022-06-03 19:48 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-03 19:46 Yury Norov [this message]
2022-06-04 21:20 ` [GIT PULL] Bitmap patches for v5.19-rc1 pr-tracker-bot
2022-06-04 21:24 ` Linus Torvalds
  -- strict thread matches above, loose matches on Subject: below --
2022-05-27 15:43 Yury Norov
2022-05-28  4:17 ` Linus Torvalds
2022-06-01  1:15   ` Yury Norov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=Yppk/mN+KYTDkvz3@yury-laptop \
    --to=yury.norov@gmail.com \
    --cc=andriy.shevchenko@linux.intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@rasmusvillemoes.dk \
    --cc=torvalds@linux-foundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.