函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

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

函数名称:array3_size() - Calculate size of 3-dimensional array.*@a: dimension one*@b: dimension two*@c: dimension three* Calculates size of 3-dimensional array: @a *@b *@c.* Returns: number of bytes needed to represent the array or SIZE_MAX on* overflow.

函数原型:static inline __must_check size_t array3_size(size_t a, size_t b, size_t c)

返回类型:size_t

参数:

类型参数名称
size_ta
size_tb
size_tc
279  如果check_mul_overflow(a, b, & bytes)则返回:SIZE_MAX
281  如果check_mul_overflow(bytes, c, & bytes)则返回:SIZE_MAX
284  返回:bytes
调用者
名称描述
trigger_batched_requests_storeWe use a kthread as otherwise the kernel serializes all our sync requests* and we would not be able to mimic batched requests on a sync call. Batched* requests on a sync call can for instance happen on a device driver when
trigger_batched_requests_async_store
test_rht_init