函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:kernel\rcu\rcu_segcblist.c Create Date:2022-07-27 11:29:18
Last Modify:2020-03-12 14:18:49 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:Increase the numeric length of an rcu_segcblist structure by one.* This can cause the ->len field to disagree with the actual number of* callbacks on the structure. This increase is fully ordered with respect* to the callers accesses both before and after.

函数原型:void rcu_segcblist_inc_len(struct rcu_segcblist *rsclp)

返回类型:void

参数:

类型参数名称
struct rcu_segcblist *rsclp
128  Increase the numeric length of an rcu_segcblist structure by the* specified amount, which can be negative
调用者
名称描述
rcu_segcblist_enqueueEnqueue the specified callback onto the specified rcu_segcblist* structure, updating accounting as needed
rcu_segcblist_entrainEntrain the specified callback onto the specified rcu_segcblist at* the end of the last non-empty segment. If the entire rcu_segcblist* is empty, make no change, but return false.* This is intended for use by rcu_barrier()-like primitives, -not-