函数源码

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source File:include\linux\bitmap.h Create Date:2022-07-27 06:38:42
首页 Copyright©Brick

280
281
282
283
284
285
286
287
static inline void bitmap_or(unsigned long *dst, const unsigned long *src1,
            const unsigned long *src2, unsigned int nbits)
{
    if (small_const_nbits(nbits))
        *dst = *src1 | *src2;
    else
        __bitmap_or(dst, src1, src2, nbits);
}