Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:include\linux\math64.h Create Date:2022-07-28 05:34:32
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:__iter_div_u64_rem

Proto:static __always_inline u32 __iter_div_u64_rem(u64 dividend, u32 divisor, u64 *remainder)

Type:u32

Parameter:

TypeParameterName
u64dividend
u32divisor
u64 *remainder
148  ret = 0
150  When dividend >= divisor cycle
153  asm("":"+rm"(dividend))
155  dividend -= divisor
156  ret++
159  remainder = dividend
161  Return ret
Caller
NameDescribe
iter_div_u64_remIterative div/mod for use when dividend is not expected to be much* bigger than divisor.
update_vsyscall
timespec64_add_nsmespec64_add_ns - Adds nanoseconds to a timespec64*@a: pointer to timespec64 to be incremented*@ns: unsigned nanoseconds value to be added* This must always be inlined because its used from the x86-64 vdso,* which cannot call other kernel functions.
timespec_add_nsmespec_add_ns - Adds nanoseconds to a timespec*@a: pointer to timespec to be incremented*@ns: unsigned nanoseconds value to be added* This must always be inlined because its used from the x86-64 vdso,* which cannot call other kernel functions.