Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

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

Name:__check_eq_u32_array

Proto:static bool __init __check_eq_u32_array(const char *srcfile, unsigned int line, const u32 *exp_arr, unsigned int exp_len, const u32 *arr, unsigned int len)

Type:bool

Parameter:

TypeParameterName
const char *srcfile
unsigned intline
const u32 *exp_arr
unsigned intexp_len
const u32 *arr
unsigned intlen
109  If exp_len != len Then
110  pr_warn("[%s:%u] array length differ: expected %u, got %u\n", srcfile, line, exp_len, len)
113  Return false
116  If memcmp(exp_arr, arr, len * size of arr ) Then
117  pr_warn("[%s:%u] array contents differ\n", srcfile, line)
118  print_hex_dump - print a text hex dump to syslog for a binary blob of data*@level: kernel log level (e
120  print_hex_dump - print a text hex dump to syslog for a binary blob of data*@level: kernel log level (e
122  Return false
125  Return true