]> git.baikalelectronics.ru Git - kernel.git/commit
qed: replace bitmap_weight with bitmap_empty in qed_roce_stop()
authorYury Norov <yury.norov@gmail.com>
Wed, 9 Feb 2022 23:54:34 +0000 (15:54 -0800)
committerYury Norov <yury.norov@gmail.com>
Mon, 2 May 2022 13:30:40 +0000 (06:30 -0700)
commit341b1cde67d7c539c733115067549f644ef463f3
treeb5deea1c01c92227027f60385ce72282c53d88fd
parentd1b8e876b0267554660f79fcbc148daff6df5ee9
qed: replace bitmap_weight with bitmap_empty in qed_roce_stop()

qed_roce_stop() calls bitmap_weight() to check if any bit of a given
bitmap is set. We can do it more efficiently with bitmap_empty() because
bitmap_empty() stops traversing the bitmap as soon as it finds first set
bit, while bitmap_weight() counts all bits unconditionally.

Signed-off-by: Yury Norov <yury.norov@gmail.com>
Acked-by: Prabhakar Kushwaha <pkushwaha@marvell.com>
drivers/net/ethernet/qlogic/qed/qed_roce.c