diff options
author | Dawei Li <dawei.li@shingroup.cn> | 2024-04-16 16:54:48 +0800 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2024-04-24 21:23:49 +0200 |
commit | cdc66553c4130735f0a2db943a5259e54ff1597a (patch) | |
tree | ec3ebe0bd50ede88a8dc482b80aacb2412a25e4b /lib/find_bit.c | |
parent | c7cad38d37486668a448215fc92bace9c8cf747a (diff) | |
download | linux-cdc66553c4130735f0a2db943a5259e54ff1597a.tar.gz linux-cdc66553c4130735f0a2db943a5259e54ff1597a.tar.bz2 linux-cdc66553c4130735f0a2db943a5259e54ff1597a.zip |
cpumask: Introduce cpumask_first_and_and()
Introduce cpumask_first_and_and() to get intersection between 3 cpumasks,
free of any intermediate cpumask variable. Instead, cpumask_first_and_and()
works in-place with all inputs and produces desired output directly.
Signed-off-by: Dawei Li <dawei.li@shingroup.cn>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Yury Norov <yury.norov@gmail.com>
Link: https://lore.kernel.org/r/20240416085454.3547175-2-dawei.li@shingroup.cn
Diffstat (limited to 'lib/find_bit.c')
-rw-r--r-- | lib/find_bit.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/find_bit.c b/lib/find_bit.c index 32f99e9a670e..dacadd904250 100644 --- a/lib/find_bit.c +++ b/lib/find_bit.c @@ -116,6 +116,18 @@ unsigned long _find_first_and_bit(const unsigned long *addr1, EXPORT_SYMBOL(_find_first_and_bit); #endif +/* + * Find the first set bit in three memory regions. + */ +unsigned long _find_first_and_and_bit(const unsigned long *addr1, + const unsigned long *addr2, + const unsigned long *addr3, + unsigned long size) +{ + return FIND_FIRST_BIT(addr1[idx] & addr2[idx] & addr3[idx], /* nop */, size); +} +EXPORT_SYMBOL(_find_first_and_and_bit); + #ifndef find_first_zero_bit /* * Find the first cleared bit in a memory region. |