Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

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

Name:atomic64_add_negative - add and test if negative*@i: integer value to add*@v: pointer of type atomic64_t* Atomically adds @i to @v and returns true* if the result is negative, or false when* result is greater than or equal to zero.

Proto:static inline bool atomic64_add_negative(s64 i, atomic64_t *v)

Type:bool

Parameter:

TypeParameterName
s64i
atomic64_t *v
2178  Return atomic64_add_return(i, v) < 0
Caller
NameDescribe
pids_cancelpids_cancel - uncharge the local pid count*@pids: the pid cgroup state*@num: the number of pids to cancel* This function will WARN if the pid count goes under 0, because such a case is* a bug in the pids controller proper.