函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:lib\bitmap.c Create Date:2022-07-27 07:17:24
Last Modify:2020-03-12 14:18:49 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:__bitmap_set

函数原型:void __bitmap_set(unsigned long *map, unsigned int start, int len)

返回类型:void

参数:

类型参数名称
unsigned long *map
unsigned intstart
intlen
284  p等于mapBIT_WORD(start)
285  size等于startlen
286  bits_to_set等于BITS_PER_LONGstart取模BITS_PER_LONG
287  mask_to_set等于BITMAP_FIRST_WORD_MASK(start)
289 lenbits_to_set大于等于0循环
290  p或等于mask_to_set
291  len减等于bits_to_set
292  bits_to_set等于BITS_PER_LONG
293  mask_to_set等于0UL的反
294  p自加
296  如果len
297  mask_to_set与等于BITMAP_LAST_WORD_MASK(size)
298  p或等于mask_to_set
调用者
名称描述
test_mem_optimisations