Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

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

Name:Note: resize (below) nests producer lock within consumer lock, so if you* consume in interrupt or BH context, you must disable interrupts/BH when* calling this.

Proto:static inline int ptr_ring_produce(struct ptr_ring *r, void *ptr)

Type:int

Parameter:

TypeParameterName
struct ptr_ring *r
void *ptr
127  spin_lock( & producer_lock)
128  ret = Note: callers invoking this in a loop must use a compiler barrier,* for example cpu_relax(). Callers must hold producer_lock.* Callers are responsible for making sure pointer that is being queued* points to a valid data.
129  spin_unlock( & producer_lock)
131  Return ret