Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:lib\test_xarray.c Create Date:2022-07-28 06:34:06
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:check_align_1

Proto:static void check_align_1(struct xarray *xa, char *name)

Type:void

Parameter:

TypeParameterName
struct xarray *xa
char *name
1459  When i < 8 cycle
1460  XA_BUG_ON(xa, xa_alloc(xa, & id, name + i, xa_limit_32b, GFP_KERNEL) != 0)
1462  XA_BUG_ON(xa, id != i)
1464  xa_for_each() - Iterate over present entries in an XArray.*@xa: XArray.*@index: Index of @entry.*@entry: Entry retrieved from array.* During the iteration, @entry will have the value of the entry stored* in @xa at @index(xa, index, entry)
1465  XA_BUG_ON(xa, xa_is_err() - Report whether an XArray operation returned an error*@entry: Result from calling an XArray function* If an XArray operation cannot complete an operation, it will return* a special value indicating an error. This function tells you)
1466  xa_destroy() - Free all internal data structures.*@xa: XArray.* After calling this function, the XArray is empty and has freed all memory* allocated for its internal data structures. You are responsible for* freeing the objects referenced by the XArray.
Caller
NameDescribe
check_align