函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

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

函数名称:map_get_value8 - get an 8-bit value within a memory region*@map: address to the bitmap memory region*@start: bit offset of the 8-bit value; must be a multiple of 8* Returns the 8-bit value located at the @start bit offset within the @src* memory region.

函数原型:static inline unsigned long bitmap_get_value8(const unsigned long *map, unsigned long start)

返回类型:unsigned long

参数:

类型参数名称
const unsigned long *map
unsigned longstart
521  index等于BIT_WORD(start)
522  offset等于start取模BITS_PER_LONG
524  返回:map[index]右移offset位按位与0xFF
调用者
名称描述
find_next_clump8